@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @since DEVVER |
30 | 30 | */ |
31 | 31 | public function add( $sCSSRules ) { |
32 | - $this->aAdded[] = $sCSSRules; |
|
32 | + $this->aAdded[ ] = $sCSSRules; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function get() { |
40 | 40 | |
41 | - $_sCSSRules = $this->_get() . PHP_EOL; |
|
41 | + $_sCSSRules = $this->_get().PHP_EOL; |
|
42 | 42 | $_sCSSRules .= $this->_getVersionSpecific(); |
43 | 43 | $_sCSSRules .= implode( PHP_EOL, $this->aAdded ); |
44 | 44 | return $this->isDebugMode() |
@@ -140,7 +140,7 @@ |
||
140 | 140 | background: none; /* for Wordpress v3.7.x or below, the background image need to be removed as well */ |
141 | 141 | } |
142 | 142 | CSSRULES; |
143 | - if ( version_compare( $GLOBALS['wp_version'], '3.8', '<' ) ) { |
|
143 | + if ( version_compare( $GLOBALS[ 'wp_version' ], '3.8', '<' ) ) { |
|
144 | 144 | $_sCSSRules .= <<<CSSRULES |
145 | 145 | .admin-page-framework-collapsible-sections-title.accordion-section-title:after, |
146 | 146 | .admin-page-framework-collapsible-section-title.accordion-section-title:after |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * @since DEVVER |
22 | 22 | * @return string |
23 | 23 | */ |
24 | - protected function _get() { |
|
24 | + protected function _get() { |
|
25 | 25 | return $this->_getRules(); |
26 | 26 | } |
27 | 27 | /** |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Admin Page Framework |
|
4 | - * |
|
5 | - * http://en.michaeluno.jp/admin-page-framework/ |
|
6 | - * Copyright (c) 2013-2016 Michael Uno; Licensed MIT |
|
7 | - * |
|
8 | - */ |
|
3 | + * Admin Page Framework |
|
4 | + * |
|
5 | + * http://en.michaeluno.jp/admin-page-framework/ |
|
6 | + * Copyright (c) 2013-2016 Michael Uno; Licensed MIT |
|
7 | + * |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Provides utility methods which can be accessed among different components of the framework. |
@@ -50,8 +50,8 @@ |
||
50 | 50 | } |
51 | 51 | |
52 | 52 | $_aOutput = array(); |
53 | - foreach( $this->aDescriptions as $_sDescription ) { |
|
54 | - $_aOutput[] = "<p class='" . esc_attr( $this->sClassAttribute ) . "'>" |
|
53 | + foreach ( $this->aDescriptions as $_sDescription ) { |
|
54 | + $_aOutput[ ] = "<p class='".esc_attr( $this->sClassAttribute )."'>" |
|
55 | 55 | . "<span class='description'>" |
56 | 56 | . $_sDescription |
57 | 57 | . "</span>" |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * @internal |
17 | 17 | * @extends AdminPageFramework_FrameworkUtility |
18 | 18 | */ |
19 | -class AdminPageFramework_Form_View___Description extends AdminPageFramework_FrameworkUtility { |
|
19 | +class AdminPageFramework_Form_View___Description extends AdminPageFramework_FrameworkUtility { |
|
20 | 20 | |
21 | 21 | public $aDescriptions = array(); |
22 | 22 |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $_aParams = func_get_args() + array( null ); |
44 | 44 | $_oMsg = $_aParams[ 0 ]; |
45 | - $_sToggleAllButtonHTML = '"' . self::_getToggleAllButtonHTML( $_oMsg ) . '"'; |
|
45 | + $_sToggleAllButtonHTML = '"'.self::_getToggleAllButtonHTML( $_oMsg ).'"'; |
|
46 | 46 | |
47 | 47 | return <<<JAVASCRIPTS |
48 | 48 | ( function( $ ) { |
@@ -192,18 +192,18 @@ discard block |
||
192 | 192 | $_sLabelToggleAll = $oMsg->get( 'toggle_all' ); |
193 | 193 | $_sLabelToggleAllSections = $oMsg->get( 'toggle_all_collapsible_sections' ); |
194 | 194 | $_sDashIconSort = self::getAOrB( |
195 | - version_compare( $GLOBALS['wp_version'], '3.8', '<' ), // evaluate |
|
195 | + version_compare( $GLOBALS[ 'wp_version' ], '3.8', '<' ), // evaluate |
|
196 | 196 | '', // true |
197 | 197 | 'dashicons dashicons-sort' // false |
198 | 198 | ); |
199 | - $_sText = self::getAOrB( |
|
199 | + $_sText = self::getAOrB( |
|
200 | 200 | $_sDashIconSort, // evaluate |
201 | 201 | '', // true |
202 | 202 | $_sLabelToggleAll // false |
203 | 203 | ); |
204 | 204 | return "<div class='admin-page-framework-collapsible-toggle-all-button-container'>" |
205 | - . "<span class='admin-page-framework-collapsible-toggle-all-button button " . $_sDashIconSort . "'" |
|
206 | - . " title='" . esc_attr( $_sLabelToggleAllSections ) |
|
205 | + . "<span class='admin-page-framework-collapsible-toggle-all-button button ".$_sDashIconSort."'" |
|
206 | + . " title='".esc_attr( $_sLabelToggleAllSections ) |
|
207 | 207 | . "'>" |
208 | 208 | . $_sText |
209 | 209 | . "</span>" |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Admin Page Framework |
|
4 | - * |
|
5 | - * http://en.michaeluno.jp/admin-page-framework/ |
|
6 | - * Copyright (c) 2013-2016 Michael Uno; Licensed MIT |
|
7 | - * |
|
8 | - */ |
|
3 | + * Admin Page Framework |
|
4 | + * |
|
5 | + * http://en.michaeluno.jp/admin-page-framework/ |
|
6 | + * Copyright (c) 2013-2016 Michael Uno; Licensed MIT |
|
7 | + * |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Provides an abstract base class to create meta boxes in generic admin pages created by the framework. |
@@ -129,7 +129,7 @@ |
||
129 | 129 | */ |
130 | 130 | static public function getEnabler() { |
131 | 131 | |
132 | - if ( self::$_bLoadedTabEnablerScript ) { |
|
132 | + if ( self::$_bLoadedTabEnablerScript ) { |
|
133 | 133 | return ''; |
134 | 134 | } |
135 | 135 | self::$_bLoadedTabEnablerScript = true; |
@@ -105,7 +105,7 @@ |
||
105 | 105 | new self( $oMsg ); |
106 | 106 | |
107 | 107 | // $aSettings = $this->getAsArray( $aSettings ); |
108 | - $_sScript = <<<JAVASCRIPTS |
|
108 | + $_sScript = <<<JAVASCRIPTS |
|
109 | 109 | jQuery( document ).ready( function() { |
110 | 110 | jQuery( '#{$sContainerTagID}' ).enableAdminPageFrameworkSortableSections( '{$sContainerTagID}' ); |
111 | 111 | }); |
@@ -94,10 +94,10 @@ |
||
94 | 94 | */ |
95 | 95 | static public function getEnabler( $sContainerTagID, $aSettings, $oMsg ) { |
96 | 96 | |
97 | - if ( empty( $aSettings ) ) { |
|
97 | + if ( empty( $aSettings ) ) { |
|
98 | 98 | return ''; |
99 | 99 | } |
100 | - if ( in_array( $sContainerTagID, self::$_aSetContainerIDsForSortableSections ) ) { |
|
100 | + if ( in_array( $sContainerTagID, self::$_aSetContainerIDsForSortableSections ) ) { |
|
101 | 101 | return ''; |
102 | 102 | } |
103 | 103 | self::$_aSetContainerIDsForSortableSections[ $sContainerTagID ] = $sContainerTagID; |
@@ -399,12 +399,12 @@ |
||
399 | 399 | |
400 | 400 | |
401 | 401 | /** |
402 | - * Stores the set container IDs to prevent multiple calls. |
|
403 | - * |
|
404 | - * Collapsible and tabbed sections can call this method multiple times with the same container ID. |
|
405 | - * |
|
406 | - * @since 3.4.0 |
|
407 | - */ |
|
402 | + * Stores the set container IDs to prevent multiple calls. |
|
403 | + * |
|
404 | + * Collapsible and tabbed sections can call this method multiple times with the same container ID. |
|
405 | + * |
|
406 | + * @since 3.4.0 |
|
407 | + */ |
|
408 | 408 | static private $_aSetContainerIDsForRepeatableSections = array(); |
409 | 409 | /** |
410 | 410 | * Returns the enabler script of repeatable sections. |
@@ -442,7 +442,7 @@ |
||
442 | 442 | . "<a class='repeatable-section-remove-button button-secondary repeatable-section-button button button-large' href='#' title='{$_sRemove}' {$_sVisibility} data-id='{$sContainerTagID}'>-</a>" |
443 | 443 | . "<a class='repeatable-section-add-button button-secondary repeatable-section-button button button-large' href='#' title='{$_sAdd}' data-id='{$sContainerTagID}'>+</a>" |
444 | 444 | . "</div>"; |
445 | - $_sButtonsHTML = '"' . $_sButtons . '"'; |
|
445 | + $_sButtonsHTML = '"'.$_sButtons.'"'; |
|
446 | 446 | $_aJSArray = json_encode( $aSettings ); |
447 | 447 | $_sScript = <<<JAVASCRIPTS |
448 | 448 | jQuery( document ).ready( function() { |
@@ -415,10 +415,10 @@ |
||
415 | 415 | */ |
416 | 416 | static public function getEnabler( $sContainerTagID, $iSectionCount, $aSettings, $oMsg ) { |
417 | 417 | |
418 | - if ( empty( $aSettings ) ) { |
|
418 | + if ( empty( $aSettings ) ) { |
|
419 | 419 | return ''; |
420 | 420 | } |
421 | - if ( in_array( $sContainerTagID, self::$_aSetContainerIDsForRepeatableSections ) ) { |
|
421 | + if ( in_array( $sContainerTagID, self::$_aSetContainerIDsForRepeatableSections ) ) { |
|
422 | 422 | return ''; |
423 | 423 | } |
424 | 424 | self::$_aSetContainerIDsForRepeatableSections[ $sContainerTagID ] = $sContainerTagID; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | $_oMsg = $_aParams[ 0 ]; |
58 | 58 | |
59 | 59 | // means the WordPress version is 3.4.x or below |
60 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
60 | + if ( !function_exists( 'wp_enqueue_media' ) ) { |
|
61 | 61 | return ""; |
62 | 62 | } |
63 | 63 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | $_oMsg = $_aParams[ 0 ]; |
58 | 58 | |
59 | 59 | // means the WordPress version is 3.4.x or below |
60 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
60 | + if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
61 | 61 | return ""; |
62 | 62 | } |
63 | 63 |