@@ -149,7 +149,7 @@ |
||
| 149 | 149 | * @since 3.5.3 |
| 150 | 150 | * @return string The found page slug. An empty string if not found. |
| 151 | 151 | * @remark Do not return `null` when not found as some framework methods check the retuened value with `isset()` and if null is given, `isset()` yields `false` while it does `true` for an emtpy string (''). |
| 152 | - */ |
|
| 152 | + */ |
|
| 153 | 153 | public function getCurrentPageSlug() { |
| 154 | 154 | return isset( $_GET[ 'page' ] ) |
| 155 | 155 | ? $_GET[ 'page' ] |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | /** |
| 57 | 57 | * Sets up hooks and properties. |
| 58 | 58 | */ |
| 59 | - public function __construct( $oCaller, $sClassName, $sCapability='manage_options', $sTextDomain='admin-page-framework', $sStructureType='page_meta_box' ) { |
|
| 59 | + public function __construct( $oCaller, $sClassName, $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework', $sStructureType = 'page_meta_box' ) { |
|
| 60 | 60 | |
| 61 | 61 | // Let them overload. |
| 62 | 62 | unset( |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | public function _getScreenIDOfPage( $sPageSlug ) { |
| 106 | 106 | $_oAdminPage = $this->_getOwnerObjectOfPage( $sPageSlug ); |
| 107 | 107 | return $_oAdminPage |
| 108 | - ? $_oAdminPage->oProp->aPages[ $sPageSlug ][ '_page_hook' ] . ( is_network_admin() ? '-network' : '' ) |
|
| 108 | + ? $_oAdminPage->oProp->aPages[ $sPageSlug ][ '_page_hook' ].( is_network_admin() ? '-network' : '' ) |
|
| 109 | 109 | : ''; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @since 3.0.0 |
| 116 | 116 | * @return boolean Returns true if it is of framework's added page; otherwise, false. |
| 117 | 117 | */ |
| 118 | - public function isPageAdded( $sPageSlug='' ) { |
|
| 118 | + public function isPageAdded( $sPageSlug = '' ) { |
|
| 119 | 119 | $_oAdminPage = $this->_getOwnerObjectOfPage( $sPageSlug ); |
| 120 | 120 | return $_oAdminPage |
| 121 | 121 | ? $_oAdminPage->oProp->isPageAdded( $sPageSlug ) |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | public function isCurrentTab( $sTabSlug ) { |
| 133 | 133 | |
| 134 | 134 | $_sCurrentPageSlug = $this->getElement( $_GET, 'page' ); |
| 135 | - if ( ! $_sCurrentPageSlug ) { |
|
| 135 | + if ( !$_sCurrentPageSlug ) { |
|
| 136 | 136 | return false; |
| 137 | 137 | } |
| 138 | 138 | $_sCurrentTabSlug = $this->getElement( |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | */ |
| 186 | 186 | public function getDefaultInPageTab( $sPageSlug ) { |
| 187 | 187 | |
| 188 | - if ( ! $sPageSlug ) { |
|
| 188 | + if ( !$sPageSlug ) { |
|
| 189 | 189 | return ''; |
| 190 | 190 | } |
| 191 | 191 | return ( $_oAdminPage = $this->_getOwnerObjectOfPage( $sPageSlug ) ) |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | */ |
| 201 | 201 | public function getOptionKey( $sPageSlug ) { |
| 202 | 202 | |
| 203 | - if ( ! $sPageSlug ) { |
|
| 203 | + if ( !$sPageSlug ) { |
|
| 204 | 204 | return ''; |
| 205 | 205 | } |
| 206 | 206 | return ( $_oAdminPage = $this->_getOwnerObjectOfPage( $sPageSlug ) ) |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | $GLOBALS, |
| 228 | 228 | array( 'aAdminPageFramework', 'aPageClasses' ) |
| 229 | 229 | ); |
| 230 | - foreach( $_aPageClasses as $_oAdminPage ) { |
|
| 230 | + foreach ( $_aPageClasses as $_oAdminPage ) { |
|
| 231 | 231 | if ( $_oAdminPage->oProp->isPageAdded( $sPageSlug ) ) { |
| 232 | 232 | return $_oAdminPage; |
| 233 | 233 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | public function construct() { |
| 30 | 30 | |
| 31 | 31 | add_filter( |
| 32 | - 'options_' . $this->aArguments[ 'caller_id' ], |
|
| 32 | + 'options_'.$this->aArguments[ 'caller_id' ], |
|
| 33 | 33 | array( $this, '_replyToSanitizeSavedFormData' ), |
| 34 | 34 | 5 // high priority as it must be done earlier |
| 35 | 35 | ); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | // Extract the meta box field form data (options) from the page form data (options). |
| 55 | 55 | return $this->castArrayContents( |
| 56 | - $this->getDataStructureFromAddedFieldsets(), // form data structure generate from fieldsets |
|
| 56 | + $this->getDataStructureFromAddedFieldsets(), // form data structure generate from fieldsets |
|
| 57 | 57 | $aSavedFormData |
| 58 | 58 | ); |
| 59 | 59 | |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @since 3.0.0 |
| 23 | 23 | */ |
| 24 | - public function enqueueStyles( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) { |
|
| 24 | + public function enqueueStyles( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) { |
|
| 25 | 25 | if ( method_exists( $this->oResource, '_enqueueStyles' ) ) { |
| 26 | 26 | return $this->oResource->_enqueueStyles( $aSRCs, $sPageSlug, $sTabSlug, $aCustomArgs ); |
| 27 | 27 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @param array (optional) The argument array for more advanced parameters. |
| 38 | 38 | * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned. |
| 39 | 39 | */ |
| 40 | - public function enqueueStyle( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) { |
|
| 40 | + public function enqueueStyle( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) { |
|
| 41 | 41 | if ( method_exists( $this->oResource, '_enqueueStyle' ) ) { |
| 42 | 42 | return $this->oResource->_enqueueStyle( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs ); |
| 43 | 43 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * |
| 48 | 48 | * @since 2.1.5 |
| 49 | 49 | */ |
| 50 | - public function enqueueScripts( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) { |
|
| 50 | + public function enqueueScripts( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) { |
|
| 51 | 51 | if ( method_exists( $this->oResource, '_enqueueScripts' ) ) { |
| 52 | 52 | return $this->oResource->_enqueueScripts( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs ); |
| 53 | 53 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | * @param array (optional) The argument array for more advanced parameters. |
| 64 | 64 | * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned. |
| 65 | 65 | */ |
| 66 | - public function enqueueScript( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) { |
|
| 66 | + public function enqueueScript( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) { |
|
| 67 | 67 | if ( method_exists( $this->oResource, '_enqueueScript' ) ) { |
| 68 | 68 | return $this->oResource->_enqueueScript( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs ); |
| 69 | 69 | } |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | protected function _isInThePage() { |
| 46 | 46 | |
| 47 | - if ( ! $this->oProp->bIsAdmin ) { |
|
| 47 | + if ( !$this->oProp->bIsAdmin ) { |
|
| 48 | 48 | return false; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | // Foe admin-ajax.php, aQuery holds the referer's GET URL parameters so the check covers the cases of ajax calls. |
| 52 | 52 | $_sPageSlug = $this->oUtil->getElement( $this->oProp->aQuery, array( 'page' ), '' ); |
| 53 | - if ( ! $this->___isAddedPage( $_sPageSlug ) ) { |
|
| 53 | + if ( !$this->___isAddedPage( $_sPageSlug ) ) { |
|
| 54 | 54 | return false; |
| 55 | 55 | } |
| 56 | 56 | return true; |
@@ -63,8 +63,8 @@ discard block |
||
| 63 | 63 | private function ___isAddedPage( $sPageSlug ) { |
| 64 | 64 | |
| 65 | 65 | // for cases that page slugs are stored with numeric index |
| 66 | - if ( ! $this->oUtil->isAssociative( $this->oProp->aPageSlugs ) |
|
| 67 | - && ! in_array( $sPageSlug, $this->oProp->aPageSlugs ) |
|
| 66 | + if ( !$this->oUtil->isAssociative( $this->oProp->aPageSlugs ) |
|
| 67 | + && !in_array( $sPageSlug, $this->oProp->aPageSlugs ) |
|
| 68 | 68 | ) { |
| 69 | 69 | return false; |
| 70 | 70 | } |
@@ -23,12 +23,12 @@ |
||
| 23 | 23 | * @since 3.0.0 |
| 24 | 24 | * @deprecated 3.7.0 Use `AdminPageFramework_PageMetaBox` instead. |
| 25 | 25 | */ |
| 26 | - public function __construct( $sMetaBoxID, $sTitle, $asPageSlugs=array(), $sContext='normal', $sPriority='default', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) { |
|
| 26 | + public function __construct( $sMetaBoxID, $sTitle, $asPageSlugs = array(), $sContext = 'normal', $sPriority = 'default', $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) { |
|
| 27 | 27 | |
| 28 | 28 | parent::__construct( $sMetaBoxID, $sTitle, $asPageSlugs, $sContext, $sPriority, $sCapability, $sTextDomain ); |
| 29 | 29 | |
| 30 | 30 | $this->oUtil->showDeprecationNotice( |
| 31 | - 'The class, ' . __CLASS__ . ',', // deprecated item |
|
| 31 | + 'The class, '.__CLASS__.',', // deprecated item |
|
| 32 | 32 | 'AdminPageFramework_PageMetaBox' // alternative |
| 33 | 33 | ); |
| 34 | 34 | |
@@ -29,11 +29,11 @@ discard block |
||
| 29 | 29 | * @remark the $_deprecated parameter is just to avoid the PHP strict standards warning. |
| 30 | 30 | * @internal |
| 31 | 31 | */ |
| 32 | - public function _enqueueStyles( $aSRCs, $aCustomArgs=array(), $_deprecated=null ) { |
|
| 32 | + public function _enqueueStyles( $aSRCs, $aCustomArgs = array(), $_deprecated = null ) { |
|
| 33 | 33 | |
| 34 | 34 | $_aHandleIDs = array(); |
| 35 | - foreach( ( array ) $aSRCs as $_sSRC ) { |
|
| 36 | - $_aHandleIDs[] = $this->_enqueueStyle( $_sSRC, $aCustomArgs ); |
|
| 35 | + foreach ( ( array ) $aSRCs as $_sSRC ) { |
|
| 36 | + $_aHandleIDs[ ] = $this->_enqueueStyle( $_sSRC, $aCustomArgs ); |
|
| 37 | 37 | } |
| 38 | 38 | return $_aHandleIDs; |
| 39 | 39 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned. |
| 58 | 58 | * @internal |
| 59 | 59 | */ |
| 60 | - public function _enqueueStyle( $sSRC, $aCustomArgs=array(), $_deprecated=null ) { |
|
| 60 | + public function _enqueueStyle( $sSRC, $aCustomArgs = array(), $_deprecated = null ) { |
|
| 61 | 61 | |
| 62 | - $sSRC = trim( $sSRC ); |
|
| 62 | + $sSRC = trim( $sSRC ); |
|
| 63 | 63 | if ( empty( $sSRC ) ) { |
| 64 | 64 | return ''; |
| 65 | 65 | } |
@@ -76,13 +76,13 @@ discard block |
||
| 76 | 76 | array( |
| 77 | 77 | 'sSRC' => $sSRC, |
| 78 | 78 | 'sType' => 'style', |
| 79 | - 'handle_id' => 'style_' . $this->oProp->sClassName . '_' . ( ++$this->oProp->iEnqueuedStyleIndex ), |
|
| 79 | + 'handle_id' => 'style_'.$this->oProp->sClassName.'_'.( ++$this->oProp->iEnqueuedStyleIndex ), |
|
| 80 | 80 | ), |
| 81 | 81 | self::$_aStructure_EnqueuingResources |
| 82 | 82 | ); |
| 83 | 83 | |
| 84 | 84 | // Store the attributes in another container by url. |
| 85 | - $this->oProp->aResourceAttributes[ $this->oProp->aEnqueuingStyles[ $_sSRCHash ]['handle_id'] ] = $this->oProp->aEnqueuingStyles[ $_sSRCHash ]['attributes']; |
|
| 85 | + $this->oProp->aResourceAttributes[ $this->oProp->aEnqueuingStyles[ $_sSRCHash ][ 'handle_id' ] ] = $this->oProp->aEnqueuingStyles[ $_sSRCHash ][ 'attributes' ]; |
|
| 86 | 86 | |
| 87 | 87 | return $this->oProp->aEnqueuingStyles[ $_sSRCHash ][ 'handle_id' ]; |
| 88 | 88 | |
@@ -94,11 +94,11 @@ discard block |
||
| 94 | 94 | * @since 3.0.0 |
| 95 | 95 | * @remark the $_deprecated parameter is just to avoid the PHP strict standards warning. |
| 96 | 96 | */ |
| 97 | - public function _enqueueScripts( $aSRCs, $aCustomArgs=array(), $_deprecated=null ) { |
|
| 97 | + public function _enqueueScripts( $aSRCs, $aCustomArgs = array(), $_deprecated = null ) { |
|
| 98 | 98 | |
| 99 | 99 | $_aHandleIDs = array(); |
| 100 | - foreach( ( array ) $aSRCs as $_sSRC ) { |
|
| 101 | - $_aHandleIDs[] = $this->_enqueueScript( $_sSRC, $aCustomArgs ); |
|
| 100 | + foreach ( ( array ) $aSRCs as $_sSRC ) { |
|
| 101 | + $_aHandleIDs[ ] = $this->_enqueueScript( $_sSRC, $aCustomArgs ); |
|
| 102 | 102 | } |
| 103 | 103 | return $_aHandleIDs; |
| 104 | 104 | |
@@ -123,9 +123,9 @@ discard block |
||
| 123 | 123 | * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned. |
| 124 | 124 | * @internal |
| 125 | 125 | */ |
| 126 | - public function _enqueueScript( $sSRC, $aCustomArgs=array(), $_deprecated=null ) { |
|
| 126 | + public function _enqueueScript( $sSRC, $aCustomArgs = array(), $_deprecated = null ) { |
|
| 127 | 127 | |
| 128 | - $sSRC = trim( $sSRC ); |
|
| 128 | + $sSRC = trim( $sSRC ); |
|
| 129 | 129 | if ( empty( $sSRC ) ) { |
| 130 | 130 | return ''; |
| 131 | 131 | } |
@@ -142,13 +142,13 @@ discard block |
||
| 142 | 142 | array( |
| 143 | 143 | 'sSRC' => $sSRC, |
| 144 | 144 | 'sType' => 'script', |
| 145 | - 'handle_id' => 'script_' . $this->oProp->sClassName . '_' . ( ++$this->oProp->iEnqueuedScriptIndex ), |
|
| 145 | + 'handle_id' => 'script_'.$this->oProp->sClassName.'_'.( ++$this->oProp->iEnqueuedScriptIndex ), |
|
| 146 | 146 | ), |
| 147 | 147 | self::$_aStructure_EnqueuingResources |
| 148 | 148 | ); |
| 149 | 149 | |
| 150 | 150 | // Store the attributes in another container by url. |
| 151 | - $this->oProp->aResourceAttributes[ $this->oProp->aEnqueuingScripts[ $_sSRCHash ]['handle_id'] ] = $this->oProp->aEnqueuingScripts[ $_sSRCHash ]['attributes']; |
|
| 151 | + $this->oProp->aResourceAttributes[ $this->oProp->aEnqueuingScripts[ $_sSRCHash ][ 'handle_id' ] ] = $this->oProp->aEnqueuingScripts[ $_sSRCHash ][ 'attributes' ]; |
|
| 152 | 152 | |
| 153 | 153 | return $this->oProp->aEnqueuingScripts[ $_sSRCHash ][ 'handle_id' ]; |
| 154 | 154 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @since 3.0.0 |
| 161 | 161 | * @internal |
| 162 | 162 | */ |
| 163 | - public function _forceToEnqueueStyle( $sSRC, $aCustomArgs=array() ) { |
|
| 163 | + public function _forceToEnqueueStyle( $sSRC, $aCustomArgs = array() ) { |
|
| 164 | 164 | return $this->_enqueueStyle( $sSRC, $aCustomArgs ); |
| 165 | 165 | } |
| 166 | 166 | /** |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | * @since 3.0.0 |
| 170 | 170 | * @internal |
| 171 | 171 | */ |
| 172 | - public function _forceToEnqueueScript( $sSRC, $aCustomArgs=array() ) { |
|
| 172 | + public function _forceToEnqueueScript( $sSRC, $aCustomArgs = array() ) { |
|
| 173 | 173 | return $this->_enqueueScript( $sSRC, $aCustomArgs ); |
| 174 | 174 | } |
| 175 | 175 | |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | return "{$_aField['field_id']}{$_sKey}"; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - /** |
|
| 71 | + /** |
|
| 72 | 72 | * Adds input fields |
| 73 | 73 | * |
| 74 | 74 | * @internal |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | '', |
| 48 | 48 | "[{$_sKey}]" |
| 49 | 49 | ); |
| 50 | - return $_aField['field_id'] . $_sKey; |
|
| 50 | + return $_aField[ 'field_id' ].$_sKey; |
|
| 51 | 51 | |
| 52 | 52 | } |
| 53 | 53 | /** |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | '', |
| 66 | 66 | "|{$_sKey}" |
| 67 | 67 | ); |
| 68 | - return "{$_aField['field_id']}{$_sKey}"; |
|
| 68 | + return "{$_aField[ 'field_id' ]}{$_sKey}"; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $_aOutput = array(); |
| 116 | 116 | |
| 117 | 117 | // Set nonce. |
| 118 | - $_aOutput[] = wp_nonce_field( |
|
| 118 | + $_aOutput[ ] = wp_nonce_field( |
|
| 119 | 119 | $this->oProp->sClassHash, |
| 120 | 120 | $this->oProp->sClassHash, |
| 121 | 121 | true, |
@@ -126,17 +126,17 @@ discard block |
||
| 126 | 126 | $this->_setOptionArray( $iTermID, $this->oProp->sOptionKey ); |
| 127 | 127 | |
| 128 | 128 | // Get the field outputs |
| 129 | - $_aOutput[] = $this->oForm->get( $bRenderTableRow ); |
|
| 129 | + $_aOutput[ ] = $this->oForm->get( $bRenderTableRow ); |
|
| 130 | 130 | |
| 131 | 131 | // Filter the output |
| 132 | 132 | $_sOutput = $this->oUtil->addAndApplyFilters( |
| 133 | 133 | $this, |
| 134 | - 'content_' . $this->oProp->sClassName, |
|
| 134 | + 'content_'.$this->oProp->sClassName, |
|
| 135 | 135 | $this->content( implode( PHP_EOL, $_aOutput ) ) |
| 136 | 136 | ); |
| 137 | 137 | |
| 138 | 138 | // Do action |
| 139 | - $this->oUtil->addAndDoActions( $this, 'do_' . $this->oProp->sClassName, $this ); |
|
| 139 | + $this->oUtil->addAndDoActions( $this, 'do_'.$this->oProp->sClassName, $this ); |
|
| 140 | 140 | |
| 141 | 141 | return $_sOutput; |
| 142 | 142 | |
@@ -155,8 +155,8 @@ discard block |
||
| 155 | 155 | public function _replyToPrintColumnCell( $vValue, $sColumnSlug, $sTermID ) { |
| 156 | 156 | |
| 157 | 157 | $_sCellHTML = ''; |
| 158 | - if ( isset( $_GET['taxonomy'] ) && $_GET['taxonomy'] ) { |
|
| 159 | - $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$_GET['taxonomy']}", $vValue, $sColumnSlug, $sTermID ); |
|
| 158 | + if ( isset( $_GET[ 'taxonomy' ] ) && $_GET[ 'taxonomy' ] ) { |
|
| 159 | + $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$_GET[ 'taxonomy' ]}", $vValue, $sColumnSlug, $sTermID ); |
|
| 160 | 160 | } |
| 161 | 161 | $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$this->oProp->sClassName}", $_sCellHTML, $sColumnSlug, $sTermID ); |
| 162 | 162 | $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$this->oProp->sClassName}_{$sColumnSlug}", $_sCellHTML, $sTermID ); // 3.0.2+ |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | parent::__construct( $oProp ); |
| 28 | 28 | |
| 29 | - if ( ! $this->oProp->bIsAdmin ) { |
|
| 29 | + if ( !$this->oProp->bIsAdmin ) { |
|
| 30 | 30 | return; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | add_action( |
| 40 | - 'set_up_' . $this->oProp->sClassName, |
|
| 40 | + 'set_up_'.$this->oProp->sClassName, |
|
| 41 | 41 | array( $this, '_replyToSetUpHooks' ) |
| 42 | 42 | ); |
| 43 | 43 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | protected function _isInThePage() { |
| 56 | 56 | |
| 57 | - if ( ! $this->oProp->bIsAdmin ) { |
|
| 57 | + if ( !$this->oProp->bIsAdmin ) { |
|
| 58 | 58 | return false; |
| 59 | 59 | } |
| 60 | 60 | |
@@ -62,11 +62,11 @@ discard block |
||
| 62 | 62 | return $this->_isValidAjaxReferrer(); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - if ( ! in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) { |
|
| 65 | + if ( !in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) { |
|
| 66 | 66 | return false; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if ( isset( $_GET[ 'taxonomy' ] ) && ! in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) { |
|
| 69 | + if ( isset( $_GET[ 'taxonomy' ] ) && !in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) { |
|
| 70 | 70 | return false; |
| 71 | 71 | } |
| 72 | 72 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | parse_str( $_aReferrer[ 'query' ], $_aQuery ); |
| 87 | 87 | |
| 88 | 88 | $_sBaseName = basename( $_aReferrer[ 'path' ] ); |
| 89 | - if ( ! in_array( $_sBaseName, array( 'edit-tags.php', 'term.php' ) ) ) { |
|
| 89 | + if ( !in_array( $_sBaseName, array( 'edit-tags.php', 'term.php' ) ) ) { |
|
| 90 | 90 | return false; |
| 91 | 91 | } |
| 92 | 92 | $_sTaxonomy = $this->oUtil->getElement( $this->oProp->aQuery, array( 'taxonomy' ), '' ); |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function _replyToSetUpHooks( $oFactory ) { |
| 105 | 105 | |
| 106 | - foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) { |
|
| 106 | + foreach ( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) { |
|
| 107 | 107 | |
| 108 | 108 | // Validation callbacks need to be set regardless of whether the current page is edit-tags.php or not. |
| 109 | 109 | add_action( "created_{$_sTaxonomySlug}", array( $this, '_replyToValidateOptions' ), 10, 2 ); |
@@ -53,8 +53,8 @@ discard block |
||
| 53 | 53 | return $this->_getFilteredColumnsByFilterPrefix( |
| 54 | 54 | $this->oUtil->getAsArray( $aColumns ), |
| 55 | 55 | 'columns_', |
| 56 | - isset( $_GET['taxonomy'] ) // in ajax, $_GET is not even set. |
|
| 57 | - ? $_GET['taxonomy'] |
|
| 56 | + isset( $_GET[ 'taxonomy' ] ) // in ajax, $_GET is not even set. |
|
| 57 | + ? $_GET[ 'taxonomy' ] |
|
| 58 | 58 | : '' |
| 59 | 59 | ); |
| 60 | 60 | } |
@@ -71,8 +71,8 @@ discard block |
||
| 71 | 71 | return $this->_getFilteredColumnsByFilterPrefix( |
| 72 | 72 | $this->oUtil->getAsArray( $aSortableColumns ), |
| 73 | 73 | 'sortable_columns_', |
| 74 | - isset( $_GET['taxonomy'] ) // in ajax, $_GET is not even set. |
|
| 75 | - ? $_GET['taxonomy'] |
|
| 74 | + isset( $_GET[ 'taxonomy' ] ) // in ajax, $_GET is not even set. |
|
| 75 | + ? $_GET[ 'taxonomy' ] |
|
| 76 | 76 | : '' |
| 77 | 77 | ); |
| 78 | 78 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | if ( $sTaxonomy ) { |
| 87 | 87 | $aColumns = $this->oUtil->addAndApplyFilter( |
| 88 | 88 | $this, |
| 89 | - "{$sFilterPrefix}{$_GET['taxonomy']}", |
|
| 89 | + "{$sFilterPrefix}{$_GET[ 'taxonomy' ]}", |
|
| 90 | 90 | $aColumns |
| 91 | 91 | ); |
| 92 | 92 | } |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * @since 3.7.0 No longer sets the value to `$this-oProp->aOptions` but to the form peoperty. |
| 124 | 124 | * @internal |
| 125 | 125 | */ |
| 126 | - protected function _setOptionArray( $iTermID=null, $sOptionKey ) { |
|
| 126 | + protected function _setOptionArray( $iTermID = null, $sOptionKey ) { |
|
| 127 | 127 | $this->oForm->aSavedData = $this->_getSavedFormData( |
| 128 | 128 | $iTermID, |
| 129 | 129 | $sOptionKey |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | return $this->oUtil->addAndApplyFilter( |
| 141 | 141 | $this, // the caller factory object |
| 142 | - 'options_' . $this->oProp->sClassName, |
|
| 142 | + 'options_'.$this->oProp->sClassName, |
|
| 143 | 143 | $this->_getSavedTermFormData( $iTermID, $sOptionKey ) |
| 144 | 144 | // @todo maybe pass the term id because the user will not know whihch form data it is |
| 145 | 145 | ); |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | */ |
| 174 | 174 | public function _replyToValidateOptions( $iTermID ) { |
| 175 | 175 | |
| 176 | - if ( ! $this->_shouldProceedValidation() ) { |
|
| 176 | + if ( !$this->_shouldProceedValidation() ) { |
|
| 177 | 177 | return; |
| 178 | 178 | } |
| 179 | 179 | |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | $_aSubmittedFormData = $this->oForm->getSubmittedData( $_POST ); |
| 183 | 183 | $_aSubmittedFormData = $this->oUtil->addAndApplyFilters( |
| 184 | 184 | $this, |
| 185 | - 'validation_' . $this->oProp->sClassName, |
|
| 185 | + 'validation_'.$this->oProp->sClassName, |
|
| 186 | 186 | call_user_func_array( |
| 187 | 187 | array( $this, 'validate' ), // triggers __call() |
| 188 | 188 | array( $_aSubmittedFormData, $_aSavedFormData, $this ) |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | |
| 194 | 194 | // @todo Examine whether it is appropriate to merge recursivly |
| 195 | 195 | // as some fields will have a problem such as select with multiple options. |
| 196 | - $_aTaxonomyFormData[ $iTermID ] = $this->oUtil->uniteArrays( |
|
| 196 | + $_aTaxonomyFormData[ $iTermID ] = $this->oUtil->uniteArrays( |
|
| 197 | 197 | $_aSubmittedFormData, |
| 198 | 198 | $_aSavedFormData |
| 199 | 199 | ); |
@@ -215,11 +215,11 @@ discard block |
||
| 215 | 215 | */ |
| 216 | 216 | protected function _shouldProceedValidation() { |
| 217 | 217 | |
| 218 | - if ( ! isset( $_POST[ $this->oProp->sClassHash ] ) ) { |
|
| 218 | + if ( !isset( $_POST[ $this->oProp->sClassHash ] ) ) { |
|
| 219 | 219 | |
| 220 | 220 | return false; |
| 221 | 221 | } |
| 222 | - if ( ! wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { |
|
| 222 | + if ( !wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { |
|
| 223 | 223 | return false; |
| 224 | 224 | } |
| 225 | 225 | return true; |