@@ -359,7 +359,7 @@ |
||
| 359 | 359 | * $params['name'] string Field name |
| 360 | 360 | * |
| 361 | 361 | * @param array $params An associative array of parameters |
| 362 | - * @param null $obj |
|
| 362 | + * @param Pods $obj |
|
| 363 | 363 | * |
| 364 | 364 | * @return mixed Anything returned by the helper |
| 365 | 365 | * @since 2.0 |
@@ -1018,6 +1018,10 @@ discard block |
||
| 1018 | 1018 | |
| 1019 | 1019 | var $list_level = 0; |
| 1020 | 1020 | |
| 1021 | + /** |
|
| 1022 | + * @param string $list_str |
|
| 1023 | + * @param string $marker_any_re |
|
| 1024 | + */ |
|
| 1021 | 1025 | function processListItems($list_str, $marker_any_re) { |
| 1022 | 1026 | # |
| 1023 | 1027 | # Process the contents of a single ordered or unordered list, splitting it |
@@ -1121,6 +1125,9 @@ discard block |
||
| 1121 | 1125 | } |
| 1122 | 1126 | |
| 1123 | 1127 | |
| 1128 | + /** |
|
| 1129 | + * @param string $code |
|
| 1130 | + */ |
|
| 1124 | 1131 | function makeCodeSpan($code) { |
| 1125 | 1132 | # |
| 1126 | 1133 | # Create a code span markup for $code. Called from handleSpanToken. |
@@ -1613,6 +1620,9 @@ discard block |
||
| 1613 | 1620 | # hanlde UTF-8 if the default function does not exist. |
| 1614 | 1621 | var $utf8_strlen = 'mb_strlen'; |
| 1615 | 1622 | |
| 1623 | + /** |
|
| 1624 | + * @param string $text |
|
| 1625 | + */ |
|
| 1616 | 1626 | function detab($text) { |
| 1617 | 1627 | # |
| 1618 | 1628 | # Replace tabs with the appropriate amount of space. |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * Disable this Post Type from appearing in the Builder layouts list |
| 135 | 135 | * |
| 136 | 136 | * @param array $post_types |
| 137 | - * @return array |
|
| 137 | + * @return string[] |
|
| 138 | 138 | */ |
| 139 | 139 | public function disable_builder_layout ( $post_types ) { |
| 140 | 140 | $post_types[] = $this->object_type; |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | * |
| 622 | 622 | * @param string $uri The Pod Page URI to check if exists |
| 623 | 623 | * |
| 624 | - * @return array|bool |
|
| 624 | + * @return boolean |
|
| 625 | 625 | */ |
| 626 | 626 | public static function exists ( $uri = null ) { |
| 627 | 627 | if ( null === $uri ) { |
@@ -289,6 +289,8 @@ discard block |
||
| 289 | 289 | /** |
| 290 | 290 | * create and register an instance ID |
| 291 | 291 | * |
| 292 | + * @param string $id |
|
| 293 | + * @param string $process |
|
| 292 | 294 | */ |
| 293 | 295 | public function element_instance_id( $id, $process ) { |
| 294 | 296 | |
@@ -456,6 +458,11 @@ discard block |
||
| 456 | 458 | * Get the current URL |
| 457 | 459 | * |
| 458 | 460 | */ |
| 461 | + |
|
| 462 | + /** |
|
| 463 | + * @param string $src |
|
| 464 | + * @param string $path |
|
| 465 | + */ |
|
| 459 | 466 | static function get_url( $src = null, $path = null ) { |
| 460 | 467 | |
| 461 | 468 | if ( !empty( $path ) ) { |
@@ -469,6 +476,10 @@ discard block |
||
| 469 | 476 | * Get the current URL |
| 470 | 477 | * |
| 471 | 478 | */ |
| 479 | + |
|
| 480 | + /** |
|
| 481 | + * @param string $src |
|
| 482 | + */ |
|
| 472 | 483 | static function get_path( $src = null ) { |
| 473 | 484 | |
| 474 | 485 | return plugin_dir_path( $src ); |
@@ -224,7 +224,7 @@ |
||
| 224 | 224 | * |
| 225 | 225 | * @param bool $load_in_admin Optional. Whether to load in admin. Default is false. |
| 226 | 226 | * |
| 227 | - * @return Pods_PFAT_Frontend |
|
| 227 | + * @return Pods_Templates_Auto_Template_Front_End|null |
|
| 228 | 228 | * |
| 229 | 229 | * @since 2.5.5 |
| 230 | 230 | */ |
@@ -219,7 +219,7 @@ |
||
| 219 | 219 | * @param array attributes from template |
| 220 | 220 | * @param string template to be processed |
| 221 | 221 | * |
| 222 | - * @return null |
|
| 222 | + * @return string |
|
| 223 | 223 | * @since 2.4 |
| 224 | 224 | */ |
| 225 | 225 | function frontier_do_subtemplate( $atts, $content ) { |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | /** |
| 20 | 20 | * Constructor - Pods Deprecated functionality (pre 2.0) |
| 21 | 21 | * |
| 22 | - * @param object $obj The Pods object |
|
| 22 | + * @param Pods $obj The Pods object |
|
| 23 | 23 | * @license http://www.gnu.org/licenses/gpl-2.0.html |
| 24 | 24 | * @since 2.0 |
| 25 | 25 | */ |
@@ -603,7 +603,7 @@ discard block |
||
| 603 | 603 | /** |
| 604 | 604 | * Run a helper within a Pod Page or WP Template |
| 605 | 605 | * |
| 606 | - * @param string $helper The helper name |
|
| 606 | + * @param string $helper_name The helper name |
|
| 607 | 607 | * |
| 608 | 608 | * @return mixed Anything returned by the helper |
| 609 | 609 | * @since 1.2.0 |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | /** |
| 22 | 22 | * Constructor - PodsAPI Deprecated functionality (pre 2.0) |
| 23 | 23 | * |
| 24 | - * @param object $obj The PodsAPI object |
|
| 24 | + * @param PodsAPI $obj The PodsAPI object |
|
| 25 | 25 | * |
| 26 | 26 | * @license http://www.gnu.org/licenses/gpl-2.0.html |
| 27 | 27 | * @since 2.0 |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | * @param string $message |
| 359 | 359 | * @param bool $error Whether or not it is an error message |
| 360 | 360 | * |
| 361 | - * @return bool |
|
| 361 | + * @return boolean|null |
|
| 362 | 362 | * |
| 363 | 363 | * @since 1.12 |
| 364 | 364 | * @deprcated 2.3 |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | * |
| 375 | 375 | * @param string $message |
| 376 | 376 | * |
| 377 | - * @return bool |
|
| 377 | + * @return boolean|null |
|
| 378 | 378 | * |
| 379 | 379 | * @since 1.12 |
| 380 | 380 | * @deprcated 2.3 |