@@ -24,7 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @since 3.6.0 |
26 | 26 | */ |
27 | - public $sContext = ''; |
|
27 | + public $sContext = ''; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | class AdminPageFramework_Form_View___Attribute_SectionTable extends AdminPageFramework_Form_View___Attribute_Base { |
19 | 19 | |
20 | - public $sContext = 'section_table'; |
|
20 | + public $sContext = 'section_table'; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Returns an attribute array. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | protected function _getAttributes() { |
29 | 29 | return array( |
30 | - 'id' => 'section_table-' . $this->aArguments[ '_tag_id' ], // 'section-' . $sSectionID . '__' . $iSectionIndex |
|
30 | + 'id' => 'section_table-'.$this->aArguments[ '_tag_id' ], // 'section-' . $sSectionID . '__' . $iSectionIndex |
|
31 | 31 | 'class' => $this->getClassAttribute( |
32 | 32 | 'form-table', |
33 | 33 | 'admin-page-framework-section-table' // referred by the collapsible section script |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * @since 3.6.0 |
26 | 26 | * @return array |
27 | 27 | */ |
28 | - protected function _getAttributes() { |
|
28 | + protected function _getAttributes() { |
|
29 | 29 | return array( |
30 | 30 | 'id' => 'section_table-' . $this->aArguments[ '_tag_id' ], // 'section-' . $sSectionID . '__' . $iSectionIndex |
31 | 31 | 'class' => $this->getClassAttribute( |
@@ -23,11 +23,11 @@ |
||
23 | 23 | */ |
24 | 24 | protected function _get() { |
25 | 25 | |
26 | - $_sSpinnerPath = $this->getWPAdminDirPath() . '/images/wpspin_light-2x.gif'; |
|
27 | - if ( ! file_exists( $_sSpinnerPath ) ) { |
|
26 | + $_sSpinnerPath = $this->getWPAdminDirPath().'/images/wpspin_light-2x.gif'; |
|
27 | + if ( !file_exists( $_sSpinnerPath ) ) { |
|
28 | 28 | return ''; |
29 | 29 | } |
30 | - $_sSpinnerURL = esc_url( admin_url( '/images/wpspin_light-2x.gif' ) ); |
|
30 | + $_sSpinnerURL = esc_url( admin_url( '/images/wpspin_light-2x.gif' ) ); |
|
31 | 31 | return <<<CSSRULES |
32 | 32 | .admin-page-framework-form-loading { |
33 | 33 | position: absolute; |
@@ -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>" |
@@ -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; |
@@ -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 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function construct() { |
29 | 29 | |
30 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
30 | + if ( !function_exists( 'wp_enqueue_media' ) ) { |
|
31 | 31 | return; |
32 | 32 | } |
33 | 33 | wp_enqueue_script( 'jquery' ); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $_oMsg = $_aParams[ 0 ]; |
66 | 66 | |
67 | 67 | // means the WordPress version is 3.4.x or below |
68 | - if ( ! function_exists( 'wp_enqueue_media' ) ) { |
|
68 | + if ( !function_exists( 'wp_enqueue_media' ) ) { |
|
69 | 69 | return ""; |
70 | 70 | } |
71 | 71 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | * @return string The generated string value. |
50 | 50 | */ |
51 | 51 | public function get() { |
52 | - return $this->_getFiltered( $this->_getBaseFieldTagID() . '__' . $this->isIndex ); |
|
52 | + return $this->_getFiltered( $this->_getBaseFieldTagID().'__'.$this->isIndex ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | } |