@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * </code> |
74 | 74 | * @var array |
75 | 75 | */ |
76 | - public $aFieldTypeSlugs = array( 'system', ); |
|
76 | + public $aFieldTypeSlugs = array( 'system',); |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Defines the default key-values of this field type. |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | * @remark `$_aDefaultKeys` holds shared default key-values defined in the base class. |
94 | 94 | */ |
95 | 95 | protected $aDefaultKeys = array( |
96 | - 'data' => array(), // [3.2.0+] Stores the data to be displayed |
|
97 | - 'print_type' => 1, // [3.4.6+] 1: readable representation of array. 2: print_r() |
|
96 | + 'data' => array(), // [3.2.0+] Stores the data to be displayed |
|
97 | + 'print_type' => 1, // [3.4.6+] 1: readable representation of array. 2: print_r() |
|
98 | 98 | 'attributes' => array( |
99 | 99 | 'rows' => 60, |
100 | 100 | 'autofocus' => null, |
@@ -233,13 +233,13 @@ discard block |
||
233 | 233 | . "<div class='admin-page-framework-input-label-container'>" |
234 | 234 | . "<label for='{$aField[ 'input_id' ]}'>" |
235 | 235 | . $aField[ 'before_input' ] |
236 | - . ( $aField[ 'label' ] && ! $aField[ 'repeatable' ] |
|
237 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
236 | + . ( $aField[ 'label' ] && !$aField[ 'repeatable' ] |
|
237 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
238 | 238 | . $aField[ 'label' ] |
239 | 239 | . "</span>" |
240 | 240 | : "" |
241 | 241 | ) |
242 | - . "<textarea " . $this->getAttributes( $_aInputAttributes ) . " >" |
|
242 | + . "<textarea ".$this->getAttributes( $_aInputAttributes )." >" |
|
243 | 243 | . esc_textarea( $this->_getSystemInfomation( $aField[ 'value' ], $aField[ 'data' ], $aField[ 'print_type' ] ) ) |
244 | 244 | . "</textarea>" |
245 | 245 | . $aField[ 'after_input' ] |
@@ -254,15 +254,15 @@ discard block |
||
254 | 254 | * @return string The human readable system information. |
255 | 255 | * @internal |
256 | 256 | */ |
257 | - private function _getSystemInfomation( $asValue=null, $asCustomData=null, $iPrintType=1 ) { |
|
257 | + private function _getSystemInfomation( $asValue = null, $asCustomData = null, $iPrintType = 1 ) { |
|
258 | 258 | |
259 | 259 | if ( isset( $asValue ) ) { |
260 | 260 | return $asValue; |
261 | 261 | } |
262 | 262 | |
263 | - $_aOutput = array(); |
|
264 | - foreach( $this->_getFormattedSystemInformation( $asCustomData ) as $_sSection => $_aInfo ) { |
|
265 | - $_aOutput[] = $this->_getSystemInfoBySection( $_sSection, $_aInfo, $iPrintType ); |
|
263 | + $_aOutput = array(); |
|
264 | + foreach ( $this->_getFormattedSystemInformation( $asCustomData ) as $_sSection => $_aInfo ) { |
|
265 | + $_aOutput[ ] = $this->_getSystemInfoBySection( $_sSection, $_aInfo, $iPrintType ); |
|
266 | 266 | } |
267 | 267 | return implode( PHP_EOL, $_aOutput ); |
268 | 268 | |
@@ -277,18 +277,18 @@ discard block |
||
277 | 277 | |
278 | 278 | $_aData = $this->getAsArray( $asCustomData ); |
279 | 279 | $_aData = $_aData + array( |
280 | - 'Admin Page Framework' => isset( $_aData['Admin Page Framework'] ) |
|
280 | + 'Admin Page Framework' => isset( $_aData[ 'Admin Page Framework' ] ) |
|
281 | 281 | ? null |
282 | 282 | : AdminPageFramework_Registry::getInfo(), |
283 | - 'WordPress' => $this->_getSiteInfoWithCache( ! isset( $_aData['WordPress'] ) ), |
|
284 | - 'PHP' => $this->_getPHPInfo( ! isset( $_aData['PHP'] ) ), |
|
285 | - 'PHP Error Log' => $this->_getErrorLogByType( 'php', ! isset( $_aData['PHP Error Log'] ) ), |
|
286 | - 'MySQL' => isset( $_aData['MySQL'] ) |
|
283 | + 'WordPress' => $this->_getSiteInfoWithCache( !isset( $_aData[ 'WordPress' ] ) ), |
|
284 | + 'PHP' => $this->_getPHPInfo( !isset( $_aData[ 'PHP' ] ) ), |
|
285 | + 'PHP Error Log' => $this->_getErrorLogByType( 'php', !isset( $_aData[ 'PHP Error Log' ] ) ), |
|
286 | + 'MySQL' => isset( $_aData[ 'MySQL' ] ) |
|
287 | 287 | ? null |
288 | - : $this->getMySQLInfo(), // defined in the utility class. |
|
289 | - 'MySQL Error Log' => $this->_getErrorLogByType( 'mysql', ! isset( $_aData['MySQL Error Log'] ) ), |
|
290 | - 'Server' => $this->_getWebServerInfo( ! isset( $_aData['Server'] ) ), |
|
291 | - 'Browser' => $this->_getClientInfo( ! isset( $_aData['Browser'] ) ), |
|
288 | + : $this->getMySQLInfo(), // defined in the utility class. |
|
289 | + 'MySQL Error Log' => $this->_getErrorLogByType( 'mysql', !isset( $_aData[ 'MySQL Error Log' ] ) ), |
|
290 | + 'Server' => $this->_getWebServerInfo( !isset( $_aData[ 'Server' ] ) ), |
|
291 | + 'Browser' => $this->_getClientInfo( !isset( $_aData[ 'Browser' ] ) ), |
|
292 | 292 | ); |
293 | 293 | |
294 | 294 | // Dropping empty elements allows the user to remove a section by setting an empty section. |
@@ -305,10 +305,10 @@ discard block |
||
305 | 305 | switch ( $iPrintType ) { |
306 | 306 | default: |
307 | 307 | case 1: // use the framework readable representation of arrays. |
308 | - return $this->getReadableArrayContents( $sSectionName, $aData, 32 ) . PHP_EOL; |
|
308 | + return $this->getReadableArrayContents( $sSectionName, $aData, 32 ).PHP_EOL; |
|
309 | 309 | case 2: // use print_r() |
310 | - return "[{$sSectionName}]" . PHP_EOL |
|
311 | - . print_r( $aData, true ) . PHP_EOL; |
|
310 | + return "[{$sSectionName}]".PHP_EOL |
|
311 | + . print_r( $aData, true ).PHP_EOL; |
|
312 | 312 | } |
313 | 313 | } |
314 | 314 | /** |
@@ -318,17 +318,17 @@ discard block |
||
318 | 318 | * @since 3.4.6 |
319 | 319 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
320 | 320 | */ |
321 | - private function _getClientInfo( $bGenerateInfo=true ) { |
|
321 | + private function _getClientInfo( $bGenerateInfo = true ) { |
|
322 | 322 | |
323 | - if ( ! $bGenerateInfo ) { |
|
323 | + if ( !$bGenerateInfo ) { |
|
324 | 324 | return ''; |
325 | 325 | } |
326 | 326 | |
327 | 327 | // Check the browscap value in the ini file first to prevent warnings from being populated |
328 | 328 | $_aBrowser = @ini_get( 'browscap' ) |
329 | - ? get_browser( $_SERVER['HTTP_USER_AGENT'], true ) |
|
329 | + ? get_browser( $_SERVER[ 'HTTP_USER_AGENT' ], true ) |
|
330 | 330 | : array(); |
331 | - unset( $_aBrowser['browser_name_regex'] ); // this element causes output to be blank |
|
331 | + unset( $_aBrowser[ 'browser_name_regex' ] ); // this element causes output to be blank |
|
332 | 332 | return empty( $_aBrowser ) |
333 | 333 | ? __( 'No browser information found.', 'admin-page-framework' ) |
334 | 334 | : $_aBrowser; |
@@ -344,9 +344,9 @@ discard block |
||
344 | 344 | * @param string $sType The error log type. Either 'php' or 'mysql' is accepted. |
345 | 345 | * @param boolean $bGenerateInfo Whether to generate a log. This is for the caller method to reduce a conditinal statement. |
346 | 346 | */ |
347 | - private function _getErrorLogByType( $sType, $bGenerateInfo=true ) { |
|
347 | + private function _getErrorLogByType( $sType, $bGenerateInfo = true ) { |
|
348 | 348 | |
349 | - if ( ! $bGenerateInfo ) { |
|
349 | + if ( !$bGenerateInfo ) { |
|
350 | 350 | return ''; |
351 | 351 | } |
352 | 352 | switch ( $sType ) { |
@@ -378,9 +378,9 @@ discard block |
||
378 | 378 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
379 | 379 | * @return array The generated site information array. |
380 | 380 | */ |
381 | - private function _getSiteInfoWithCache( $bGenerateInfo=true ) { |
|
381 | + private function _getSiteInfoWithCache( $bGenerateInfo = true ) { |
|
382 | 382 | |
383 | - if ( ! $bGenerateInfo || isset( self::$_aSiteInfo ) ) { |
|
383 | + if ( !$bGenerateInfo || isset( self::$_aSiteInfo ) ) { |
|
384 | 384 | return self::$_aSiteInfo; |
385 | 385 | } |
386 | 386 | self::$_aSiteInfo = self::_getSiteInfo(); |
@@ -414,8 +414,8 @@ discard block |
||
414 | 414 | 'wp_remote_get()' => $this->_getWPRemoteGetStatus(), |
415 | 415 | __( 'Multibite String Extension', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'mb_detect_encoding' ), $this->oMsg->get( 'enabled' ), $this->oMsg->get( 'disabled' ) ), |
416 | 416 | __( 'WP_CONTENT_DIR Writeable', 'admin-page-framework' ) => $this->getAOrB( is_writable( WP_CONTENT_DIR ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
417 | - __( 'Active Plugins', 'admin-page-framework' ) => PHP_EOL . $this->_getActivePlugins(), |
|
418 | - __( 'Network Active Plugins', 'admin-page-framework' ) => PHP_EOL . $this->_getNetworkActivePlugins(), |
|
417 | + __( 'Active Plugins', 'admin-page-framework' ) => PHP_EOL.$this->_getActivePlugins(), |
|
418 | + __( 'Network Active Plugins', 'admin-page-framework' ) => PHP_EOL.$this->_getNetworkActivePlugins(), |
|
419 | 419 | __( 'Constants', 'admin-page-framework' ) => $this->_getDefinedConstants( 'user' ), |
420 | 420 | ); |
421 | 421 | } |
@@ -425,9 +425,9 @@ discard block |
||
425 | 425 | * @return string|array |
426 | 426 | * @internal |
427 | 427 | */ |
428 | - private function _getDefinedConstants( $asCategories=null, $asRemovingCategories=null ) { |
|
428 | + private function _getDefinedConstants( $asCategories = null, $asRemovingCategories = null ) { |
|
429 | 429 | $_asConstants = $this->getDefinedConstants( $asCategories, $asRemovingCategories ); |
430 | - if ( ! is_array( $_asConstants ) ) { |
|
430 | + if ( !is_array( $_asConstants ) ) { |
|
431 | 431 | return $_asConstants; |
432 | 432 | } |
433 | 433 | if ( isset( $_asConstants[ 'user' ] ) ) { |
@@ -463,13 +463,13 @@ discard block |
||
463 | 463 | private function _getActiveThemeName() { |
464 | 464 | |
465 | 465 | // If the WordPress version is less than 3.4, |
466 | - if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) { |
|
467 | - $_aThemeData = get_theme_data( get_stylesheet_directory() . '/style.css' ); |
|
468 | - return $_aThemeData['Name'] . ' ' . $_aThemeData['Version']; |
|
466 | + if ( version_compare( $GLOBALS[ 'wp_version' ], '3.4', '<' ) ) { |
|
467 | + $_aThemeData = get_theme_data( get_stylesheet_directory().'/style.css' ); |
|
468 | + return $_aThemeData[ 'Name' ].' '.$_aThemeData[ 'Version' ]; |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | $_oThemeData = wp_get_theme(); |
472 | - return $_oThemeData->Name . ' ' . $_oThemeData->Version; |
|
472 | + return $_oThemeData->Name.' '.$_oThemeData->Version; |
|
473 | 473 | |
474 | 474 | } |
475 | 475 | /** |
@@ -483,10 +483,10 @@ discard block |
||
483 | 483 | $_aPluginList = array(); |
484 | 484 | $_aActivePlugins = get_option( 'active_plugins', array() ); |
485 | 485 | foreach ( get_plugins() as $_sPluginPath => $_aPlugin ) { |
486 | - if ( ! in_array( $_sPluginPath, $_aActivePlugins ) ) { |
|
486 | + if ( !in_array( $_sPluginPath, $_aActivePlugins ) ) { |
|
487 | 487 | continue; |
488 | 488 | } |
489 | - $_aPluginList[] = ' ' . $_aPlugin['Name'] . ': ' . $_aPlugin['Version']; |
|
489 | + $_aPluginList[ ] = ' '.$_aPlugin[ 'Name' ].': '.$_aPlugin[ 'Version' ]; |
|
490 | 490 | } |
491 | 491 | return implode( PHP_EOL, $_aPluginList ); |
492 | 492 | |
@@ -498,17 +498,17 @@ discard block |
||
498 | 498 | */ |
499 | 499 | private function _getNetworkActivePlugins() { |
500 | 500 | |
501 | - if ( ! is_multisite() ) { |
|
501 | + if ( !is_multisite() ) { |
|
502 | 502 | return ''; |
503 | 503 | } |
504 | 504 | $_aPluginList = array(); |
505 | 505 | $_aActivePlugins = get_site_option( 'active_sitewide_plugins', array() ); |
506 | 506 | foreach ( wp_get_active_network_plugins() as $_sPluginPath ) { |
507 | - if ( ! array_key_exists( plugin_basename( $_sPluginPath ), $_aActivePlugins ) ) { |
|
507 | + if ( !array_key_exists( plugin_basename( $_sPluginPath ), $_aActivePlugins ) ) { |
|
508 | 508 | continue; |
509 | 509 | } |
510 | 510 | $_aPlugin = get_plugin_data( $_sPluginPath ); |
511 | - $_aPluginList[] = ' ' . $_aPlugin['Name'] . ' :' . $_aPlugin['Version']; |
|
511 | + $_aPluginList[ ] = ' '.$_aPlugin[ 'Name' ].' :'.$_aPlugin[ 'Version' ]; |
|
512 | 512 | } |
513 | 513 | return implode( PHP_EOL, $_aPluginList ); |
514 | 514 | |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | $_vResponse = false === $_vResponse |
527 | 527 | ? wp_remote_post( |
528 | 528 | // 'https://www.paypal.com/cgi-bin/webscr', |
529 | - add_query_arg( $_GET, admin_url( $GLOBALS['pagenow'] ) ), |
|
529 | + add_query_arg( $_GET, admin_url( $GLOBALS[ 'pagenow' ] ) ), |
|
530 | 530 | array( |
531 | 531 | 'sslverify' => false, |
532 | 532 | 'timeout' => 60, |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | $_vResponse = $this->getTransient( 'apf_rg_check' ); |
550 | 550 | $_vResponse = false === $_vResponse |
551 | 551 | ? wp_remote_get( |
552 | - add_query_arg( $_GET + array( 'apf_remote_request_test' => '_testing' ), admin_url( $GLOBALS['pagenow'] ) ), |
|
552 | + add_query_arg( $_GET + array( 'apf_remote_request_test' => '_testing' ), admin_url( $GLOBALS[ 'pagenow' ] ) ), |
|
553 | 553 | array( |
554 | 554 | 'sslverify' => false, |
555 | 555 | 'timeout' => 60, |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | if ( is_wp_error( $mResponse ) ) { |
575 | 575 | return true; |
576 | 576 | } |
577 | - if ( $mResponse[ 'response'][ 'code' ] < 200 ) { |
|
577 | + if ( $mResponse[ 'response' ][ 'code' ] < 200 ) { |
|
578 | 578 | return true; |
579 | 579 | } |
580 | 580 | if ( $mResponse[ 'response' ][ 'code' ] >= 300 ) { |
@@ -597,13 +597,13 @@ discard block |
||
597 | 597 | * @since 3.4.6 |
598 | 598 | * @since 3.5.3 Added the $bGenerateInfo parameter. This is to reduce conditional statement in the caller method. |
599 | 599 | */ |
600 | - private function _getPHPInfo( $bGenerateInfo=true ) { |
|
600 | + private function _getPHPInfo( $bGenerateInfo = true ) { |
|
601 | 601 | |
602 | - if ( ! $bGenerateInfo || isset( self::$_aPHPInfo ) ) { |
|
602 | + if ( !$bGenerateInfo || isset( self::$_aPHPInfo ) ) { |
|
603 | 603 | return self::$_aPHPInfo; |
604 | 604 | } |
605 | 605 | |
606 | - $_oErrorReporting = new AdminPageFramework_ErrorReporting; |
|
606 | + $_oErrorReporting = new AdminPageFramework_ErrorReporting; |
|
607 | 607 | self::$_aPHPInfo = array( |
608 | 608 | __( 'Version', 'admin-page-framework' ) => phpversion(), |
609 | 609 | __( 'Safe Mode', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'safe_mode' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
@@ -614,16 +614,16 @@ discard block |
||
614 | 614 | __( 'Max Execution Time', 'admin-page-framework' ) => @ini_get( 'max_execution_time' ), |
615 | 615 | __( 'Max Input Vars', 'admin-page-framework' ) => @ini_get( 'max_input_vars' ), |
616 | 616 | __( 'Argument Separator', 'admin-page-framework' ) => @ini_get( 'arg_separator.output' ), |
617 | - __( 'Allow URL File Open', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'allow_url_fopen' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
|
618 | - __( 'Display Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'display_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
619 | - __( 'Log Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'log_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
617 | + __( 'Allow URL File Open', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'allow_url_fopen' ), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
|
618 | + __( 'Display Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'display_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
619 | + __( 'Log Errors', 'admin-page-framework' ) => $this->getAOrB( @ini_get( 'log_errors' ), $this->oMsg->get( 'on' ), $this->oMsg->get( 'off' ) ), |
|
620 | 620 | __( 'Error log location', 'admin-page-framework' ) => @ini_get( 'error_log' ), |
621 | 621 | __( 'Error Reporting Level', 'admin-page-framework' ) => $_oErrorReporting->getErrorLevel(), |
622 | - __( 'FSOCKOPEN', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'fsockopen' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
623 | - __( 'cURL', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'curl_init' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
624 | - __( 'SOAP', 'admin-page-framework' ) => $this->getAOrB( class_exists( 'SoapClient' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
625 | - __( 'SUHOSIN', 'admin-page-framework' ) => $this->getAOrB( extension_loaded( 'suhosin' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
626 | - 'ini_set()' => $this->getAOrB( function_exists( 'ini_set' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
622 | + __( 'FSOCKOPEN', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'fsockopen' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
623 | + __( 'cURL', 'admin-page-framework' ) => $this->getAOrB( function_exists( 'curl_init' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
624 | + __( 'SOAP', 'admin-page-framework' ) => $this->getAOrB( class_exists( 'SoapClient' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
625 | + __( 'SUHOSIN', 'admin-page-framework' ) => $this->getAOrB( extension_loaded( 'suhosin' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
626 | + 'ini_set()' => $this->getAOrB( function_exists( 'ini_set' ), $this->oMsg->get( 'supported' ), $this->oMsg->get( 'not_supported' ) ), |
|
627 | 627 | ) |
628 | 628 | + $this->getPHPInfo() |
629 | 629 | + array( |
@@ -642,11 +642,11 @@ discard block |
||
642 | 642 | * @since 3.5.3 Added the $bGenerateInfo paramter. This is to reduce conditional statment in the caller method. |
643 | 643 | * @return array|string |
644 | 644 | */ |
645 | - private function _getWebServerInfo( $bGenerateInfo=true ) { |
|
645 | + private function _getWebServerInfo( $bGenerateInfo = true ) { |
|
646 | 646 | |
647 | 647 | return $bGenerateInfo |
648 | 648 | ? array( |
649 | - __( 'Web Server', 'admin-page-framework' ) => $_SERVER['SERVER_SOFTWARE'], |
|
649 | + __( 'Web Server', 'admin-page-framework' ) => $_SERVER[ 'SERVER_SOFTWARE' ], |
|
650 | 650 | 'SSL' => $this->getAOrB( is_ssl(), $this->oMsg->get( 'yes' ), $this->oMsg->get( 'no' ) ), |
651 | 651 | __( 'Session', 'admin-page-framework' ) => $this->getAOrB( isset( $_SESSION ), $this->oMsg->get( 'enabled' ), $this->oMsg->get( 'disabled' ) ), |
652 | 652 | __( 'Session Name', 'admin-page-framework' ) => esc_html( @ini_get( 'session.name' ) ), |
@@ -297,6 +297,7 @@ discard block |
||
297 | 297 | /** |
298 | 298 | * Returns the system information by section. |
299 | 299 | * @since 3.5.3 |
300 | + * @param integer $iPrintType |
|
300 | 301 | * @return string The system information by section. |
301 | 302 | * @internal |
302 | 303 | */ |
@@ -421,6 +422,8 @@ discard block |
||
421 | 422 | /** |
422 | 423 | * |
423 | 424 | * @since 3.5.12 |
425 | + * @param string $asCategories |
|
426 | + * @param string $asRemovingCategories |
|
424 | 427 | * @return string|array |
425 | 428 | * @internal |
426 | 429 | */ |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @internal |
144 | 144 | * @return array |
145 | 145 | */ |
146 | - protected function getEnqueuingScripts() { |
|
146 | + protected function getEnqueuingScripts() { |
|
147 | 147 | return array(); |
148 | 148 | } |
149 | 149 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @return array |
162 | 162 | * @internal |
163 | 163 | */ |
164 | - protected function getEnqueuingStyles() { |
|
164 | + protected function getEnqueuingStyles() { |
|
165 | 165 | return array(); |
166 | 166 | } |
167 | 167 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @internal |
172 | 172 | * @return string |
173 | 173 | */ |
174 | - protected function getScripts() { |
|
174 | + protected function getScripts() { |
|
175 | 175 | return ''; |
176 | 176 | } |
177 | 177 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @internal |
182 | 182 | * @return string |
183 | 183 | */ |
184 | - protected function getIEStyles() { |
|
184 | + protected function getIEStyles() { |
|
185 | 185 | return ''; |
186 | 186 | } |
187 | 187 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @internal |
223 | 223 | * @return string |
224 | 224 | */ |
225 | - protected function getField( $aField ) { |
|
225 | + protected function getField( $aField ) { |
|
226 | 226 | |
227 | 227 | $_aInputAttributes = $aField[ 'attributes' ]; |
228 | 228 | $_aInputAttributes[ 'class' ] .= ' system'; |
@@ -554,8 +554,8 @@ discard block |
||
554 | 554 | protected function getField( $aField ) { |
555 | 555 | |
556 | 556 | $_aOutput = array(); |
557 | - foreach( ( array ) $aField[ 'label' ] as $_sKey => $_sLabel ) { |
|
558 | - $_aOutput[] = $this->_getFieldOutputByLabel( |
|
557 | + foreach ( ( array ) $aField[ 'label' ] as $_sKey => $_sLabel ) { |
|
558 | + $_aOutput[ ] = $this->_getFieldOutputByLabel( |
|
559 | 559 | $_sKey, |
560 | 560 | $_sLabel, |
561 | 561 | $aField |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | } |
564 | 564 | |
565 | 565 | // the repeatable field buttons will be replaced with this element. |
566 | - $_aOutput[] = "<div class='repeatable-field-buttons'></div>"; |
|
566 | + $_aOutput[ ] = "<div class='repeatable-field-buttons'></div>"; |
|
567 | 567 | return implode( '', $_aOutput ); |
568 | 568 | |
569 | 569 | } |
@@ -584,27 +584,27 @@ discard block |
||
584 | 584 | $aField[ 'rich' ] = $this->getElementByLabel( $aField[ 'rich' ], $sKey, $aField[ 'label' ] ); |
585 | 585 | $aField[ 'attributes' ] = $_bIsArray |
586 | 586 | ? array( |
587 | - 'name' => $aField[ 'attributes' ][ 'name' ] . "[{$sKey}]", |
|
588 | - 'id' => $aField[ 'attributes' ][ 'id' ] . "_{$sKey}", |
|
587 | + 'name' => $aField[ 'attributes' ][ 'name' ]."[{$sKey}]", |
|
588 | + 'id' => $aField[ 'attributes' ][ 'id' ]."_{$sKey}", |
|
589 | 589 | 'value' => $aField[ 'value' ], |
590 | 590 | ) |
591 | 591 | + $aField[ 'attributes' ] |
592 | 592 | : $aField[ 'attributes' ]; |
593 | - $_aOutput = array( |
|
594 | - $this->getElementByLabel( $aField['before_label'], $sKey, $aField[ 'label' ] ), |
|
593 | + $_aOutput = array( |
|
594 | + $this->getElementByLabel( $aField[ 'before_label' ], $sKey, $aField[ 'label' ] ), |
|
595 | 595 | "<div class='admin-page-framework-input-label-container {$_sClassSelector}'>", |
596 | - "<label for='" . $aField[ 'attributes' ][ 'id' ] . "'>", |
|
597 | - $this->getElementByLabel( $aField['before_input'], $sKey, $aField[ 'label' ] ), |
|
596 | + "<label for='".$aField[ 'attributes' ][ 'id' ]."'>", |
|
597 | + $this->getElementByLabel( $aField[ 'before_input' ], $sKey, $aField[ 'label' ] ), |
|
598 | 598 | $_sLabel |
599 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
599 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
600 | 600 | . $_sLabel |
601 | 601 | . "</span>" |
602 | 602 | : '', |
603 | 603 | $this->_getEditor( $aField ), |
604 | - $this->getElementByLabel( $aField['after_input'], $sKey, $aField[ 'label' ] ), |
|
604 | + $this->getElementByLabel( $aField[ 'after_input' ], $sKey, $aField[ 'label' ] ), |
|
605 | 605 | "</label>", |
606 | 606 | "</div>", |
607 | - $this->getElementByLabel( $aField['after_label'], $sKey, $aField[ 'label' ] ), |
|
607 | + $this->getElementByLabel( $aField[ 'after_label' ], $sKey, $aField[ 'label' ] ), |
|
608 | 608 | ); |
609 | 609 | return implode( '', $_aOutput ); |
610 | 610 | |
@@ -619,31 +619,31 @@ discard block |
||
619 | 619 | */ |
620 | 620 | private function _getEditor( $aField ) { |
621 | 621 | |
622 | - unset( $aField['attributes']['value'] ); |
|
622 | + unset( $aField[ 'attributes' ][ 'value' ] ); |
|
623 | 623 | |
624 | 624 | // For no TinyMCE |
625 | - if ( empty( $aField['rich'] ) || ! $this->isTinyMCESupported() ) { |
|
626 | - return "<textarea " . $this->getAttributes( $aField['attributes'] ) . " >" // this method is defined in the base class |
|
627 | - . esc_textarea( $aField['value'] ) |
|
625 | + if ( empty( $aField[ 'rich' ] ) || !$this->isTinyMCESupported() ) { |
|
626 | + return "<textarea ".$this->getAttributes( $aField[ 'attributes' ] )." >" // this method is defined in the base class |
|
627 | + . esc_textarea( $aField[ 'value' ] ) |
|
628 | 628 | . "</textarea>"; |
629 | 629 | } |
630 | 630 | |
631 | 631 | // Rich editor |
632 | 632 | ob_start(); |
633 | 633 | wp_editor( |
634 | - $aField['value'], |
|
635 | - $aField['attributes']['id'], |
|
634 | + $aField[ 'value' ], |
|
635 | + $aField[ 'attributes' ][ 'id' ], |
|
636 | 636 | $this->uniteArrays( |
637 | - ( array ) $aField['rich'], |
|
637 | + ( array ) $aField[ 'rich' ], |
|
638 | 638 | array( |
639 | 639 | 'wpautop' => true, // use wpautop? |
640 | 640 | 'media_buttons' => true, // show insert/upload button(s) |
641 | - 'textarea_name' => $aField['attributes']['name'], |
|
642 | - 'textarea_rows' => $aField['attributes']['rows'], |
|
641 | + 'textarea_name' => $aField[ 'attributes' ][ 'name' ], |
|
642 | + 'textarea_rows' => $aField[ 'attributes' ][ 'rows' ], |
|
643 | 643 | 'tabindex' => '', |
644 | 644 | 'tabfocus_elements' => ':prev,:next', // the previous and next element ID to move the focus to when pressing the Tab key in TinyMCE |
645 | 645 | 'editor_css' => '', // intended for extra styles for both visual and Text editors buttons, needs to include the <style> tags, can use "scoped". |
646 | - 'editor_class' => $aField['attributes']['class'], // add extra class(es) to the editor textarea |
|
646 | + 'editor_class' => $aField[ 'attributes' ][ 'class' ], // add extra class(es) to the editor textarea |
|
647 | 647 | 'teeny' => false, // output the minimal editor config used in Press This |
648 | 648 | 'dfw' => false, // replace the default fullscreen with DFW (needs specific DOM elements and css) |
649 | 649 | 'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array() |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | ob_end_clean(); |
656 | 656 | |
657 | 657 | return $_sContent |
658 | - . $this->_getScriptForRichEditor( $aField['attributes']['id'] ); |
|
658 | + . $this->_getScriptForRichEditor( $aField[ 'attributes' ][ 'id' ] ); |
|
659 | 659 | |
660 | 660 | } |
661 | 661 |
@@ -37,21 +37,21 @@ |
||
37 | 37 | */ |
38 | 38 | public function _replyToGetField( $aField ) { |
39 | 39 | return |
40 | - $aField['before_label'] |
|
40 | + $aField[ 'before_label' ] |
|
41 | 41 | . "<div class='admin-page-framework-input-label-container'>" |
42 | - . "<label for='{$aField['input_id']}'>" |
|
43 | - . $aField['before_input'] |
|
44 | - . ( $aField['label'] && ! $aField['repeatable'] |
|
45 | - ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" |
|
42 | + . "<label for='{$aField[ 'input_id' ]}'>" |
|
43 | + . $aField[ 'before_input' ] |
|
44 | + . ( $aField[ 'label' ] && !$aField[ 'repeatable' ] |
|
45 | + ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" |
|
46 | 46 | . $aField[ 'label' ] |
47 | 47 | . "</span>" |
48 | 48 | : "" |
49 | 49 | ) |
50 | - . $aField['value'] |
|
51 | - . $aField['after_input'] |
|
50 | + . $aField[ 'value' ] |
|
51 | + . $aField[ 'after_input' ] |
|
52 | 52 | . "</label>" |
53 | 53 | . "</div>" |
54 | - . $aField['after_label'] |
|
54 | + . $aField[ 'after_label' ] |
|
55 | 55 | ; |
56 | 56 | } |
57 | 57 |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function _appendInternalAssets( $sInternal, &$aContainer ) { |
70 | 70 | $_aInternals = array_unique( $aContainer ); |
71 | - $sInternal = PHP_EOL . $sInternal; |
|
72 | - foreach( $_aInternals as $_iIndex => $_sInternal ) { |
|
73 | - $sInternal .= $_sInternal . PHP_EOL; |
|
71 | + $sInternal = PHP_EOL.$sInternal; |
|
72 | + foreach ( $_aInternals as $_iIndex => $_sInternal ) { |
|
73 | + $sInternal .= $_sInternal.PHP_EOL; |
|
74 | 74 | unset( $_aInternals[ $_iIndex ] ); |
75 | 75 | } |
76 | 76 | $aContainer = $_aInternals; // update the container array. |
@@ -84,23 +84,23 @@ discard block |
||
84 | 84 | private function _parseAssets( $oFactory ) { |
85 | 85 | |
86 | 86 | // page |
87 | - $_aPageStyles = $this->getElementAsArray( |
|
87 | + $_aPageStyles = $this->getElementAsArray( |
|
88 | 88 | $oFactory->oProp->aPages, |
89 | 89 | array( $this->sCurrentPageSlug, 'style' ) |
90 | 90 | ); |
91 | 91 | $this->_enqueuePageAssets( $_aPageStyles, 'style' ); |
92 | 92 | |
93 | - $_aPageScripts = $this->getElementAsArray( |
|
93 | + $_aPageScripts = $this->getElementAsArray( |
|
94 | 94 | $oFactory->oProp->aPages, |
95 | 95 | array( $this->sCurrentPageSlug, 'script' ) |
96 | 96 | ); |
97 | 97 | $this->_enqueuePageAssets( $_aPageScripts, 'script' ); |
98 | 98 | |
99 | 99 | // In-page tabs |
100 | - if ( ! $this->sCurrentTabSlug ) { |
|
100 | + if ( !$this->sCurrentTabSlug ) { |
|
101 | 101 | return; |
102 | 102 | } |
103 | - $_aInPageTabStyles = $this->getElementAsArray( |
|
103 | + $_aInPageTabStyles = $this->getElementAsArray( |
|
104 | 104 | $oFactory->oProp->aInPageTabs, |
105 | 105 | array( $this->sCurrentPageSlug, $this->sCurrentTabSlug, 'style' ) |
106 | 106 | ); |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | * @since 3.6.3 |
118 | 118 | * @return void |
119 | 119 | */ |
120 | - private function _enqueuePageAssets( array $aPageAssets, $sType='style' ) { |
|
121 | - $_sMathodName = "_enqueueAsset_" . $sType; |
|
122 | - foreach( $aPageAssets as $_asPageAsset ) { |
|
123 | - $this->{$_sMathodName}( $_asPageAsset); |
|
120 | + private function _enqueuePageAssets( array $aPageAssets, $sType = 'style' ) { |
|
121 | + $_sMathodName = "_enqueueAsset_".$sType; |
|
122 | + foreach ( $aPageAssets as $_asPageAsset ) { |
|
123 | + $this->{$_sMathodName}( $_asPageAsset ); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | // Insert the CSS rule in the head tag. |
148 | - $this->aCSSRules[] = $_sSRC; |
|
148 | + $this->aCSSRules[ ] = $_sSRC; |
|
149 | 149 | |
150 | 150 | } |
151 | 151 | |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | } |
171 | 171 | |
172 | 172 | // Insert the scripts in the head tag. |
173 | - $this->aScripts[] = $_sSRC; |
|
173 | + $this->aScripts[ ] = $_sSRC; |
|
174 | 174 | |
175 | 175 | } |
176 | 176 |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | private function _getDefaultPageSlug( array $aPages ) { |
168 | 168 | |
169 | 169 | foreach( $aPages as $_aPage ) { |
170 | - if ( ! isset( $_aPage[ 'page_slug' ] ) ) { |
|
170 | + if ( ! isset( $_aPage[ 'page_slug' ] ) ) { |
|
171 | 171 | continue; |
172 | 172 | } |
173 | 173 | return $_aPage[ 'page_slug' ]; |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | |
380 | 380 | foreach( $this->getElementAsArray( $GLOBALS, array( 'submenu', $sMenuSlug ) ) as $_iIndex => $_aSubMenu ) { |
381 | 381 | |
382 | - if ( ! isset( $_aSubMenu[ 3 ] ) ) { |
|
382 | + if ( ! isset( $_aSubMenu[ 3 ] ) ) { |
|
383 | 383 | continue; |
384 | 384 | } |
385 | 385 | |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | $sPageTitle, |
395 | 395 | $sPageSlug, |
396 | 396 | ); |
397 | - if ( $_aA !== $_aB ) { |
|
397 | + if ( $_aA !== $_aB ) { |
|
398 | 398 | continue; |
399 | 399 | } |
400 | 400 | return $_iIndex; |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * @since 3.1.1 Moved from `AdminPageFramework_Menu`. Chagned the return type. |
412 | 412 | * @return array removed menu item. |
413 | 413 | */ |
414 | - private function _removePageSubmenuItem( $nSubMenuPageIndex, $sMenuSlug, $sPageSlug, $sMenuTitle ){ |
|
414 | + private function _removePageSubmenuItem( $nSubMenuPageIndex, $sMenuSlug, $sPageSlug, $sMenuTitle ) { |
|
415 | 415 | |
416 | 416 | $_aRemovedMenuItem = $this->_removePageSubMenuItemByIndex( |
417 | 417 | $nSubMenuPageIndex, |
@@ -517,7 +517,7 @@ discard block |
||
517 | 517 | * @callback action admin_menu |
518 | 518 | * @internal |
519 | 519 | */ |
520 | - public function _replyToRemoveRootMenuPage() { |
|
520 | + public function _replyToRemoveRootMenuPage() { |
|
521 | 521 | |
522 | 522 | // After adding the sub menus, if the root menu is created, remove the page that is automatically created when registering the root menu. |
523 | 523 | if ( ! $this->oFactory->oProp->aRootMenu[ 'fCreateRoot' ] ) { |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | * Sets up hooks |
27 | 27 | * |
28 | 28 | * @internal |
29 | + * @param AdminPageFramework_Router $oFactory |
|
29 | 30 | */ |
30 | 31 | public function __construct( $oFactory, $sActionHook='admin_menu' ) { |
31 | 32 | |
@@ -253,6 +254,7 @@ discard block |
||
253 | 254 | * @since 3.3.0 |
254 | 255 | * @since 3.1.1 Moved from `AdminPageFramework_Menu`. |
255 | 256 | * @since 3.7.4 Added the `$nOrder` parameter. |
257 | + * @param string $sMenuSlug |
|
256 | 258 | * @return string The page hook of the added page. |
257 | 259 | */ |
258 | 260 | private function _addPageSubmenuItem( $sRootPageSlug, $sMenuSlug, $sPageSlug, $sPageTitle, $sMenuTitle, $sCapability, $bShowInMenu, $nOrder ) { |
@@ -354,6 +356,7 @@ discard block |
||
354 | 356 | /** |
355 | 357 | * Sets up hooks for the page. |
356 | 358 | * @since 3.7.4 |
359 | + * @param false|string $sPageHook |
|
357 | 360 | */ |
358 | 361 | private function _setPageHooks( $sPageHook, $sPageSlug ) { |
359 | 362 | |
@@ -405,7 +408,7 @@ discard block |
||
405 | 408 | /** |
406 | 409 | * @since 3.7.4 |
407 | 410 | * @return void |
408 | - * @param numeric $$nOrder A user set order (menu position, index). |
|
411 | + * @param numeric $nOrder A user set order (menu position, index). |
|
409 | 412 | * @param array $aSubMenuItem The sub menu item array set in the global `$submenu` array. |
410 | 413 | */ |
411 | 414 | private function _setSubMenuPageByIndex( $nOrder, $aSubMenuItem, $sMenuSlug ) { |
@@ -529,6 +532,7 @@ discard block |
||
529 | 532 | * @since 3.1.1 Moved from `AdminPageFramework_Menu`. |
530 | 533 | * @since 3.5.3 Added the `$bShowInMenu` parameter. |
531 | 534 | * @since 3.7.4 Added the `$nOrder` parameter. |
535 | + * @param string $sMenuSlug |
|
532 | 536 | * @return void |
533 | 537 | */ |
534 | 538 | private function _addLinkSubmenuItem( $sMenuSlug, $sTitle, $sCapability, $sHref, $bShowInMenu, $nOrder ) { |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * |
28 | 28 | * @internal |
29 | 29 | */ |
30 | - public function __construct( $oFactory, $sActionHook='admin_menu' ) { |
|
30 | + public function __construct( $oFactory, $sActionHook = 'admin_menu' ) { |
|
31 | 31 | |
32 | 32 | $this->oFactory = $oFactory; |
33 | 33 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | public function _replyToRegisterRootMenu() { |
76 | 76 | |
77 | 77 | // If the root menu label is not set but the slug is set, |
78 | - if ( ! $this->oFactory->oProp->aRootMenu[ 'fCreateRoot' ] ) { |
|
78 | + if ( !$this->oFactory->oProp->aRootMenu[ 'fCreateRoot' ] ) { |
|
79 | 79 | return; |
80 | 80 | } |
81 | 81 | $this->_registerRootMenuPage(); |
@@ -97,12 +97,12 @@ discard block |
||
97 | 97 | } |
98 | 98 | |
99 | 99 | $this->oFactory->oProp->aRootMenu[ '_page_hook' ] = add_menu_page( |
100 | - $this->oFactory->oProp->sClassName, // Page title - will be invisible anyway |
|
101 | - $this->oFactory->oProp->aRootMenu[ 'sTitle' ], // Menu title - should be the root page title. |
|
102 | - $this->oFactory->oProp->sCapability, // Capability - access right |
|
103 | - $this->oFactory->oProp->aRootMenu[ 'sPageSlug' ], // Menu ID |
|
104 | - '', // Callback function for the page content output - the root page will be removed so no need to register a function. |
|
105 | - $this->oFactory->oProp->aRootMenu[ 'sIcon16x16' ], // icon path |
|
100 | + $this->oFactory->oProp->sClassName, // Page title - will be invisible anyway |
|
101 | + $this->oFactory->oProp->aRootMenu[ 'sTitle' ], // Menu title - should be the root page title. |
|
102 | + $this->oFactory->oProp->sCapability, // Capability - access right |
|
103 | + $this->oFactory->oProp->aRootMenu[ 'sPageSlug' ], // Menu ID |
|
104 | + '', // Callback function for the page content output - the root page will be removed so no need to register a function. |
|
105 | + $this->oFactory->oProp->aRootMenu[ 'sIcon16x16' ], // icon path |
|
106 | 106 | $this->getElement( |
107 | 107 | $this->oFactory->oProp->aRootMenu, |
108 | 108 | 'iPosition', |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | |
125 | 125 | // Let external scripts add sub-menu pages. |
126 | 126 | $_aPages = $this->addAndApplyFilter( |
127 | - $this->oFactory, // caller object |
|
128 | - "pages_{$this->oFactory->oProp->sClassName}", // filter |
|
127 | + $this->oFactory, // caller object |
|
128 | + "pages_{$this->oFactory->oProp->sClassName}", // filter |
|
129 | 129 | $this->oFactory->oProp->aPages // arguments |
130 | 130 | ); |
131 | 131 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | // Format the `$aPages` property and register the pages. |
136 | 136 | $_iParsedIndex = 0; |
137 | 137 | $_aFormattedPages = array(); |
138 | - foreach( $_aPages as $_aSubMenuItem ) { |
|
138 | + foreach ( $_aPages as $_aSubMenuItem ) { |
|
139 | 139 | |
140 | 140 | // needs to be sanitized because there are hook filters applied to this array. |
141 | 141 | $_oFormatter = new AdminPageFramework_Format_SubMenuItem( |
@@ -170,8 +170,8 @@ discard block |
||
170 | 170 | */ |
171 | 171 | private function _getDefaultPageSlug( array $aPages ) { |
172 | 172 | |
173 | - foreach( $aPages as $_aPage ) { |
|
174 | - if ( ! isset( $_aPage[ 'page_slug' ] ) ) { |
|
173 | + foreach ( $aPages as $_aPage ) { |
|
174 | + if ( !isset( $_aPage[ 'page_slug' ] ) ) { |
|
175 | 175 | continue; |
176 | 176 | } |
177 | 177 | return $_aPage[ 'page_slug' ]; |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | */ |
194 | 194 | private function _registerSubMenuItem( array $aArgs ) { |
195 | 195 | |
196 | - if ( ! current_user_can( $aArgs[ 'capability' ] ) ) { |
|
196 | + if ( !current_user_can( $aArgs[ 'capability' ] ) ) { |
|
197 | 197 | return ''; |
198 | 198 | } |
199 | 199 | |
@@ -257,14 +257,14 @@ discard block |
||
257 | 257 | */ |
258 | 258 | private function _addPageSubmenuItem( $sRootPageSlug, $sMenuSlug, $sPageSlug, $sPageTitle, $sMenuTitle, $sCapability, $bShowInMenu, $nOrder ) { |
259 | 259 | |
260 | - if ( ! $sPageSlug ) { |
|
260 | + if ( !$sPageSlug ) { |
|
261 | 261 | return ''; |
262 | 262 | } |
263 | 263 | $_sPageHook = $this->___addSubMenuPage( |
264 | - $sRootPageSlug, // the root (parent) page slug |
|
265 | - $sPageTitle, // page title |
|
266 | - $sMenuTitle, // menu title |
|
267 | - $sCapability, // capability |
|
264 | + $sRootPageSlug, // the root (parent) page slug |
|
265 | + $sPageTitle, // page title |
|
266 | + $sMenuTitle, // menu title |
|
267 | + $sCapability, // capability |
|
268 | 268 | $sPageSlug // menu slug |
269 | 269 | ); |
270 | 270 | |
@@ -293,14 +293,14 @@ discard block |
||
293 | 293 | $_aRemovedMenuItem = $this->_removePageSubmenuItem( $_nSubMenuPageIndex, $sMenuSlug, $sPageSlug, $sMenuTitle ); |
294 | 294 | |
295 | 295 | // If the visibility option is `false`, remove the one just added from the sub-menu global array |
296 | - if ( ! $bShowInMenu && ! $this->_isCurrentPage( $sPageSlug ) ) { |
|
296 | + if ( !$bShowInMenu && !$this->_isCurrentPage( $sPageSlug ) ) { |
|
297 | 297 | return $_sPageHook; |
298 | 298 | } |
299 | 299 | |
300 | 300 | // Set the order index in the element of the `submenu` global array. |
301 | 301 | $this->_setSubMenuPageByIndex( |
302 | - $nOrder, // user-set order |
|
303 | - $_aRemovedMenuItem, // will be reassign with a new index |
|
302 | + $nOrder, // user-set order |
|
303 | + $_aRemovedMenuItem, // will be reassign with a new index |
|
304 | 304 | $sMenuSlug |
305 | 305 | ); |
306 | 306 | |
@@ -321,21 +321,21 @@ discard block |
||
321 | 321 | * @uses add_submenu_page |
322 | 322 | */ |
323 | 323 | private function ___addSubMenuPage( |
324 | - $sRootPageSlug, // the root (parent) page slug |
|
325 | - $sPageTitle, // page title |
|
326 | - $sMenuTitle, // menu title |
|
327 | - $sCapability, // capability |
|
324 | + $sRootPageSlug, // the root (parent) page slug |
|
325 | + $sPageTitle, // page title |
|
326 | + $sMenuTitle, // menu title |
|
327 | + $sCapability, // capability |
|
328 | 328 | $sPageSlug // menu slug |
329 | 329 | ) { |
330 | 330 | if ( $this->oFactory->oProp->bIsAdminAjax ) { |
331 | 331 | return $sPageSlug; |
332 | 332 | } |
333 | 333 | return add_submenu_page( |
334 | - $sRootPageSlug, // the root (parent) page slug |
|
335 | - $sPageTitle, // page title |
|
336 | - $sMenuTitle, // menu title |
|
337 | - $sCapability, // capability |
|
338 | - $sPageSlug, // menu slug |
|
334 | + $sRootPageSlug, // the root (parent) page slug |
|
335 | + $sPageTitle, // page title |
|
336 | + $sMenuTitle, // menu title |
|
337 | + $sCapability, // capability |
|
338 | + $sPageSlug, // menu slug |
|
339 | 339 | array( $this->oFactory, '_replyToRenderPage' ) // callback 3.7.10+ |
340 | 340 | ); |
341 | 341 | } |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | */ |
370 | 370 | add_action( |
371 | 371 | 'current_screen', |
372 | - array( $this->oFactory, "load_pre_" . $sPageSlug ), |
|
372 | + array( $this->oFactory, "load_pre_".$sPageSlug ), |
|
373 | 373 | 20 |
374 | 374 | ); |
375 | 375 | /** |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | */ |
379 | 379 | add_action( |
380 | 380 | 'pseudo_current_screen', |
381 | - array( $this->oFactory, "load_pre_" . $sPageSlug ), |
|
381 | + array( $this->oFactory, "load_pre_".$sPageSlug ), |
|
382 | 382 | 20 |
383 | 383 | ); |
384 | 384 | |
@@ -387,15 +387,15 @@ discard block |
||
387 | 387 | * Set a low priority because the user may add in-page tabs in their callback method of this action hook. |
388 | 388 | * @since 3.6.3 |
389 | 389 | */ |
390 | - add_action( "load_" . $sPageSlug, array( $this->oFactory, '_replyToFinalizeInPageTabs' ), 9999 ); |
|
390 | + add_action( "load_".$sPageSlug, array( $this->oFactory, '_replyToFinalizeInPageTabs' ), 9999 ); |
|
391 | 391 | |
392 | 392 | // 3.6.3+ |
393 | - add_action( "load_after_" . $sPageSlug, array( $this->oFactory, '_replyToEnqueuePageAssets' ) ); |
|
394 | - add_action( "load_after_" . $sPageSlug, array( $this->oFactory, '_replyToEnablePageMetaBoxes' ) ); // 3.7.10+ |
|
393 | + add_action( "load_after_".$sPageSlug, array( $this->oFactory, '_replyToEnqueuePageAssets' ) ); |
|
394 | + add_action( "load_after_".$sPageSlug, array( $this->oFactory, '_replyToEnablePageMetaBoxes' ) ); // 3.7.10+ |
|
395 | 395 | |
396 | 396 | $this->oFactory->oProp->aPageHooks[ $sPageSlug ] = $this->getAOrB( |
397 | 397 | is_network_admin(), |
398 | - $sPageHook . '-network', |
|
398 | + $sPageHook.'-network', |
|
399 | 399 | $sPageHook |
400 | 400 | ); |
401 | 401 | |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | |
413 | 413 | $_nNewIndex = $this->getUnusedNumericIndex( |
414 | 414 | $this->getElementAsArray( $GLOBALS, array( 'submenu', $sMenuSlug ) ), // subject array to parser |
415 | - $nOrder, // a desired menu position |
|
415 | + $nOrder, // a desired menu position |
|
416 | 416 | 5 // offset |
417 | 417 | ); |
418 | 418 | |
@@ -426,9 +426,9 @@ discard block |
||
426 | 426 | */ |
427 | 427 | private function _getSubMenuPageIndex( $sMenuSlug, $sMenuTitle, $sPageTitle, $sPageSlug ) { |
428 | 428 | |
429 | - foreach( $this->getElementAsArray( $GLOBALS, array( 'submenu', $sMenuSlug ) ) as $_iIndex => $_aSubMenu ) { |
|
429 | + foreach ( $this->getElementAsArray( $GLOBALS, array( 'submenu', $sMenuSlug ) ) as $_iIndex => $_aSubMenu ) { |
|
430 | 430 | |
431 | - if ( ! isset( $_aSubMenu[ 3 ] ) ) { |
|
431 | + if ( !isset( $_aSubMenu[ 3 ] ) ) { |
|
432 | 432 | continue; |
433 | 433 | } |
434 | 434 | |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | * @since 3.1.1 Moved from `AdminPageFramework_Menu`. Chagned the return type. |
461 | 461 | * @return array removed menu item. |
462 | 462 | */ |
463 | - private function _removePageSubmenuItem( $nSubMenuPageIndex, $sMenuSlug, $sPageSlug, $sMenuTitle ){ |
|
463 | + private function _removePageSubmenuItem( $nSubMenuPageIndex, $sMenuSlug, $sPageSlug, $sMenuTitle ) { |
|
464 | 464 | |
465 | 465 | $_aRemovedMenuItem = $this->_removePageSubMenuItemByIndex( |
466 | 466 | $nSubMenuPageIndex, |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | */ |
534 | 534 | private function _addLinkSubmenuItem( $sMenuSlug, $sTitle, $sCapability, $sHref, $bShowInMenu, $nOrder ) { |
535 | 535 | |
536 | - if ( ! $bShowInMenu ) { |
|
536 | + if ( !$bShowInMenu ) { |
|
537 | 537 | return; |
538 | 538 | } |
539 | 539 | |
@@ -548,9 +548,9 @@ discard block |
||
548 | 548 | 5 // offset |
549 | 549 | ); |
550 | 550 | $_aSubMenuItems[ $_nIndex ] = array( |
551 | - $sTitle, // 0 |
|
552 | - $sCapability, // 1 |
|
553 | - $sHref, // 2 |
|
551 | + $sTitle, // 0 |
|
552 | + $sCapability, // 1 |
|
553 | + $sHref, // 2 |
|
554 | 554 | ); |
555 | 555 | $GLOBALS[ 'submenu' ][ $sMenuSlug ] = $_aSubMenuItems; |
556 | 556 | |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | public function _replyToRemoveRootMenuPage() { |
570 | 570 | |
571 | 571 | // After adding the sub menus, if the root menu is created, remove the page that is automatically created when registering the root menu. |
572 | - if ( ! $this->oFactory->oProp->aRootMenu[ 'fCreateRoot' ] ) { |
|
572 | + if ( !$this->oFactory->oProp->aRootMenu[ 'fCreateRoot' ] ) { |
|
573 | 573 | return; |
574 | 574 | } |
575 | 575 | if ( $this->oFactory->oProp->bIsAdminAjax ) { |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | * Namespace slugs have backslashes but the registered slugs backslashes are all converted to forward-slashes. |
581 | 581 | * @since 3.5.16 |
582 | 582 | */ |
583 | - $_sMenuSlug = str_replace( |
|
583 | + $_sMenuSlug = str_replace( |
|
584 | 584 | '\\', |
585 | 585 | '/', |
586 | 586 | $this->oFactory->oProp->aRootMenu[ 'sPageSlug' ] |
@@ -203,6 +203,7 @@ discard block |
||
203 | 203 | * Constructs a WordPress filter hook name. |
204 | 204 | * @internal |
205 | 205 | * @since 3.8.4 |
206 | + * @param string $sPrefix |
|
206 | 207 | * @return string |
207 | 208 | */ |
208 | 209 | private function _getHookNameByFieldsetAndPrefix( $sPrefix, $aFieldset ) { |
@@ -339,8 +340,6 @@ discard block |
||
339 | 340 | * @since 3.7.0 Changed back the visibility scope to protected as there is the `getFieldErrors()` public method. |
340 | 341 | * @access protected |
341 | 342 | * @internal |
342 | - * @param string $sID deprecated |
|
343 | - * @param boolean $bDelete whether or not the transient should be deleted after retrieving it. |
|
344 | 343 | * @return array |
345 | 344 | * @deprecated 3.7.0 Use `getFieldErrors()` instead. Kept for backward compatibility. |
346 | 345 | */ |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @since 3.7.0 |
94 | 94 | * @return array The modified section-sets definition array. |
95 | 95 | */ |
96 | - public function _replyToModifySectionsets( $aSectionsets ) { |
|
96 | + public function _replyToModifySectionsets( $aSectionsets ) { |
|
97 | 97 | |
98 | 98 | return $this->oUtil->addAndApplyFilter( |
99 | 99 | $this, // caller factory object |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | * An alias of `_setLastInputs()`. |
365 | 365 | * @deprecated 3.7.0 |
366 | 366 | */ |
367 | - public function _setLastInput( $aLastInputs ) { |
|
367 | + public function _setLastInput( $aLastInputs ) { |
|
368 | 368 | return $this->setLastInputs( $aLastInputs ); |
369 | 369 | } |
370 | 370 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | add_filter( |
33 | 33 | // 'field_types_admin_page_framework', |
34 | - 'field_types_' . $oProp->sClassName, |
|
34 | + 'field_types_'.$oProp->sClassName, |
|
35 | 35 | array( $this, '_replyToFilterFieldTypeDefinitions' ) |
36 | 36 | ); |
37 | 37 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | 'title' => null, |
54 | 54 | 'help_aside' => null, |
55 | 55 | ); |
56 | - if ( ! $aFieldset[ 'help' ] ) { |
|
56 | + if ( !$aFieldset[ 'help' ] ) { |
|
57 | 57 | return; |
58 | 58 | } |
59 | 59 | $this->oHelpPane->_addHelpTextForFormFields( |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | public function _replyToFilterFieldTypeDefinitions( $aFieldTypeDefinitions ) { |
74 | 74 | |
75 | 75 | // Not triggering `__call()` as the filter is fired manually in the form class. |
76 | - if ( method_exists( $this, 'field_types_' . $this->oProp->sClassName ) ) { |
|
76 | + if ( method_exists( $this, 'field_types_'.$this->oProp->sClassName ) ) { |
|
77 | 77 | return call_user_func_array( |
78 | - array( $this, 'field_types_' . $this->oProp->sClassName ), |
|
78 | + array( $this, 'field_types_'.$this->oProp->sClassName ), |
|
79 | 79 | array( $aFieldTypeDefinitions ) |
80 | 80 | ); |
81 | 81 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public function _replyToModifySectionsets( $aSectionsets ) { |
97 | 97 | |
98 | 98 | return $this->oUtil->addAndApplyFilter( |
99 | - $this, // caller factory object |
|
99 | + $this, // caller factory object |
|
100 | 100 | "sections_{$this->oProp->sClassName}", |
101 | 101 | $aSectionsets |
102 | 102 | ); |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | public function _replyToModifyFieldsets( $aFieldsets, $aSectionsets ) { |
117 | 117 | |
118 | 118 | // Apply filters to added field-sets |
119 | - foreach( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
119 | + foreach ( $aFieldsets as $_sSectionPath => $_aFields ) { |
|
120 | 120 | $_aSectionPath = explode( '|', $_sSectionPath ); |
121 | 121 | $_sFilterSuffix = implode( '_', $_aSectionPath ); |
122 | 122 | $aFieldsets[ $_sSectionPath ] = $this->oUtil->addAndApplyFilter( |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $_aFields |
126 | 126 | ); |
127 | 127 | } |
128 | - $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
128 | + $aFieldsets = $this->oUtil->addAndApplyFilter( |
|
129 | 129 | $this, |
130 | 130 | "fields_{$this->oProp->sClassName}", |
131 | 131 | $aFieldsets |
@@ -195,14 +195,14 @@ discard block |
||
195 | 195 | */ |
196 | 196 | private function _getHookNameByFieldsetAndPrefix( $sPrefix, $aFieldset ) { |
197 | 197 | |
198 | - $_sFieldPart = '_' . implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
198 | + $_sFieldPart = '_'.implode( '_', $aFieldset[ '_field_path_array' ] ); |
|
199 | 199 | $_sSectionPart = implode( '_', $aFieldset[ '_section_path_array' ] ); |
200 | 200 | $_sSectionPart = $this->oUtil->getAOrB( |
201 | 201 | '_default' === $_sSectionPart, |
202 | 202 | '', |
203 | - '_' . $_sSectionPart |
|
203 | + '_'.$_sSectionPart |
|
204 | 204 | ); |
205 | - return $sPrefix . $this->oProp->sClassName . $_sSectionPart . $_sFieldPart; |
|
205 | + return $sPrefix.$this->oProp->sClassName.$_sSectionPart.$_sFieldPart; |
|
206 | 206 | |
207 | 207 | } |
208 | 208 | |
@@ -272,9 +272,9 @@ discard block |
||
272 | 272 | public function _replyToGetSavedFormData() { |
273 | 273 | |
274 | 274 | // Must update the property with the filtered value. |
275 | - $this->oProp->aOptions = $this->oUtil->addAndApplyFilter( |
|
275 | + $this->oProp->aOptions = $this->oUtil->addAndApplyFilter( |
|
276 | 276 | $this, // the caller factory object |
277 | - 'options_' . $this->oProp->sClassName, |
|
277 | + 'options_'.$this->oProp->sClassName, |
|
278 | 278 | $this->oProp->aOptions // subject value to be filtered |
279 | 279 | ); |
280 | 280 | return $this->oProp->aOptions; |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | * An alias of `_setLastInputs()`. |
365 | 365 | * @deprecated 3.7.0 |
366 | 366 | */ |
367 | - public function _setLastInput( $aLastInputs ) { |
|
367 | + public function _setLastInput( $aLastInputs ) { |
|
368 | 368 | return $this->setLastInputs( $aLastInputs ); |
369 | 369 | } |
370 | 370 |
@@ -42,8 +42,6 @@ discard block |
||
42 | 42 | * Sets up properties. |
43 | 43 | * @since 3.6.0 |
44 | 44 | * @since 3.7.0 Changed the parameter structure. |
45 | - * @param array|string $asArguments The content output or the tooltip argument array. |
|
46 | - * @param string $sTitleElementID Not used at the moment. |
|
47 | 45 | */ |
48 | 46 | public function __construct( /* $aArguments, $sTitleElementID */ ) { |
49 | 47 | |
@@ -170,6 +168,7 @@ discard block |
||
170 | 168 | |
171 | 169 | /** |
172 | 170 | * Generates HTML attributes of the specified element. |
171 | + * @param string $sElementKey |
|
173 | 172 | * @return string |
174 | 173 | * @since 3.8.5 |
175 | 174 | */ |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | /** |
22 | 22 | * Stores the default argument values. |
23 | 23 | */ |
24 | - public $aArguments = array( |
|
24 | + public $aArguments = array( |
|
25 | 25 | 'attributes' => array( |
26 | 26 | 'container' => array(), |
27 | 27 | 'title' => array(), |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | 'description' => array(), |
30 | 30 | 'icon' => array(), |
31 | 31 | ), |
32 | - 'icon' => null, // the icon output to override |
|
33 | - 'dash-icon' => 'dashicons-editor-help', // the dash-icon class selector for the icon |
|
34 | - 'icon_alt_text' => '[?]', // [3.8.5+] alternative text when icon is not available. For WP v3.7.x or below. |
|
32 | + 'icon' => null, // the icon output to override |
|
33 | + 'dash-icon' => 'dashicons-editor-help', // the dash-icon class selector for the icon |
|
34 | + 'icon_alt_text' => '[?]', // [3.8.5+] alternative text when icon is not available. For WP v3.7.x or below. |
|
35 | 35 | 'title' => null, |
36 | - 'content' => null, // will be assigned in the constructor |
|
36 | + 'content' => null, // will be assigned in the constructor |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | public $sTitleElementID; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | if ( is_string( $asContent ) ) { |
91 | 91 | return true; |
92 | 92 | } |
93 | - if ( is_array( $asContent ) && ! $this->isAssociative( $asContent ) ) { |
|
93 | + if ( is_array( $asContent ) && !$this->isAssociative( $asContent ) ) { |
|
94 | 94 | return true; |
95 | 95 | } |
96 | 96 | return false; |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | * @return string The output. |
105 | 105 | */ |
106 | 106 | public function get() { |
107 | - if ( ! $this->aArguments[ 'content' ] ) { |
|
107 | + if ( !$this->aArguments[ 'content' ] ) { |
|
108 | 108 | return ''; |
109 | 109 | } |
110 | - return "<a " . $this->_getElementAttributes( 'container', 'admin-page-framework-form-tooltip' ) . ">" |
|
110 | + return "<a ".$this->_getElementAttributes( 'container', 'admin-page-framework-form-tooltip' ).">" |
|
111 | 111 | . $this->_getTipLinkIcon() |
112 | - . "<span " . $this->_getElementAttributes( 'content', 'admin-page-framework-form-tooltip-content' ) . ">" |
|
112 | + . "<span ".$this->_getElementAttributes( 'content', 'admin-page-framework-form-tooltip-content' ).">" |
|
113 | 113 | . $this->_getTipTitle() |
114 | 114 | . $this->_getDescriptions() |
115 | 115 | . "</span>" |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | return $this->aArguments[ 'icon' ]; |
128 | 128 | } |
129 | 129 | if ( version_compare( $GLOBALS[ 'wp_version' ], '3.8', '>=' ) ) { |
130 | - return "<span " . $this->_getElementAttributes( |
|
130 | + return "<span ".$this->_getElementAttributes( |
|
131 | 131 | 'icon', |
132 | 132 | array( |
133 | 133 | 'dashicons', |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | private function _getTipTitle() { |
147 | 147 | if ( isset( $this->aArguments[ 'title' ] ) ) { |
148 | - return "<span " . $this->_getElementAttributes( 'title', 'admin-page-framework-form-tooltip-title' ) . ">" |
|
148 | + return "<span ".$this->_getElementAttributes( 'title', 'admin-page-framework-form-tooltip-title' ).">" |
|
149 | 149 | . $this->aArguments[ 'title' ] |
150 | 150 | . "</span>"; |
151 | 151 | } |
@@ -157,9 +157,9 @@ discard block |
||
157 | 157 | */ |
158 | 158 | private function _getDescriptions() { |
159 | 159 | if ( isset( $this->aArguments[ 'content' ] ) ) { |
160 | - return "<span " . $this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ) . ">" |
|
160 | + return "<span ".$this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ).">" |
|
161 | 161 | . implode( |
162 | - "</span><span " . $this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ) . ">", |
|
162 | + "</span><span ".$this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ).">", |
|
163 | 163 | $this->getAsArray( $this->aArguments[ 'content' ] ) |
164 | 164 | ) |
165 | 165 | . "</span>" |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $_aContainerAttributes = $this->getElementAsArray( |
179 | 179 | $this->aArguments, |
180 | 180 | array( 'attributes', $sElementKey ) |
181 | - ) + array( 'class' => '' ) ; |
|
181 | + ) + array( 'class' => '' ); |
|
182 | 182 | $_aContainerAttributes[ 'class' ] = $this->getClassAttribute( |
183 | 183 | $_aContainerAttributes[ 'class' ], |
184 | 184 | $asClassSelectors |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @extends AdminPageFramework_Form_View___Section_Base |
16 | 16 | * @internal |
17 | 17 | */ |
18 | -class AdminPageFramework_Form_View___ToolTip extends AdminPageFramework_Form_View___Section_Base { |
|
18 | +class AdminPageFramework_Form_View___ToolTip extends AdminPageFramework_Form_View___Section_Base { |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Stores the default argument values. |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * @since 3.7.0 |
155 | 155 | * @return string |
156 | 156 | */ |
157 | - private function _getDescriptions() { |
|
157 | + private function _getDescriptions() { |
|
158 | 158 | if ( isset( $this->aArguments[ 'content' ] ) ) { |
159 | 159 | return "<span " . $this->_getElementAttributes( 'description', 'admin-page-framework-form-tooltip-description' ) . ">" |
160 | 160 | . implode( |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | $_aParameters = func_get_args() + array( |
35 | 35 | $this->aFieldset, |
36 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
36 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
37 | 37 | $this->aFieldErrors, |
38 | 38 | $this->aFieldTypeDefinitions, |
39 | 39 | $this->aCallbacks, // field output element callables. |
@@ -61,14 +61,14 @@ discard block |
||
61 | 61 | |
62 | 62 | $aFieldset = $this->aFieldset; |
63 | 63 | |
64 | - if ( ! $this->isNormalPlacement( $aFieldset ) ) { |
|
64 | + if ( !$this->isNormalPlacement( $aFieldset ) ) { |
|
65 | 65 | return ''; |
66 | 66 | } |
67 | 67 | |
68 | - $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
68 | + $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
69 | 69 | $aFieldset, |
70 | 70 | array( |
71 | - 'id' => 'fieldrow-' . $aFieldset[ 'tag_id' ], |
|
71 | + 'id' => 'fieldrow-'.$aFieldset[ 'tag_id' ], |
|
72 | 72 | 'valign' => 'top', |
73 | 73 | 'class' => 'admin-page-framework-fieldrow', |
74 | 74 | ) |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return $this->_getFieldByContainer( |
78 | 78 | $aFieldset, |
79 | 79 | array( |
80 | - 'open_container' => "<tr " . $_oFieldrowAttribute->get() . ">", |
|
80 | + 'open_container' => "<tr ".$_oFieldrowAttribute->get().">", |
|
81 | 81 | 'close_container' => "</tr>", |
82 | 82 | 'open_title' => "<th>", |
83 | 83 | 'close_title' => "</th>", |
@@ -126,13 +126,13 @@ discard block |
||
126 | 126 | $this->aCallbacks, |
127 | 127 | $this->oMsg |
128 | 128 | ); |
129 | - $_aOutput = array(); |
|
129 | + $_aOutput = array(); |
|
130 | 130 | if ( $aFieldset[ 'show_title_column' ] ) { |
131 | - $_aOutput[] = $aOpenCloseTags[ 'open_title' ] |
|
131 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_title' ] |
|
132 | 132 | . $_oFieldTitle->get() |
133 | 133 | . $aOpenCloseTags[ 'close_title' ]; |
134 | 134 | } |
135 | - $_aOutput[] = $aOpenCloseTags[ 'open_main' ] |
|
135 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_main' ] |
|
136 | 136 | // . call_user_func_array( $hfCallback, array( $aFieldset ) ) |
137 | 137 | . $this->getFieldsetOutput( $aFieldset ) |
138 | 138 | . $aOpenCloseTags[ 'close_main' ]; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
21 | 21 | |
22 | - public $sStructureType = ''; |
|
22 | + public $sStructureType = ''; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @since 3.8.5 |
@@ -57,12 +57,12 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function get() { |
59 | 59 | |
60 | - if ( ! $this->_shouldProceed() ) { |
|
60 | + if ( !$this->_shouldProceed() ) { |
|
61 | 61 | return ''; |
62 | 62 | } |
63 | 63 | |
64 | 64 | return "<div class='admin-page-framework-info'>" |
65 | - . $this->oMsg->get( 'debug_info' ) . ': ' |
|
65 | + . $this->oMsg->get( 'debug_info' ).': ' |
|
66 | 66 | . $this->getFrameworkNameVersion() |
67 | 67 | . "</div>"; |
68 | 68 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | private function _shouldProceed() { |
75 | 75 | |
76 | - if ( ! $this->callBack( $this->aCallbacks[ 'show_debug_info' ], true ) ) { |
|
76 | + if ( !$this->callBack( $this->aCallbacks[ 'show_debug_info' ], true ) ) { |
|
77 | 77 | return false; |
78 | 78 | } |
79 | 79 | // For the generic admin pages, do no show debug information for each section. |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * @extends AdminPageFramework_FrameworkUtility |
17 | 17 | * @internal |
18 | 18 | */ |
19 | -class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
|
19 | +class AdminPageFramework_Form_View___DebugInfo extends AdminPageFramework_FrameworkUtility { |
|
20 | 20 | |
21 | 21 | public $sStructureType = ''; |
22 | 22 |