@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function replyToDecideToLoad( /* $oScreen */ ) { |
35 | 35 | |
36 | - if ( ! $this->_isInThePage() ) { |
|
36 | + if ( !$this->_isInThePage() ) { |
|
37 | 37 | return; |
38 | 38 | } |
39 | 39 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | // Retrieve the development version. |
46 | 46 | $this->_sDevelopmentVersion = $this->oUtil->getTransient( |
47 | - AdminPageFrameworkLoader_Registry::TRANSIENT_PREFIX . 'devver' |
|
47 | + AdminPageFrameworkLoader_Registry::TRANSIENT_PREFIX.'devver' |
|
48 | 48 | ); |
49 | 49 | |
50 | 50 | // Disable the meta box if the development version is not above the running one. |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | private function _scheduleEvent() { |
65 | 65 | |
66 | - $_sActionName = AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_action_get_development_version'; |
|
66 | + $_sActionName = AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_action_get_development_version'; |
|
67 | 67 | $_aArguments = array(); |
68 | 68 | if ( wp_next_scheduled( $_sActionName, $_aArguments ) ) { |
69 | 69 | return false; |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | ) |
98 | 98 | . "</p>" |
99 | 99 | . "<div style='width:100%; display:inline-block;'>" |
100 | - . '<a href="' . esc_url( 'https://github.com/michaeluno/admin-page-framework/archive/dev.zip' ). '">' |
|
100 | + . '<a href="'.esc_url( 'https://github.com/michaeluno/admin-page-framework/archive/dev.zip' ).'">' |
|
101 | 101 | . "<div class='button button-primary float-right'>" |
102 | 102 | . __( 'Download', 'admin-page-framework-loader' ) |
103 | 103 | . "</div>" |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | . "</div>" |
106 | 106 | ; |
107 | 107 | |
108 | - return $_sInsert . $sContent; |
|
108 | + return $_sInsert.$sContent; |
|
109 | 109 | |
110 | 110 | } |
111 | 111 |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | 'class_name' => 'AceCustomFieldType', |
89 | 89 | 'label' => __( 'ACE', 'admin-page-framework-loader' ), |
90 | 90 | 'description' => __( 'provides code syntax highlighting in a text area field.', 'admin-page-framework-loader' ), |
91 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/ace-custom-field-type', |
|
91 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/ace-custom-field-type', |
|
92 | 92 | 'archive_file_path' => 'custom-field-types/ace-custom-field-type/AceCustomFieldType.php', |
93 | 93 | 'archive_dir_path' => 'custom-field-types/ace-custom-field-type', |
94 | 94 | 'text_domain' => 'admin-page-framework', |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | 'class_name' => 'GitHubCustomFieldType', |
98 | 98 | 'label' => __( 'GitHub Buttons', 'admin-page-framework-loader' ), |
99 | 99 | 'description' => __( 'allows you to display GitHub buttons in a field.', 'admin-page-framework-loader' ), |
100 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/include/library/github-custom-field-type', |
|
100 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/include/library/github-custom-field-type', |
|
101 | 101 | 'archive_file_path' => 'custom-field-types/github-custom-field-type/GitHubCustomFieldType.php', |
102 | 102 | 'archive_dir_path' => 'custom-field-types/github-custom-field-type', |
103 | 103 | 'text_domain' => 'admin-page-framework', |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | 'class_name' => 'PathCustomFieldType', |
107 | 107 | 'label' => __( 'Path', 'admin-page-framework-loader' ), |
108 | 108 | 'description' => __( 'allows the user to select a file path on the server.', 'admin-page-framework-loader' ), |
109 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/path-custom-field-type', |
|
109 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/path-custom-field-type', |
|
110 | 110 | 'archive_file_path' => 'custom-field-types/path-custom-field-type/PathCustomFieldType.php', |
111 | 111 | 'archive_dir_path' => 'custom-field-types/path-custom-field-type', |
112 | 112 | 'text_domain' => 'admin-page-framework', |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | 'class_name' => 'ToggleCustomFieldType', |
116 | 116 | 'label' => __( 'Toggle', 'admin-page-framework-loader' ), |
117 | 117 | 'description' => __( 'allows the user to switch a button.', 'admin-page-framework-loader' ), |
118 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/toggle-custom-field-type', |
|
118 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/toggle-custom-field-type', |
|
119 | 119 | 'archive_file_path' => 'custom-field-types/toggle-custom-field-type/ToggleCustomFieldType.php', |
120 | 120 | 'archive_dir_path' => 'custom-field-types/toggle-custom-field-type', |
121 | 121 | 'text_domain' => 'admin-page-framework', |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | 'class_name' => 'NoUISliderCustomFieldType', |
125 | 125 | 'label' => __( 'NoUISlider (Range Slider)', 'admin-page-framework-loader' ), |
126 | 126 | 'description' => __( 'allows the user to set values in ranges.', 'admin-page-framework-loader' ), |
127 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/nouislider-custom-field-type', |
|
127 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/nouislider-custom-field-type', |
|
128 | 128 | 'archive_file_path' => 'custom-field-types/nouislider-custom-field-type/NoUISliderCustomFieldType.php', |
129 | 129 | 'archive_dir_path' => 'custom-field-types/nouislider-custom-field-type', |
130 | 130 | 'text_domain' => 'admin-page-framework', |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | 'class_name' => 'Select2CustomFieldType', |
134 | 134 | 'label' => __( 'Select2', 'admin-page-framework-loader' ), |
135 | 135 | 'description' => __( 'allows the user to select items with autocomplete from a list which can be populated with AJAX.', 'admin-page-framework-loader' ), |
136 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/select2-custom-field-type', |
|
136 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/select2-custom-field-type', |
|
137 | 137 | 'archive_file_path' => 'custom-field-types/select2-custom-field-type/Select2CustomFieldType.php', |
138 | 138 | 'archive_dir_path' => 'custom-field-types/select2-custom-field-type', |
139 | 139 | 'text_domain' => 'admin-page-framework', |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | 'class_name' => 'PostTypeTaxonomyCustomFieldType', |
143 | 143 | 'label' => __( 'Post Type Taxonomy', 'admin-page-framework-loader' ), |
144 | 144 | 'description' => __( 'allows the user to select taxonomy terms of selected post types.', 'admin-page-framework-loader' ), |
145 | - 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath . '/example/library/post_type_taxonomy_field-type', |
|
145 | + 'directory_path' => AdminPageFrameworkLoader_Registry::$sDirPath.'/example/library/post_type_taxonomy_field-type', |
|
146 | 146 | 'archive_file_path' => 'custom-field-types/post_type_taxonomy_field-type/PostTypeTaxonomyCustomFieldType.php', |
147 | 147 | 'archive_dir_path' => 'custom-field-types/post_type_taxonomy_field-type', |
148 | 148 | 'text_domain' => 'admin-page-framework', |
@@ -151,13 +151,13 @@ discard block |
||
151 | 151 | |
152 | 152 | // Let third-party scripts add custom field types. |
153 | 153 | $this->aCustomFieldTypes = apply_filters( |
154 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_filter_generator_custom_field_types', |
|
154 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_filter_generator_custom_field_types', |
|
155 | 155 | $this->aCustomFieldTypes |
156 | 156 | ); |
157 | 157 | |
158 | - foreach( $this->aCustomFieldTypes as $_sKey => $_aCustomFieldType ) { |
|
158 | + foreach ( $this->aCustomFieldTypes as $_sKey => $_aCustomFieldType ) { |
|
159 | 159 | $this->aCustomFieldTypeLabels[ $_sKey ] = $_aCustomFieldType[ 'label' ] |
160 | - . ' - <span class="description">' . $_aCustomFieldType[ 'description' ] . '</span>'; |
|
160 | + . ' - <span class="description">'.$_aCustomFieldType[ 'description' ].'</span>'; |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | } |
@@ -173,10 +173,10 @@ discard block |
||
173 | 173 | |
174 | 174 | // Check the file extension. |
175 | 175 | $_aAllowedExtensions = apply_filters( |
176 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_filter_generator_allowed_file_extensions', |
|
176 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_filter_generator_allowed_file_extensions', |
|
177 | 177 | array( 'php', 'css', 'js' ) |
178 | 178 | ); |
179 | - if ( ! in_array( pathinfo( $sPathInArchive, PATHINFO_EXTENSION ), $_aAllowedExtensions ) ) { |
|
179 | + if ( !in_array( pathinfo( $sPathInArchive, PATHINFO_EXTENSION ), $_aAllowedExtensions ) ) { |
|
180 | 180 | return $sFileContents; |
181 | 181 | } |
182 | 182 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | private function _getModifiedInclusionList( $sFileContents ) { |
207 | 207 | return str_replace( |
208 | 208 | ');', // search |
209 | - $this->_getClassListOfCustomFieldTypes() . ');', // replace - @todo insert the selected class list here |
|
209 | + $this->_getClassListOfCustomFieldTypes().');', // replace - @todo insert the selected class list here |
|
210 | 210 | $sFileContents // subject |
211 | 211 | ); |
212 | 212 | } |
@@ -223,18 +223,18 @@ discard block |
||
223 | 223 | $_POST, |
224 | 224 | array( |
225 | 225 | $this->oFactory->oProp->sOptionKey, |
226 | - 'generator', // section id |
|
226 | + 'generator', // section id |
|
227 | 227 | 'class_prefix' // field id |
228 | 228 | ), |
229 | 229 | '' |
230 | 230 | ); |
231 | 231 | $_aOutput = array(); |
232 | - foreach( $_aCheckedCustomFieldTypes as $_sClassName => $_aCustomFieldType ) { |
|
233 | - $_aOutput[] = ' "' . $_sClassPrefix . $_sClassName . '"' |
|
232 | + foreach ( $_aCheckedCustomFieldTypes as $_sClassName => $_aCustomFieldType ) { |
|
233 | + $_aOutput[ ] = ' "'.$_sClassPrefix.$_sClassName.'"' |
|
234 | 234 | . ' => ' |
235 | - . 'AdminPageFramework_Registry::$sDirPath . ' . '"/' . ltrim( $_aCustomFieldType[ 'archive_file_path' ], '/' ) . '",'; |
|
235 | + . 'AdminPageFramework_Registry::$sDirPath . '.'"/'.ltrim( $_aCustomFieldType[ 'archive_file_path' ], '/' ).'",'; |
|
236 | 236 | } |
237 | - return implode( PHP_EOL, $_aOutput ) . PHP_EOL; |
|
237 | + return implode( PHP_EOL, $_aOutput ).PHP_EOL; |
|
238 | 238 | |
239 | 239 | } |
240 | 240 | |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | $this->aCustomFieldTypes // ArchiveFilePaths |
253 | 253 | ); |
254 | 254 | $_aArchiveFilePaths = array(); |
255 | - foreach( $_aSelectedCustomFieldTypes as $_sClassName => $_aCustomFieldType ) { |
|
255 | + foreach ( $_aSelectedCustomFieldTypes as $_sClassName => $_aCustomFieldType ) { |
|
256 | 256 | $_aArchiveFilePaths[ $_sClassName ] = $this->oFactory->oUtil->getElement( |
257 | 257 | $_aCustomFieldType, |
258 | 258 | 'archive_file_path', |
@@ -304,17 +304,17 @@ discard block |
||
304 | 304 | array( $sParsingClassName, 'text_domain' ) |
305 | 305 | ); |
306 | 306 | if ( $_sFieldTypeTextDomain ) { |
307 | - $_aSearches[] = $_sFieldTypeTextDomain; |
|
308 | - $_aReplaces[] = $_sUserTextDomain; |
|
307 | + $_aSearches[ ] = $_sFieldTypeTextDomain; |
|
308 | + $_aReplaces[ ] = $_sUserTextDomain; |
|
309 | 309 | } |
310 | 310 | |
311 | - $_aSearches[] = 'admin-page-framework'; |
|
312 | - $_aReplaces[] = $_sUserTextDomain; |
|
311 | + $_aSearches[ ] = 'admin-page-framework'; |
|
312 | + $_aReplaces[ ] = $_sUserTextDomain; |
|
313 | 313 | |
314 | 314 | // Return the converted string. |
315 | 315 | return str_replace( |
316 | - $_aSearches, // search |
|
317 | - $_aReplaces, // replace |
|
316 | + $_aSearches, // search |
|
317 | + $_aReplaces, // replace |
|
318 | 318 | $sFileContents // subject |
319 | 319 | ); |
320 | 320 | |
@@ -332,8 +332,8 @@ discard block |
||
332 | 332 | ); |
333 | 333 | |
334 | 334 | return preg_replace( |
335 | - $this->_getClassPrefixRegexPatterns( $_aSelectedFieldTypeClassNames ), // search |
|
336 | - $this->_getClassPrefixRegexReplacements( $_aSelectedFieldTypeClassNames ), // replace |
|
335 | + $this->_getClassPrefixRegexPatterns( $_aSelectedFieldTypeClassNames ), // search |
|
336 | + $this->_getClassPrefixRegexReplacements( $_aSelectedFieldTypeClassNames ), // replace |
|
337 | 337 | $sFileContents // subject |
338 | 338 | ); |
339 | 339 | |
@@ -346,8 +346,8 @@ discard block |
||
346 | 346 | private function _getClassPrefixRegexPatterns( array $aSelectedFieldTypeClassNames ) { |
347 | 347 | |
348 | 348 | $_aPregSearches = array(); |
349 | - foreach( $aSelectedFieldTypeClassNames as $_sClassName ) { |
|
350 | - $_aPregSearches[] = '/(?<=[^a-zA-Z0-9])(' . $_sClassName . ')/'; |
|
349 | + foreach ( $aSelectedFieldTypeClassNames as $_sClassName ) { |
|
350 | + $_aPregSearches[ ] = '/(?<=[^a-zA-Z0-9])('.$_sClassName.')/'; |
|
351 | 351 | } |
352 | 352 | return $_aPregSearches; |
353 | 353 | |
@@ -359,9 +359,9 @@ discard block |
||
359 | 359 | */ |
360 | 360 | private function _getClassPrefixRegexReplacements( array $aSelectedFieldTypeClassNames ) { |
361 | 361 | |
362 | - $_aPrefixedClassNames = $aSelectedFieldTypeClassNames; |
|
362 | + $_aPrefixedClassNames = $aSelectedFieldTypeClassNames; |
|
363 | 363 | array_walk( |
364 | - $_aPrefixedClassNames, // passed by reference |
|
364 | + $_aPrefixedClassNames, // passed by reference |
|
365 | 365 | array( $this, '_replyToSetPrefix' ), |
366 | 366 | $this->oFactory->oUtil->getElement( |
367 | 367 | $_POST, |
@@ -382,8 +382,8 @@ discard block |
||
382 | 382 | * @callback function array_walk |
383 | 383 | * @return string |
384 | 384 | */ |
385 | - public function _replyToSetPrefix( &$sClassName, $sKey, $sPrefix='' ) { |
|
386 | - $sClassName = $sPrefix . '$0'; |
|
385 | + public function _replyToSetPrefix( &$sClassName, $sKey, $sPrefix = '' ) { |
|
386 | + $sClassName = $sPrefix.'$0'; |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | |
@@ -404,12 +404,12 @@ discard block |
||
404 | 404 | */ |
405 | 405 | public function replyToSetAdditionalDirectoriesForGenerator( $aDirPaths ) { |
406 | 406 | |
407 | - $_aCheckedCustomFieldTypes = $this->_getSelectedCustomFieldTypes( |
|
407 | + $_aCheckedCustomFieldTypes = $this->_getSelectedCustomFieldTypes( |
|
408 | 408 | $this->aCustomFieldTypes |
409 | 409 | ); |
410 | 410 | |
411 | 411 | $_aDirPathInfo = array(); |
412 | - foreach( $_aCheckedCustomFieldTypes as $_sKey => $_aCheckedCustomFieldType ) { |
|
412 | + foreach ( $_aCheckedCustomFieldTypes as $_sKey => $_aCheckedCustomFieldType ) { |
|
413 | 413 | |
414 | 414 | $_sArchiveDirPath = $this->oFactory->oUtil->getElement( $_aCheckedCustomFieldType, 'archive_dir_path' ); |
415 | 415 | $_sSourceDirPath = $this->oFactory->oUtil->getElement( $_aCheckedCustomFieldType, 'directory_path' ); |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | * @return array The array keys of the checked items. |
426 | 426 | * @since 3.6.0 |
427 | 427 | */ |
428 | - private function _getSelectedCustomFieldTypes( array $aSubject=array() ) { |
|
428 | + private function _getSelectedCustomFieldTypes( array $aSubject = array() ) { |
|
429 | 429 | |
430 | 430 | $_aCheckedCustomFieldTypes = $this->oFactory->oUtil->getElementAsArray( |
431 | 431 | $_POST, |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $oAdminPage, |
27 | 27 | $this->sPageSlug, |
28 | 28 | array( |
29 | - 'section_id' => $this->sTabSlug, // avoid hyphen(dash), dots, and white spaces |
|
29 | + 'section_id' => $this->sTabSlug, // avoid hyphen(dash), dots, and white spaces |
|
30 | 30 | 'tab_slug' => $this->sTabSlug, |
31 | 31 | 'title' => __( 'Download Framework', 'admin-page-framework-loader' ), |
32 | 32 | 'description' => array( |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $this->oFactory = $oFactory; |
31 | 31 | |
32 | 32 | add_action( |
33 | - 'export_name_' . $this->sPageSlug . '_' . $this->sTabSlug, |
|
33 | + 'export_name_'.$this->sPageSlug.'_'.$this->sTabSlug, |
|
34 | 34 | array( $this, 'replyToFilterFileName' ), |
35 | 35 | 10, |
36 | 36 | 5 |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | 'label_min_width' => 0, |
128 | 128 | 'order' => 100, |
129 | 129 | 'value' => __( 'Download', 'adimn-page-framework-demo' ), |
130 | - 'file_name' => 'admin-page-framework.zip', // the default file name. This will be modified by the filter. |
|
131 | - 'format' => 'text', // 'json', 'text', 'array' |
|
130 | + 'file_name' => 'admin-page-framework.zip', // the default file name. This will be modified by the filter. |
|
131 | + 'format' => 'text', // 'json', 'text', 'array' |
|
132 | 132 | 'description' => $oFactory->oUtil->getAOrB( |
133 | 133 | class_exists( 'ZipArchive' ), |
134 | 134 | __( 'Download the compiled framework files as a zip file.', 'admin-page-framework-loader' ), |
@@ -183,8 +183,8 @@ discard block |
||
183 | 183 | |
184 | 184 | // the class prefix must not contain white spaces and some other characters not supported in PHP class names. |
185 | 185 | preg_match( |
186 | - '/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', // pattern - allowed characters for variables in PHP. |
|
187 | - $aInput[ 'class_prefix' ], // subject |
|
186 | + '/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', // pattern - allowed characters for variables in PHP. |
|
187 | + $aInput[ 'class_prefix' ], // subject |
|
188 | 188 | $_aMatches |
189 | 189 | ); |
190 | 190 | if ( $aInput[ 'class_prefix' ] && empty( $_aMatches ) ) { |
@@ -192,13 +192,13 @@ discard block |
||
192 | 192 | $_bVerified = false; |
193 | 193 | } |
194 | 194 | |
195 | - if ( ! $aInput[ 'text_domain' ] ) { |
|
195 | + if ( !$aInput[ 'text_domain' ] ) { |
|
196 | 196 | $_aErrors[ $this->sSectionID ][ 'text_domain' ] = __( 'The text domain cannot be empty.', 'admin-page-framework-loader' ); |
197 | 197 | $_bVerified = false; |
198 | 198 | } |
199 | 199 | |
200 | 200 | // An invalid value is found. Set a field error array and an admin notice and return the old values. |
201 | - if ( ! $_bVerified ) { |
|
201 | + if ( !$_bVerified ) { |
|
202 | 202 | $oAdminPage->setFieldErrors( $_aErrors ); |
203 | 203 | $oAdminPage->setSettingNotice( __( 'There was something wrong with your input.', 'admin-page-framework-loader' ) ); |
204 | 204 | return $aOldInput; |
@@ -240,8 +240,8 @@ discard block |
||
240 | 240 | */ |
241 | 241 | public function replyToDownloadFramework( $aSavedData, $sSubmittedFieldID, $sSubmittedInputID, $oAdminPage ) { |
242 | 242 | |
243 | - $_sFrameworkDirPath = AdminPageFrameworkLoader_Registry::$sDirPath . '/library/apf'; |
|
244 | - if ( ! file_exists( $_sFrameworkDirPath ) ) { |
|
243 | + $_sFrameworkDirPath = AdminPageFrameworkLoader_Registry::$sDirPath.'/library/apf'; |
|
244 | + if ( !file_exists( $_sFrameworkDirPath ) ) { |
|
245 | 245 | return $aSavedData; |
246 | 246 | } |
247 | 247 | |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $_sFrameworkDirPath, |
251 | 251 | $_sTempFile |
252 | 252 | ); |
253 | - header( "Content-Length: " . strlen( $_sData ) ); |
|
253 | + header( "Content-Length: ".strlen( $_sData ) ); |
|
254 | 254 | unlink( $_sTempFile ); |
255 | 255 | return $_sData; |
256 | 256 | |
@@ -267,9 +267,9 @@ discard block |
||
267 | 267 | $sFrameworkDirPath, |
268 | 268 | $sDestinationPath, |
269 | 269 | array( |
270 | - 'include_directory' => false, // wrap contents in a sub-directory |
|
270 | + 'include_directory' => false, // wrap contents in a sub-directory |
|
271 | 271 | 'additional_source_directories' => apply_filters( |
272 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_filter_generator_additional_source_directories', |
|
272 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_filter_generator_additional_source_directories', |
|
273 | 273 | array() // directory paths |
274 | 274 | ), |
275 | 275 | ), |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | ) |
281 | 281 | ); |
282 | 282 | $_bSucceed = $_oZip->compress(); |
283 | - if ( ! $_bSucceed ) { |
|
283 | + if ( !$_bSucceed ) { |
|
284 | 284 | return ''; |
285 | 285 | } |
286 | 286 | return file_get_contents( $sDestinationPath ); |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | // Check if it belongs to selected components. |
302 | 302 | if ( false === $this->_isAllowedArchivePath( $sPathInArchive ) ) { |
303 | - return ''; // empty value will drop the entry |
|
303 | + return ''; // empty value will drop the entry |
|
304 | 304 | } |
305 | 305 | return $sPathInArchive; |
306 | 306 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | */ |
320 | 320 | private function _isAllowedArchivePath( $sPath ) { |
321 | 321 | |
322 | - foreach( $this->_getDisallowedArchiveDirectoryPaths() as $_sDisallowedPath ) { |
|
322 | + foreach ( $this->_getDisallowedArchiveDirectoryPaths() as $_sDisallowedPath ) { |
|
323 | 323 | $_bHasPrefix = $this->oFactory->oUtil->hasPrefix( |
324 | 324 | ltrim( $_sDisallowedPath, '/' ), // needle |
325 | 325 | ltrim( $sPath, '/' ) // haystack |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | // List paths. |
393 | 393 | $_aAllComponentsPaths = array(); |
394 | 394 | $_aSelectedComponentsPaths = array(); |
395 | - foreach( $this->_aComponentPaths as $_sKey => $_aPaths ) { |
|
395 | + foreach ( $this->_aComponentPaths as $_sKey => $_aPaths ) { |
|
396 | 396 | |
397 | 397 | // Extract all component paths. |
398 | 398 | $_aAllComponentsPaths = array_merge( |
@@ -447,16 +447,16 @@ discard block |
||
447 | 447 | |
448 | 448 | // Check the file extension. |
449 | 449 | $_aAllowedExtensions = apply_filters( |
450 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_filter_generator_allowed_file_extensions', |
|
450 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_filter_generator_allowed_file_extensions', |
|
451 | 451 | array( 'php', 'css', 'js' ) |
452 | 452 | ); |
453 | - if ( ! in_array( pathinfo( $sPathInArchive, PATHINFO_EXTENSION ), $_aAllowedExtensions ) ) { |
|
453 | + if ( !in_array( pathinfo( $sPathInArchive, PATHINFO_EXTENSION ), $_aAllowedExtensions ) ) { |
|
454 | 454 | return $sFileContents; |
455 | 455 | } |
456 | 456 | |
457 | 457 | // Modify the file contents. |
458 | 458 | $sFileContents = apply_filters( |
459 | - AdminPageFrameworkLoader_Registry::HOOK_SLUG . '_filter_generator_file_contents', |
|
459 | + AdminPageFrameworkLoader_Registry::HOOK_SLUG.'_filter_generator_file_contents', |
|
460 | 460 | $sFileContents, |
461 | 461 | $sPathInArchive, |
462 | 462 | $this->oFactory->oUtil->getElement( |
@@ -517,12 +517,12 @@ discard block |
||
517 | 517 | $this->_getCheckedComponents() |
518 | 518 | ); |
519 | 519 | $_aInsert = array( |
520 | - 'Included Components: ' . implode( ', ', $_aCheckedComponents ), |
|
521 | - 'Generated on ' . date( 'Y-m-d' ), // today's date |
|
520 | + 'Included Components: '.implode( ', ', $_aCheckedComponents ), |
|
521 | + 'Generated on '.date( 'Y-m-d' ), // today's date |
|
522 | 522 | ); |
523 | 523 | return preg_replace( |
524 | 524 | '#\*/#', // needle - matches '*/' |
525 | - implode( PHP_EOL . ' ', $_aInsert ) . ' \0', // replacement \0 is a back-reference to '*/' |
|
525 | + implode( PHP_EOL.' ', $_aInsert ).' \0', // replacement \0 is a back-reference to '*/' |
|
526 | 526 | $sFileContents, // subject |
527 | 527 | 1 // replace only the first occurrence |
528 | 528 | ); |
@@ -536,14 +536,14 @@ discard block |
||
536 | 536 | private function _modifyClassNameOfInclusionList( $sFileContents ) { |
537 | 537 | // Replace the array key names. |
538 | 538 | $sFileContents = preg_replace_callback( |
539 | - '/(["\'])(.+)\1(?=\s?+=>)/', // pattern ' |
|
540 | - array( $this, '_replyToModifyPathName' ), // callable |
|
539 | + '/(["\'])(.+)\1(?=\s?+=>)/', // pattern ' |
|
540 | + array( $this, '_replyToModifyPathName' ), // callable |
|
541 | 541 | $sFileContents // subject |
542 | 542 | ); |
543 | 543 | // Replace the registry class names. |
544 | 544 | return preg_replace_callback( |
545 | - '/(=>\s?+)(.+)(?=::)/', // pattern ' |
|
546 | - array( $this, '_replyToModifyPathName' ), // callable |
|
545 | + '/(=>\s?+)(.+)(?=::)/', // pattern ' |
|
546 | + array( $this, '_replyToModifyPathName' ), // callable |
|
547 | 547 | $sFileContents // subject |
548 | 548 | ); |
549 | 549 | } |
@@ -568,7 +568,7 @@ discard block |
||
568 | 568 | return strlen( $_sPrefix ) |
569 | 569 | ? str_replace( |
570 | 570 | 'AdminPageFramework', // search |
571 | - $_sPrefix . 'AdminPageFramework', // replace |
|
571 | + $_sPrefix.'AdminPageFramework', // replace |
|
572 | 572 | $sSubject // subject |
573 | 573 | ) |
574 | 574 | : $sSubject; |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | */ |
601 | 601 | private function _getFormSubmitValueByFieldIDAsString( $sFieldID ) { |
602 | 602 | |
603 | - static $_aCaches=array(); |
|
603 | + static $_aCaches = array(); |
|
604 | 604 | $_aCaches[ $sFieldID ] = isset( $_aCaches[ $sFieldID ] ) |
605 | 605 | ? $_aCaches[ $sFieldID ] |
606 | 606 | : $this->oFactory->oUtil->getElement( |
@@ -634,9 +634,9 @@ discard block |
||
634 | 634 | 'public', |
635 | 635 | ), |
636 | 636 | 'Content-Description' => 'File Transfer', |
637 | - 'Content-type' => 'application/octet-stream', // 'application/zip' may work as well |
|
637 | + 'Content-type' => 'application/octet-stream', // 'application/zip' may work as well |
|
638 | 638 | 'Content-Transfer-Encoding' => 'binary', |
639 | - 'Content-Disposition' => 'attachment; filename="' . $sFileName .'";', |
|
639 | + 'Content-Disposition' => 'attachment; filename="'.$sFileName.'";', |
|
640 | 640 | // 'Content-Length' => strlen( $mData ), |
641 | 641 | ) + $aHeader; |
642 | 642 | |
@@ -673,10 +673,10 @@ discard block |
||
673 | 673 | $_sFileNameWOExtension = trim( $_sFileNameWOExtension ); |
674 | 674 | return $this->oFactory->oUtil->getAOrB( |
675 | 675 | $_sFileNameWOExtension, |
676 | - $_sFileNameWOExtension . '-admin-page-framework', |
|
676 | + $_sFileNameWOExtension.'-admin-page-framework', |
|
677 | 677 | 'admin-page-framework' |
678 | 678 | ) |
679 | - . '.' . AdminPageFramework_Registry::VERSION |
|
679 | + . '.'.AdminPageFramework_Registry::VERSION |
|
680 | 680 | . '.zip'; |
681 | 681 | |
682 | 682 | } |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | public function getClasses() { |
32 | 32 | |
33 | 33 | // Include the include lists. The including file reassigns the list(array) to the $_aClassFiles variable. |
34 | - $_aClassFiles = array(); |
|
35 | - include( dirname( $this->sFilePath ) . '/include/loader-class-list.php' ); |
|
34 | + $_aClassFiles = array(); |
|
35 | + include( dirname( $this->sFilePath ).'/include/loader-class-list.php' ); |
|
36 | 36 | $this->_aClassFiles = $_aClassFiles; |
37 | 37 | return $_aClassFiles; |
38 | 38 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | if ( $_oRequirementCheck->check() ) { |
61 | 61 | $_oRequirementCheck->deactivatePlugin( |
62 | 62 | $this->sFilePath, |
63 | - __( 'Deactivating the plugin', 'admin-page-framework-loader' ), // additional message |
|
63 | + __( 'Deactivating the plugin', 'admin-page-framework-loader' ), // additional message |
|
64 | 64 | true // is in the activation hook. This will exit the script. |
65 | 65 | ); |
66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | public function setLocalization() { |
76 | 76 | |
77 | 77 | // This plugin does not have messages to be displayed in the front end. |
78 | - if ( ! $this->bIsAdmin ) { |
|
78 | + if ( !$this->bIsAdmin ) { |
|
79 | 79 | return; |
80 | 80 | } |
81 | 81 | |
@@ -83,13 +83,13 @@ discard block |
||
83 | 83 | load_plugin_textdomain( |
84 | 84 | AdminPageFrameworkLoader_Registry::TEXT_DOMAIN, |
85 | 85 | false, |
86 | - $_sPluginBaseNameDirName . '/' . AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
86 | + $_sPluginBaseNameDirName.'/'.AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
87 | 87 | ); |
88 | 88 | |
89 | 89 | load_plugin_textdomain( |
90 | 90 | 'admin-page-framework', |
91 | 91 | false, |
92 | - $_sPluginBaseNameDirName . '/' . AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
92 | + $_sPluginBaseNameDirName.'/'.AdminPageFrameworkLoader_Registry::TEXT_DOMAIN_PATH |
|
93 | 93 | ); |
94 | 94 | |
95 | 95 | } |
@@ -112,14 +112,14 @@ discard block |
||
112 | 112 | |
113 | 113 | // Loader plugin admin pages. |
114 | 114 | new AdminPageFrameworkLoader_AdminPage( |
115 | - AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
115 | + AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
116 | 116 | $this->sFilePath // caller script path |
117 | 117 | ); |
118 | 118 | |
119 | 119 | // Network admin pages. |
120 | 120 | if ( is_network_admin() ) { |
121 | 121 | new AdminPageFrameworkLoader_NetworkAdmin( |
122 | - AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
122 | + AdminPageFrameworkLoader_Registry::$aOptionKeys[ 'main' ], // the option key |
|
123 | 123 | $this->sFilePath // caller script path |
124 | 124 | ); |
125 | 125 | } |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | */ |
140 | 140 | private function _shouldShowAdminPages() { |
141 | 141 | |
142 | - if ( ! $this->bIsAdmin ) { |
|
142 | + if ( !$this->bIsAdmin ) { |
|
143 | 143 | return false; |
144 | 144 | } |
145 | 145 | if ( AdminPageFrameworkLoader_Utility::isSilentMode() ) { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | '' // default value |
40 | 40 | ); |
41 | 41 | |
42 | - if ( ! $this->canUserView( $this->sCapability ) ) { |
|
42 | + if ( !$this->canUserView( $this->sCapability ) ) { |
|
43 | 43 | return ''; |
44 | 44 | } |
45 | 45 |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @return array |
49 | 49 | */ |
50 | - public function get( $iItems=0 ) { |
|
50 | + public function get( $iItems = 0 ) { |
|
51 | 51 | |
52 | 52 | $_aOutput = array(); |
53 | 53 | $_aURLs = $this->_aURLs; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | return $_aOutput; |
57 | 57 | } |
58 | 58 | |
59 | - $_oFeed = fetch_feed( $_aURLs ); |
|
59 | + $_oFeed = fetch_feed( $_aURLs ); |
|
60 | 60 | if ( is_wp_error( $_oFeed ) ) { |
61 | 61 | return $_aOutput; |
62 | 62 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | 'title' => $_oItem->get_title(), |
68 | 68 | 'date' => $_oItem->get_date( 'j F Y, g:i a' ), |
69 | 69 | 'author' => $_oItem->get_author(), |
70 | - 'link' => $_oItem->get_permalink(), // get_link() may be used as well |
|
70 | + 'link' => $_oItem->get_permalink(), // get_link() may be used as well |
|
71 | 71 | ); |
72 | 72 | } |
73 | 73 |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | static public function getRelativePath( $from, $to ) { |
29 | 29 | |
30 | 30 | // some compatibility fixes for Windows paths |
31 | - $from = is_dir( $from ) ? rtrim( $from, '\/') . '/' : $from; |
|
32 | - $to = is_dir( $to ) ? rtrim( $to, '\/') . '/' : $to; |
|
31 | + $from = is_dir( $from ) ? rtrim( $from, '\/' ).'/' : $from; |
|
32 | + $to = is_dir( $to ) ? rtrim( $to, '\/' ).'/' : $to; |
|
33 | 33 | $from = str_replace( '\\', '/', $from ); |
34 | 34 | $to = str_replace( '\\', '/', $to ); |
35 | 35 | |
@@ -37,21 +37,21 @@ discard block |
||
37 | 37 | $to = explode( '/', $to ); |
38 | 38 | $relPath = $to; |
39 | 39 | |
40 | - foreach( $from as $depth => $dir ) { |
|
40 | + foreach ( $from as $depth => $dir ) { |
|
41 | 41 | // find first non-matching dir |
42 | - if( $dir === $to[ $depth ] ) { |
|
42 | + if ( $dir === $to[ $depth ] ) { |
|
43 | 43 | // ignore this directory |
44 | 44 | array_shift( $relPath ); |
45 | 45 | } else { |
46 | 46 | // get number of remaining dirs to $from |
47 | 47 | $remaining = count( $from ) - $depth; |
48 | - if( $remaining > 1 ) { |
|
48 | + if ( $remaining > 1 ) { |
|
49 | 49 | // add traversals up to first matching dir |
50 | 50 | $padLength = ( count( $relPath ) + $remaining - 1 ) * -1; |
51 | 51 | $relPath = array_pad( $relPath, $padLength, '..' ); |
52 | 52 | break; |
53 | 53 | } else { |
54 | - $relPath[ 0 ] = './' . $relPath[ 0 ]; |
|
54 | + $relPath[ 0 ] = './'.$relPath[ 0 ]; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | 'debug_backtrace', |
76 | 76 | self::_getDebugBacktraceArguments() |
77 | 77 | ); |
78 | - foreach( $_aBackTrace as $_aDebugInfo ) { |
|
78 | + foreach ( $_aBackTrace as $_aDebugInfo ) { |
|
79 | 79 | $_aDebugInfo = self::getAsArray( $_aDebugInfo ) + array( 'file' => '' ); // prevents an undefined index |
80 | 80 | $_sCallerFilePath = $_aDebugInfo[ 'file' ]; |
81 | 81 | if ( in_array( $_sCallerFilePath, $_aRedirectedFilePaths ) ) { |
@@ -75,7 +75,7 @@ |
||
75 | 75 | 'debug_backtrace', |
76 | 76 | self::_getDebugBacktraceArguments() |
77 | 77 | ); |
78 | - foreach( $_aBackTrace as $_aDebugInfo ) { |
|
78 | + foreach( $_aBackTrace as $_aDebugInfo ) { |
|
79 | 79 | $_aDebugInfo = self::getAsArray( $_aDebugInfo ) + array( 'file' => '' ); // prevents an undefined index |
80 | 80 | $_sCallerFilePath = $_aDebugInfo[ 'file' ]; |
81 | 81 | if ( in_array( $_sCallerFilePath, $_aRedirectedFilePaths ) ) { |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | |
138 | 138 | // Save the data. |
139 | 139 | $_bUpdated = false; |
140 | - if ( ! $this->oFactory->oProp->_bDisableSavingOptions ) { |
|
140 | + if ( ! $this->oFactory->oProp->_bDisableSavingOptions ) { |
|
141 | 141 | $_bUpdated = $this->oFactory->oProp->updateOption( $_aInputs ); |
142 | 142 | } |
143 | 143 | |
@@ -180,14 +180,15 @@ discard block |
||
180 | 180 | $_POST[ 'admin_page_framework_start' ], // indicates the framework form is started |
181 | 181 | $_POST[ '_wp_http_referer' ] |
182 | 182 | ) |
183 | - ) { |
|
183 | + ) { |
|
184 | 184 | return false; |
185 | 185 | } |
186 | 186 | |
187 | 187 | // Referrer |
188 | 188 | $_sRequestURI = remove_query_arg( array( 'settings-updated', 'confirmation', 'field_errors' ), wp_unslash( $_SERVER[ 'REQUEST_URI' ] ) ); |
189 | 189 | $_sRefererURI = remove_query_arg( array( 'settings-updated', 'confirmation', 'field_errors' ), $_POST[ '_wp_http_referer' ] ); |
190 | - if ( $_sRequestURI != $_sRefererURI ) { // see the function definition of wp_referer_field() in functions.php. |
|
190 | + if ( $_sRequestURI != $_sRefererURI ) { |
|
191 | +// see the function definition of wp_referer_field() in functions.php. |
|
191 | 192 | return false; |
192 | 193 | } |
193 | 194 |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function __construct( $oFactory, $aSavedData, $aArguments, $aSectionsets, $aFieldsets ) { |
30 | 30 | |
31 | - $this->oFactory = $oFactory; |
|
31 | + $this->oFactory = $oFactory; |
|
32 | 32 | |
33 | 33 | // add_action |
34 | 34 | // @deprecated 3.7.0 |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function _handleFormData() { |
73 | 73 | |
74 | - if ( ! $this->_shouldProceed() ) { |
|
74 | + if ( !$this->_shouldProceed() ) { |
|
75 | 75 | return; |
76 | 76 | } |
77 | 77 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | new AdminPageFramework_Model__FormSubmission__Validator( $this->oFactory ); |
128 | 128 | |
129 | 129 | // [3.6.3+] Apply filters. All the sub-routines of handling form submit data use this filter hook. |
130 | - $_aInputs = $this->addAndApplyFilters( |
|
130 | + $_aInputs = $this->addAndApplyFilters( |
|
131 | 131 | $this->oFactory, |
132 | 132 | "validation_pre_{$this->oFactory->oProp->sClassName}", |
133 | 133 | $_aInputs, |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | |
139 | 139 | // Save the data. |
140 | 140 | $_bUpdated = false; |
141 | - if ( ! $this->oFactory->oProp->_bDisableSavingOptions ) { |
|
141 | + if ( !$this->oFactory->oProp->_bDisableSavingOptions ) { |
|
142 | 142 | $_bUpdated = $this->oFactory->oProp->updateOption( $_aInputs ); |
143 | 143 | } |
144 | 144 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | private function _shouldProceed() { |
178 | 178 | |
179 | 179 | if ( |
180 | - ! isset( |
|
180 | + !isset( |
|
181 | 181 | $_POST[ 'admin_page_framework_start' ], // indicates the framework form is started |
182 | 182 | $_POST[ '_wp_http_referer' ] |
183 | 183 | ) |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | // Check if all the form fields are sent. |
196 | 196 | if ( |
197 | - ! isset( |
|
197 | + !isset( |
|
198 | 198 | // these keys are supposed to be embedded at the end of the form. |
199 | 199 | // if the server truncates the form input values for `max_input_vars`, these will be lost in PHP 5.3.9 or above. |
200 | 200 | $_POST[ '_is_admin_page_framework' ], // holds the form nonce |
@@ -214,11 +214,11 @@ discard block |
||
214 | 214 | return false; |
215 | 215 | } |
216 | 216 | |
217 | - $_bVerifyNonce = wp_verify_nonce( |
|
217 | + $_bVerifyNonce = wp_verify_nonce( |
|
218 | 218 | $_POST[ '_is_admin_page_framework' ], |
219 | - 'form_' . md5( $this->oFactory->oProp->sClassName . get_current_user_id() ) |
|
219 | + 'form_'.md5( $this->oFactory->oProp->sClassName.get_current_user_id() ) |
|
220 | 220 | ); |
221 | - if ( ! $_bVerifyNonce ) { |
|
221 | + if ( !$_bVerifyNonce ) { |
|
222 | 222 | $this->oFactory->setAdminNotice( $this->oFactory->oMsg->get( 'nonce_verification_failed' ) ); |
223 | 223 | return false; |
224 | 224 | } |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | */ |
233 | 233 | private function _getUserInputsFromPOST() { |
234 | 234 | |
235 | - $_aInputs = $this->getElementAsArray( |
|
235 | + $_aInputs = $this->getElementAsArray( |
|
236 | 236 | $_POST, // will be sanitized in the getSubmittedData() method. |
237 | 237 | $this->oFactory->oProp->sOptionKey, |
238 | 238 | array() |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | $this->oFactory, |
266 | 266 | array( |
267 | 267 | // @todo deprecate the hook with the input ID |
268 | - "submit_{$this->oFactory->oProp->sClassName}_{$_sPressedInputID}", // will be deprecated in near future release |
|
268 | + "submit_{$this->oFactory->oProp->sClassName}_{$_sPressedInputID}", // will be deprecated in near future release |
|
269 | 269 | $_sSubmitSectionID |
270 | 270 | ? "submit_{$this->oFactory->oProp->sClassName}_{$_sSubmitSectionID}_{$_sPressedFieldID}" |
271 | 271 | : "submit_{$this->oFactory->oProp->sClassName}_{$_sPressedFieldID}", |
@@ -348,9 +348,9 @@ discard block |
||
348 | 348 | |
349 | 349 | // Drop the 'field_errors' key. |
350 | 350 | $_aRemoveQueries = array(); |
351 | - if ( ! isset( $aStatus[ 'field_errors' ] ) || ! $aStatus[ 'field_errors' ] ) { |
|
351 | + if ( !isset( $aStatus[ 'field_errors' ] ) || !$aStatus[ 'field_errors' ] ) { |
|
352 | 352 | unset( $aStatus[ 'field_errors' ] ); |
353 | - $_aRemoveQueries[] = 'field_errors'; |
|
353 | + $_aRemoveQueries[ ] = 'field_errors'; |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | return $this->addAndApplyFilters( // 3.4.4+ |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | */ |
376 | 376 | private function _removePageElements( $aOptions, $sPageSlug, $sTabSlug ) { |
377 | 377 | |
378 | - if ( ! $sPageSlug && ! $sTabSlug ) { |
|
378 | + if ( !$sPageSlug && !$sTabSlug ) { |
|
379 | 379 | return $aOptions; |
380 | 380 | } |
381 | 381 |