@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | class AdminPageFramework_Form_Model___DefaultValues extends AdminPageFramework_Form_Base { |
18 | 18 | |
19 | - public $aFieldsets = array(); |
|
19 | + public $aFieldsets = array(); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * Sets up hooks. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $_aParameters = func_get_args() + array( |
28 | 28 | $this->aFieldsets, |
29 | 29 | ); |
30 | - $this->aFieldsets = $_aParameters[ 0 ]; |
|
30 | + $this->aFieldsets = $_aParameters[ 0 ]; |
|
31 | 31 | |
32 | 32 | } |
33 | 33 | |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @return array |
81 | 81 | */ |
82 | 82 | private function ___getDefaultValues( $aFieldsets, $aDefaultOptions ) { |
83 | - foreach( $aFieldsets as $_sSectionPath => $_aItems ) { |
|
83 | + foreach ( $aFieldsets as $_sSectionPath => $_aItems ) { |
|
84 | 84 | $_aSectionPath = explode( '|', $_sSectionPath ); |
85 | - foreach( $_aItems as $_sFieldPath => $_aFieldset ) { |
|
85 | + foreach ( $_aItems as $_sFieldPath => $_aFieldset ) { |
|
86 | 86 | $_aFieldPath = explode( '|', $_sFieldPath ); |
87 | 87 | $this->setMultiDimensionalArray( |
88 | - $aDefaultOptions, // by reference |
|
88 | + $aDefaultOptions, // by reference |
|
89 | 89 | '_default' === $_sSectionPath |
90 | 90 | ? array( $_sFieldPath ) |
91 | 91 | : array_merge( $_aSectionPath, $_aFieldPath ), // key address |
@@ -114,11 +114,11 @@ discard block |
||
114 | 114 | // If there are no sub-fields |
115 | 115 | if ( count( $_aSubFields ) === 0 ) { |
116 | 116 | return $this->getElement( |
117 | - $aFieldset, // subject |
|
118 | - 'value', // key |
|
117 | + $aFieldset, // subject |
|
118 | + 'value', // key |
|
119 | 119 | $this->getElement( // default value |
120 | - $aFieldset, // subject |
|
121 | - 'default', // key |
|
120 | + $aFieldset, // subject |
|
121 | + 'default', // key |
|
122 | 122 | null // default value |
123 | 123 | ) |
124 | 124 | ); |
@@ -127,13 +127,13 @@ discard block |
||
127 | 127 | // Otherwise, there are sub-fields |
128 | 128 | $_aDefault = array(); |
129 | 129 | array_unshift( $_aSubFields, $aFieldset ); // insert the main field into the very first index. |
130 | - foreach( $_aSubFields as $_iIndex => $_aField ) { |
|
130 | + foreach ( $_aSubFields as $_iIndex => $_aField ) { |
|
131 | 131 | $_aDefault[ $_iIndex ] = $this->getElement( |
132 | - $_aField, // subject |
|
133 | - 'value', // key |
|
132 | + $_aField, // subject |
|
133 | + 'value', // key |
|
134 | 134 | $this->getElement( // default value |
135 | - $_aField, // subject |
|
136 | - 'default', // key |
|
135 | + $_aField, // subject |
|
136 | + 'default', // key |
|
137 | 137 | null // default value |
138 | 138 | ) |
139 | 139 | ); |
@@ -93,18 +93,18 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | // If the section ID is not registered, return false. |
96 | - if ( ! array_key_exists( $sID, $this->aSectionsets ) ) { |
|
96 | + if ( !array_key_exists( $sID, $this->aSectionsets ) ) { |
|
97 | 97 | return false; |
98 | 98 | } |
99 | 99 | |
100 | 100 | // the fields array's first dimension is also filled with the keys of section ids. |
101 | - if ( ! array_key_exists( $sID, $this->aFieldsets ) ) { |
|
101 | + if ( !array_key_exists( $sID, $this->aFieldsets ) ) { |
|
102 | 102 | return false; |
103 | 103 | } |
104 | 104 | |
105 | 105 | // Since numeric IDs are denied at the beginning of the method, the elements will not be sub-sections. |
106 | 106 | $_bIsSection = false; |
107 | - foreach( $this->aFieldsets as $_sSectionID => $_aFields ) { |
|
107 | + foreach ( $this->aFieldsets as $_sSectionID => $_aFields ) { |
|
108 | 108 | |
109 | 109 | if ( $_sSectionID == $sID ) { |
110 | 110 | $_bIsSection = true; |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @return boolean |
131 | 131 | */ |
132 | 132 | public function canUserView( $sCapability ) { |
133 | - if ( ! $sCapability ) { |
|
133 | + if ( !$sCapability ) { |
|
134 | 134 | return true; |
135 | 135 | } |
136 | 136 | return ( boolean ) current_user_can( $sCapability ); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @return string |
59 | 59 | * @since 3.7.0 |
60 | 60 | */ |
61 | - public function get( $bTableRow=true ) { |
|
61 | + public function get( $bTableRow = true ) { |
|
62 | 62 | |
63 | 63 | $_sMethodName = $this->getAOrB( |
64 | 64 | $bTableRow, |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | ); |
68 | 68 | |
69 | 69 | $_sOutput = ''; |
70 | - foreach( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
70 | + foreach ( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
71 | 71 | |
72 | 72 | $_oFieldsetOutputFormatter = new AdminPageFramework_Form_Model___Format_FieldsetOutput( |
73 | 73 | $_aFieldset, |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | ); |
77 | 77 | |
78 | 78 | $_aFieldset = $_oFieldsetOutputFormatter->get(); |
79 | - if ( ! $this->callBack( $this->aCallbacks[ 'is_fieldset_visible' ], array( true, $_aFieldset ) ) ) { |
|
79 | + if ( !$this->callBack( $this->aCallbacks[ 'is_fieldset_visible' ], array( true, $_aFieldset ) ) ) { |
|
80 | 80 | continue; |
81 | 81 | } |
82 | 82 |
@@ -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,7 +63,7 @@ discard block |
||
63 | 63 | private function ___isAddedPage( $sPageSlug ) { |
64 | 64 | |
65 | 65 | // Case: page slugs are stored with numeric index |
66 | - if ( ! $this->oUtil->isAssociative( $this->oProp->aPageSlugs ) ) { |
|
66 | + if ( !$this->oUtil->isAssociative( $this->oProp->aPageSlugs ) ) { |
|
67 | 67 | return in_array( $sPageSlug, $this->oProp->aPageSlugs, true ); |
68 | 68 | } |
69 | 69 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | private $_iLevel; |
39 | 39 | |
40 | - public function __construct( $iLevel=null ) { |
|
40 | + public function __construct( $iLevel = null ) { |
|
41 | 41 | $this->_iLevel = null !== $iLevel |
42 | 42 | ? $iLevel |
43 | 43 | : error_reporting(); |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | private function _getIncluded() { |
57 | 57 | |
58 | 58 | $_aIncluded = array(); |
59 | - foreach( $this->_aLevels as $_iLevel => $iLevelText ) { |
|
59 | + foreach ( $this->_aLevels as $_iLevel => $iLevelText ) { |
|
60 | 60 | |
61 | 61 | // This is where we check if a level was used or not |
62 | 62 | if ( $this->_iLevel & $_iLevel ) { |
63 | - $_aIncluded[] = $_iLevel; |
|
63 | + $_aIncluded[ ] = $_iLevel; |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | } |
@@ -74,16 +74,16 @@ discard block |
||
74 | 74 | $_aValues = array(); |
75 | 75 | |
76 | 76 | if ( count( $aIncluded ) > $_iAll / 2 ) { |
77 | - $_aValues[] = 'E_ALL'; |
|
78 | - foreach( $this->_aLevels as $_iLevel => $iLevelText ) { |
|
79 | - if ( ! in_array( $_iLevel, $aIncluded ) ) { |
|
80 | - $_aValues[] = $iLevelText; |
|
77 | + $_aValues[ ] = 'E_ALL'; |
|
78 | + foreach ( $this->_aLevels as $_iLevel => $iLevelText ) { |
|
79 | + if ( !in_array( $_iLevel, $aIncluded ) ) { |
|
80 | + $_aValues[ ] = $iLevelText; |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | return implode( ' & ~', $_aValues ); |
84 | 84 | } |
85 | - foreach( $aIncluded as $_iLevel ) { |
|
86 | - $_aValues[] = $this->_aLevels[ $_iLevel ]; |
|
85 | + foreach ( $aIncluded as $_iLevel ) { |
|
86 | + $_aValues[ ] = $this->_aLevels[ $_iLevel ]; |
|
87 | 87 | } |
88 | 88 | return implode( ' | ', $_aValues ); |
89 | 89 |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | // tab |
46 | 46 | if ( $_sPageSlug && $_sTabSlug ) { |
47 | - $this->oProp->sStyle = $this->addAndApplyFilters( |
|
47 | + $this->oProp->sStyle = $this->addAndApplyFilters( |
|
48 | 48 | $_oCaller, |
49 | 49 | "style_{$_sPageSlug}_{$_sTabSlug}", |
50 | 50 | $this->oProp->sStyle |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | // page |
55 | 55 | if ( $_sPageSlug ) { |
56 | - $this->oProp->sStyle = $this->addAndApplyFilters( |
|
56 | + $this->oProp->sStyle = $this->addAndApplyFilters( |
|
57 | 57 | $_oCaller, |
58 | 58 | "style_{$_sPageSlug}", |
59 | 59 | $this->oProp->sStyle |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @return string The tab slug if the tab has been added. |
88 | 88 | */ |
89 | 89 | private function _getCurrentTabSlugForFilter( $sPageSlug ) { |
90 | - $_sTabSlug = $this->oProp->getCurrentTabSlug( $sPageSlug ); |
|
90 | + $_sTabSlug = $this->oProp->getCurrentTabSlug( $sPageSlug ); |
|
91 | 91 | return isset( $this->oProp->aInPageTabs[ $sPageSlug ][ $_sTabSlug ] ) |
92 | 92 | ? $_sTabSlug |
93 | 93 | : ''; |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | |
116 | 116 | // tab |
117 | 117 | if ( $_sPageSlug && $_sTabSlug ) { |
118 | - $this->oProp->sScript = $this->addAndApplyFilters( |
|
118 | + $this->oProp->sScript = $this->addAndApplyFilters( |
|
119 | 119 | $_oCaller, |
120 | 120 | "script_{$_sPageSlug}_{$_sTabSlug}", |
121 | 121 | $this->oProp->sScript |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | |
125 | 125 | // page |
126 | 126 | if ( $_sPageSlug ) { |
127 | - $this->oProp->sScript = $this->addAndApplyFilters( |
|
127 | + $this->oProp->sScript = $this->addAndApplyFilters( |
|
128 | 128 | $_oCaller, |
129 | 129 | "script_{$_sPageSlug}", |
130 | 130 | $this->oProp->sScript |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | |
149 | 149 | $sCurrentPageSlug = $this->oProp->getCurrentPageSlug(); |
150 | 150 | $sCurrentTabSlug = $this->oProp->getCurrentTabSlug( $sCurrentPageSlug ); |
151 | - $sPageSlug = $aEnqueueItem['sPageSlug']; |
|
152 | - $sTabSlug = $aEnqueueItem['sTabSlug']; |
|
151 | + $sPageSlug = $aEnqueueItem[ 'sPageSlug' ]; |
|
152 | + $sTabSlug = $aEnqueueItem[ 'sTabSlug' ]; |
|
153 | 153 | |
154 | 154 | // If the page slug is not specified and the currently loading page is one of the pages that is added by the framework, |
155 | - if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework) |
|
155 | + if ( !$sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework) |
|
156 | 156 | $this->_enqueueSRC( $aEnqueueItem ); |
157 | 157 | } |
158 | 158 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | // If the tab slug is not specified and the page slug is specified, |
168 | 168 | // and if the current loading page slug and the specified one matches, |
169 | 169 | if ( |
170 | - ( $sPageSlug && ! $sTabSlug ) |
|
170 | + ( $sPageSlug && !$sTabSlug ) |
|
171 | 171 | && ( $sCurrentPageSlug == $sPageSlug ) |
172 | 172 | ) { |
173 | 173 | $this->_enqueueSRC( $aEnqueueItem ); |
@@ -152,7 +152,8 @@ |
||
152 | 152 | $sTabSlug = $aEnqueueItem['sTabSlug']; |
153 | 153 | |
154 | 154 | // If the page slug is not specified and the currently loading page is one of the pages that is added by the framework, |
155 | - if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework) |
|
155 | + if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { |
|
156 | +// means script-global(among pages added by the framework) |
|
156 | 157 | $this->_enqueueSRC( $aEnqueueItem ); |
157 | 158 | } |
158 | 159 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @return array Added stylesheet handle IDs. |
25 | 25 | */ |
26 | 26 | public function enqueueStyles( /*$aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() */ ) { |
27 | - if ( ! method_exists( $this->oResource, '_enqueueResourcesByType' ) ) { |
|
27 | + if ( !method_exists( $this->oResource, '_enqueueResourcesByType' ) ) { |
|
28 | 28 | return array(); |
29 | 29 | } |
30 | 30 | $_aParams = func_get_args() + array( array(), '', '', array() ); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @since 3.8.31 Removed parameters to be compatible with the base class. |
51 | 51 | */ |
52 | 52 | public function enqueueStyle( /* $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() */ ) { |
53 | - if ( ! method_exists( $this->oResource, '_addEnqueuingResourceByType' ) ) { |
|
53 | + if ( !method_exists( $this->oResource, '_addEnqueuingResourceByType' ) ) { |
|
54 | 54 | return ''; |
55 | 55 | } |
56 | 56 | $_aParams = func_get_args() + array( '', '', '', array() ); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @return array Added script handle IDs |
72 | 72 | */ |
73 | 73 | public function enqueueScripts( /* $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() */ ) { |
74 | - if ( ! method_exists( $this->oResource, '_enqueueResourcesByType' ) ) { |
|
74 | + if ( !method_exists( $this->oResource, '_enqueueResourcesByType' ) ) { |
|
75 | 75 | return array(); |
76 | 76 | } |
77 | 77 | $_aParams = func_get_args() + array( array(), '', '', array() ); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned. |
98 | 98 | */ |
99 | 99 | public function enqueueScript( /* $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() */ ) { |
100 | - if ( ! method_exists( $this->oResource, '_addEnqueuingResourceByType' ) ) { |
|
100 | + if ( !method_exists( $this->oResource, '_addEnqueuingResourceByType' ) ) { |
|
101 | 101 | return ''; |
102 | 102 | } |
103 | 103 | $_aParams = func_get_args() + array( '', '', '', array() ); |
@@ -186,7 +186,7 @@ |
||
186 | 186 | $sURL |
187 | 187 | ) ); |
188 | 188 | } |
189 | - /** |
|
189 | + /** |
|
190 | 190 | * Sets the mail content type to HTML. |
191 | 191 | * @since 3.3.0 |
192 | 192 | * @since 3.4.2 Moved from the validation class. |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | |
100 | 100 | // Send mail. |
101 | - $_bSent = wp_mail( |
|
101 | + $_bSent = wp_mail( |
|
102 | 102 | $this->___getEmailArgument( $_aInputs, $_aEmailOptions, 'to', $_sSubmitSectionID ), |
103 | 103 | $this->___getEmailArgument( $_aInputs, $_aEmailOptions, 'subject', $_sSubmitSectionID ), |
104 | 104 | $this->___getMessage( $_aInputs, $_aEmailOptions, $_sSubmitSectionID, $_bIsHTML ), |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | ); |
108 | 108 | |
109 | 109 | // Clean up. |
110 | - foreach( $this->_aPathsToDelete as $_sPath ) { |
|
110 | + foreach ( $this->_aPathsToDelete as $_sPath ) { |
|
111 | 111 | unlink( $_sPath ); |
112 | 112 | } |
113 | 113 | |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * @param boolean $_bSent Whether the email is sent or not. |
119 | 119 | * @param array $_aEmailOptions The email arguments set in the `contact` field argument. |
120 | 120 | */ |
121 | - do_action( 'admin-page-framework_action_after_sending_form_email', $_bSent, $_aEmailOptions); |
|
121 | + do_action( 'admin-page-framework_action_after_sending_form_email', $_bSent, $_aEmailOptions ); |
|
122 | 122 | |
123 | 123 | // Remove the filter callbacks after the above action to let the action callbacks use the custom Email options modified with these filters. |
124 | 124 | remove_filter( 'wp_mail_content_type', array( $this, '_replyToSetMailContentTypeToHTML' ) ); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * @since 3.9.0 |
138 | 138 | */ |
139 | 139 | private function ___getMessage( $aInputs, $aEmailOptions, $sSubmitSectionID, $bIsHTML ) { |
140 | - if ( ! $bIsHTML ) { |
|
140 | + if ( !$bIsHTML ) { |
|
141 | 141 | return $this->getReadableListOfArray( ( array ) $this->___getEmailArgument( $aInputs, $aEmailOptions, 'message', $sSubmitSectionID ) ) |
142 | 142 | . $this->getReadableListOfArray( $this->getElementAsArray( $aEmailOptions, array( 'data' ) ) ); |
143 | 143 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | } |
170 | 170 | |
171 | 171 | $_aAttachments = $this->getAsArray( $asAttachments ); |
172 | - foreach( $_aAttachments as $_iIndex => $_sPathORURL ) { |
|
172 | + foreach ( $_aAttachments as $_iIndex => $_sPathORURL ) { |
|
173 | 173 | |
174 | 174 | // If it is a file path, fine. |
175 | 175 | if ( is_file( $_sPathORURL ) ) { |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | } |
279 | 279 | |
280 | 280 | // If the key element is empty, search the corresponding item in the same section. |
281 | - if ( ! $aEmailOptions[ $sKey ] ) { |
|
281 | + if ( !$aEmailOptions[ $sKey ] ) { |
|
282 | 282 | return $this->getArrayValueByArrayKeys( $aInput, array( $sSectionID, $sKey ) ); |
283 | 283 | } |
284 | 284 |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | if ( $sTaxonomy ) { |
83 | 83 | $aColumns = $this->oUtil->addAndApplyFilter( |
84 | 84 | $this, |
85 | - $sFilterPrefix . $this->oUtil->getHTTPQueryGET( 'taxonomy', '' ), |
|
85 | + $sFilterPrefix.$this->oUtil->getHTTPQueryGET( 'taxonomy', '' ), |
|
86 | 86 | $aColumns |
87 | 87 | ); |
88 | 88 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @param string|null $sOptionKey |
122 | 122 | * @internal |
123 | 123 | */ |
124 | - protected function _setOptionArray( $iTermID=null, $sOptionKey=null ) { |
|
124 | + protected function _setOptionArray( $iTermID = null, $sOptionKey = null ) { |
|
125 | 125 | $this->oForm->aSavedData = $this->_getSavedFormData( $iTermID, $sOptionKey ); |
126 | 126 | } |
127 | 127 | /** |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | return $this->oUtil->addAndApplyFilter( |
136 | 136 | $this, // the caller factory object |
137 | - 'options_' . $this->oProp->sClassName, |
|
137 | + 'options_'.$this->oProp->sClassName, |
|
138 | 138 | $this->_getSavedTermFormData( $iTermID, $sOptionKey ) |
139 | 139 | // @todo maybe pass the term id because the user will not know whihch form data it is |
140 | 140 | ); |
@@ -168,16 +168,16 @@ discard block |
||
168 | 168 | */ |
169 | 169 | public function _replyToValidateOptions( $iTermID ) { |
170 | 170 | |
171 | - if ( ! $this->_shouldProceedValidation() ) { |
|
171 | + if ( !$this->_shouldProceedValidation() ) { |
|
172 | 172 | return; |
173 | 173 | } |
174 | 174 | |
175 | 175 | $_aTaxonomyFormData = $this->_getSavedTaxonomyFormData( $this->oProp->sOptionKey ); |
176 | 176 | $_aSavedFormData = $this->_getSavedTermFormData( $iTermID, $this->oProp->sOptionKey ); |
177 | - $_aSubmittedFormData = $this->oForm->getSubmittedData( $this->oForm->getHTTPRequestSanitized( $_POST ) ); // sanitization done |
|
177 | + $_aSubmittedFormData = $this->oForm->getSubmittedData( $this->oForm->getHTTPRequestSanitized( $_POST ) ); // sanitization done |
|
178 | 178 | $_aSubmittedFormData = $this->oUtil->addAndApplyFilters( |
179 | 179 | $this, |
180 | - 'validation_' . $this->oProp->sClassName, |
|
180 | + 'validation_'.$this->oProp->sClassName, |
|
181 | 181 | call_user_func_array( |
182 | 182 | array( $this, 'validate' ), // triggers __call() |
183 | 183 | array( $_aSubmittedFormData, $_aSavedFormData, $this ) |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | |
189 | 189 | // @todo Examine whether it is appropriate to merge recursivly |
190 | 190 | // as some fields will have a problem such as select with multiple options. |
191 | - $_aTaxonomyFormData[ $iTermID ] = $this->oUtil->uniteArrays( |
|
191 | + $_aTaxonomyFormData[ $iTermID ] = $this->oUtil->uniteArrays( |
|
192 | 192 | $_aSubmittedFormData, |
193 | 193 | $_aSavedFormData |
194 | 194 | ); |
@@ -210,10 +210,10 @@ discard block |
||
210 | 210 | */ |
211 | 211 | protected function _shouldProceedValidation() { |
212 | 212 | |
213 | - if ( ! isset( $_POST[ $this->oProp->sClassHash ] ) ) { // sanitization unnecessary |
|
213 | + if ( !isset( $_POST[ $this->oProp->sClassHash ] ) ) { // sanitization unnecessary |
|
214 | 214 | return false; |
215 | 215 | } |
216 | - if ( ! wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { // sanitization unnecessary |
|
216 | + if ( !wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { // sanitization unnecessary |
|
217 | 217 | return false; |
218 | 218 | } |
219 | 219 | return true; |
@@ -210,10 +210,12 @@ |
||
210 | 210 | */ |
211 | 211 | protected function _shouldProceedValidation() { |
212 | 212 | |
213 | - if ( ! isset( $_POST[ $this->oProp->sClassHash ] ) ) { // sanitization unnecessary |
|
213 | + if ( ! isset( $_POST[ $this->oProp->sClassHash ] ) ) { |
|
214 | +// sanitization unnecessary |
|
214 | 215 | return false; |
215 | 216 | } |
216 | - if ( ! wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { // sanitization unnecessary |
|
217 | + if ( ! wp_verify_nonce( $_POST[ $this->oProp->sClassHash ], $this->oProp->sClassHash ) ) { |
|
218 | +// sanitization unnecessary |
|
217 | 219 | return false; |
218 | 220 | } |
219 | 221 | return true; |