@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @since 3.6.0 |
26 | 26 | */ |
27 | - public $sContext = 'fieldset'; |
|
27 | + public $sContext = 'fieldset'; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Returns an attribute array. |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | */ |
33 | 33 | protected function _getAttributes() { |
34 | 34 | return array( |
35 | - 'id' => $this->sContext . '-' . $this->aArguments[ 'tag_id' ], |
|
35 | + 'id' => $this->sContext.'-'.$this->aArguments[ 'tag_id' ], |
|
36 | 36 | 'class' => implode( |
37 | 37 | ' ', |
38 | 38 | array( |
39 | - 'admin-page-framework-' . $this->sContext, |
|
39 | + 'admin-page-framework-'.$this->sContext, |
|
40 | 40 | $this->_getSelectorForChildFieldset() |
41 | 41 | ) |
42 | 42 | ), |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | return ''; |
68 | 68 | } |
69 | 69 | if ( $this->aArguments[ '_nested_depth' ] == 1 ) { |
70 | - return 'child-fieldset nested-depth-' . $this->aArguments[ '_nested_depth' ]; |
|
70 | + return 'child-fieldset nested-depth-'.$this->aArguments[ '_nested_depth' ]; |
|
71 | 71 | } |
72 | - return 'child-fieldset multiple-nesting nested-depth-' . $this->aArguments[ '_nested_depth' ]; |
|
72 | + return 'child-fieldset multiple-nesting nested-depth-'.$this->aArguments[ '_nested_depth' ]; |
|
73 | 73 | |
74 | 74 | } |
75 | 75 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @param object $oForm |
31 | 31 | * @param string $sHeadActionHook The action hook triggered inside the `<head>` tag. For front-end forms, use `wp_head`. |
32 | 32 | */ |
33 | - public function __construct( $oForm, $sHeadActionHook='admin_head' ) { |
|
33 | + public function __construct( $oForm, $sHeadActionHook = 'admin_head' ) { |
|
34 | 34 | |
35 | 35 | $this->oForm = $oForm; |
36 | 36 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * as multiple instances of the factory class is loaded among separate pages, |
55 | 55 | * one gets denied here and if it can load earlier than the one which should insert the below script. |
56 | 56 | */ |
57 | - if ( ! $this->oForm->isInThePage() ) { |
|
57 | + if ( !$this->oForm->isInThePage() ) { |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 | |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | private function _getScripts_RequiredInHead() { |
78 | 78 | return 'document.write( "<style class=\'admin-page-framework-js-embedded-internal-style\'>' |
79 | 79 | . str_replace( |
80 | - '\\n', // search |
|
81 | - '', // replace |
|
80 | + '\\n', // search |
|
81 | + '', // replace |
|
82 | 82 | esc_js( $this->_getInternalCSS() ) // subject |
83 | 83 | ) |
84 | 84 | . '</style>" );'; |
@@ -40,7 +40,7 @@ |
||
40 | 40 | // Widgets can be called multiple times for the number of user-created widget instances for one class instance |
41 | 41 | // so make sure it is processed only once per page. |
42 | 42 | if ( $this->hasBeenCalled( 'resource_' . $oForm->aArguments[ 'caller_id' ] ) ) { |
43 | - return; |
|
43 | + return; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | $this->_setHooks(); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | // Widgets can be called multiple times for the number of user-created widget instances for one class instance |
41 | 41 | // so make sure it is processed only once per page. |
42 | - if ( $this->hasBeenCalled( 'resource_' . $oForm->aArguments[ 'caller_id' ] ) ) { |
|
42 | + if ( $this->hasBeenCalled( 'resource_'.$oForm->aArguments[ 'caller_id' ] ) ) { |
|
43 | 43 | return; |
44 | 44 | } |
45 | 45 | |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | * @since 3.7.0 |
113 | 113 | */ |
114 | 114 | public function _replyToEnqueueScripts() { |
115 | - if ( ! $this->oForm->isInThePage() ) { |
|
115 | + if ( !$this->oForm->isInThePage() ) { |
|
116 | 116 | return; |
117 | 117 | } |
118 | - foreach( $this->oForm->getResources( 'src_scripts' ) as $_isIndex => $_asEnqueue ) { |
|
118 | + foreach ( $this->oForm->getResources( 'src_scripts' ) as $_isIndex => $_asEnqueue ) { |
|
119 | 119 | $this->_enqueueScript( $_asEnqueue ); |
120 | - $this->oForm->unsetResources( array( 'src_scripts', $_isIndex ) ); // no longer needed |
|
120 | + $this->oForm->unsetResources( array( 'src_scripts', $_isIndex ) ); // no longer needed |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | /** |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | private function _getFormattedEnqueueScript( $asEnqueue ) { |
165 | 165 | static $_iCallCount = 1; |
166 | 166 | $_aEnqueueItem = $this->getAsArray( $asEnqueue ) + array( |
167 | - 'handle_id' => 'script_form_' . $this->oForm->aArguments[ 'caller_id' ] . '_' . $_iCallCount, |
|
167 | + 'handle_id' => 'script_form_'.$this->oForm->aArguments[ 'caller_id' ].'_'.$_iCallCount, |
|
168 | 168 | 'src' => null, |
169 | 169 | 'dependencies' => null, |
170 | 170 | 'version' => null, |
@@ -187,10 +187,10 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function _replyToEnqueueStyles() { |
189 | 189 | |
190 | - if ( ! $this->oForm->isInThePage() ) { |
|
190 | + if ( !$this->oForm->isInThePage() ) { |
|
191 | 191 | return; |
192 | 192 | } |
193 | - foreach( $this->oForm->getResources( 'src_styles' ) as $_isIndex => $_asEnqueueItem ) { |
|
193 | + foreach ( $this->oForm->getResources( 'src_styles' ) as $_isIndex => $_asEnqueueItem ) { |
|
194 | 194 | $this->_enqueueStyle( $_asEnqueueItem ); |
195 | 195 | $this->oForm->unsetResources( array( 'src_styles', $_isIndex ) ); // no longer needed |
196 | 196 | } |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | private function _getFormattedEnqueueStyle( $asEnqueue ) { |
213 | 213 | static $_iCallCount = 1; |
214 | 214 | $_aEnqueueItem = $this->getAsArray( $asEnqueue ) + array( |
215 | - 'handle_id' => 'style_form_' . $this->oForm->aArguments[ 'caller_id' ] . '_' . $_iCallCount, |
|
215 | + 'handle_id' => 'style_form_'.$this->oForm->aArguments[ 'caller_id' ].'_'.$_iCallCount, |
|
216 | 216 | 'src' => null, |
217 | 217 | 'dependencies' => null, |
218 | 218 | 'version' => null, |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | public function _replyToAddStyle() { |
238 | 238 | |
239 | - if ( ! $this->oForm->isInThePage() ) { |
|
239 | + if ( !$this->oForm->isInThePage() ) { |
|
240 | 240 | return; |
241 | 241 | } |
242 | 242 | $_sCSSRules = $this->_getFormattedInternalStyles( |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | */ |
279 | 279 | public function _replyToAddScript() { |
280 | 280 | |
281 | - if ( ! $this->oForm->isInThePage() ) { |
|
281 | + if ( !$this->oForm->isInThePage() ) { |
|
282 | 282 | return; |
283 | 283 | } |
284 | 284 |
@@ -23,13 +23,13 @@ |
||
23 | 23 | protected function _get() { |
24 | 24 | return $this->_getFormSectionRules(); |
25 | 25 | } |
26 | - /** |
|
27 | - * Returns the CSS rules for form fields. |
|
28 | - * |
|
29 | - * @since 3.4.0 |
|
30 | - * @since 3.7.0 Moved from `AdminPageFramework_CSS`. |
|
31 | - * @internal |
|
32 | - */ |
|
26 | + /** |
|
27 | + * Returns the CSS rules for form fields. |
|
28 | + * |
|
29 | + * @since 3.4.0 |
|
30 | + * @since 3.7.0 Moved from `AdminPageFramework_CSS`. |
|
31 | + * @internal |
|
32 | + */ |
|
33 | 33 | private function _getFormSectionRules() { |
34 | 34 | $_sCSSRules = <<<CSSRULES |
35 | 35 | /* Section Table */ |
@@ -77,15 +77,15 @@ discard block |
||
77 | 77 | $_oSectionTableBodyAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableBody( $this->aSectionset ); |
78 | 78 | |
79 | 79 | $_aOutput = array(); |
80 | - $_aOutput[] = "<table " . $_oSectionTableAttributes->get() . ">" |
|
80 | + $_aOutput[ ] = "<table ".$_oSectionTableAttributes->get().">" |
|
81 | 81 | . $_oTableCaption->get() |
82 | - . "<tbody " . $_oSectionTableBodyAttributes->get() . ">" |
|
82 | + . "<tbody ".$_oSectionTableBodyAttributes->get().">" |
|
83 | 83 | . $this->_getSectionContent( $_iSectionIndex ) |
84 | 84 | . "</tbody>" |
85 | 85 | . "</table>"; |
86 | 86 | |
87 | - $_oSectionTableContainerAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableContainer( $this->aSectionset ); |
|
88 | - return "<div " . $_oSectionTableContainerAttributes->get() . ">" |
|
87 | + $_oSectionTableContainerAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableContainer( $this->aSectionset ); |
|
88 | + return "<div ".$_oSectionTableContainerAttributes->get().">" |
|
89 | 89 | . implode( PHP_EOL, $_aOutput ) |
90 | 90 | . "</div>"; |
91 | 91 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | // Retrieve the formatted sectionsets of the content. |
136 | 136 | $_sSectionPath = $this->aSectionset[ '_section_path' ]; |
137 | 137 | $_aSectionsets = $this->aStructure[ 'sectionsets' ]; |
138 | - if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
138 | + if ( !isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
139 | 139 | return ''; |
140 | 140 | } |
141 | 141 | |
@@ -190,22 +190,22 @@ discard block |
||
190 | 190 | $_aNestedSectionPaths = array(); |
191 | 191 | |
192 | 192 | // List the section paths of the direct children |
193 | - foreach( $aNestedSctionsets as $_aNestedSectionset ) { |
|
193 | + foreach ( $aNestedSctionsets as $_aNestedSectionset ) { |
|
194 | 194 | |
195 | 195 | // 3.7.6+ There were cases non array gets passed (like the FAQ page in the demo) |
196 | 196 | // and caused warnings in PHP 7. |
197 | - if ( ! is_array( $_aNestedSectionset ) ) { |
|
197 | + if ( !is_array( $_aNestedSectionset ) ) { |
|
198 | 198 | continue; |
199 | 199 | } |
200 | 200 | |
201 | - $_sThisSectionPath = $sSubjectSectionPath . '|' . $_aNestedSectionset[ 'section_id' ]; |
|
201 | + $_sThisSectionPath = $sSubjectSectionPath.'|'.$_aNestedSectionset[ 'section_id' ]; |
|
202 | 202 | $_aNestedSectionPaths[ $_sThisSectionPath ] = $_sThisSectionPath; |
203 | 203 | |
204 | 204 | } |
205 | 205 | |
206 | 206 | // Now we need children's children. |
207 | 207 | $_aChildSectionPaths = array(); |
208 | - foreach( $_aNestedSectionPaths as $_sNestedSectionPath ) { |
|
208 | + foreach ( $_aNestedSectionPaths as $_sNestedSectionPath ) { |
|
209 | 209 | $_aNestedSectionsets = $this->getElementAsArray( |
210 | 210 | $aSectionsets, |
211 | 211 | array( $_sNestedSectionPath, 'content' ) |
@@ -135,7 +135,8 @@ |
||
135 | 135 | // Retrieve the formatted sectionsets of the content. |
136 | 136 | $_sSectionPath = $this->aSectionset[ '_section_path' ]; |
137 | 137 | $_aSectionsets = $this->aStructure[ 'sectionsets' ]; |
138 | - if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
138 | + if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { |
|
139 | +// @todo not sure what this check is for |
|
139 | 140 | return ''; |
140 | 141 | } |
141 | 142 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * |
26 | 26 | * Only one depth at a time will be parsed. |
27 | 27 | */ |
28 | - public $iNestedDepth = 0; |
|
28 | + public $iNestedDepth = 0; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Stores the generated section tab slugs. |
@@ -121,11 +121,11 @@ discard block |
||
121 | 121 | $_aFieldsBySectionTab = array(); |
122 | 122 | $_iIndex = 0; |
123 | 123 | |
124 | - foreach( $aSectionsets as $_sSectionPath => $_aSectionset ) { |
|
124 | + foreach ( $aSectionsets as $_sSectionPath => $_aSectionset ) { |
|
125 | 125 | |
126 | 126 | // If no fields for the section, no need to add the section |
127 | 127 | // unless the custom sectionset output is defined. |
128 | - if ( ! isset( $aFieldsets[ $_sSectionPath ] ) && ! $this->_isCustomContentSet( $_aSectionset ) ) { |
|
128 | + if ( !isset( $aFieldsets[ $_sSectionPath ] ) && !$this->_isCustomContentSet( $_aSectionset ) ) { |
|
129 | 129 | continue; |
130 | 130 | } |
131 | 131 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $_sSectionTaqbSlug = $this->getAOrB( |
138 | 138 | $_aSectionset[ 'section_tab_slug' ], |
139 | 139 | $_aSectionset[ 'section_tab_slug' ], |
140 | - '_default_' . $this->iNestedDepth . '_' . ( ++$_iIndex ) |
|
140 | + '_default_'.$this->iNestedDepth.'_'.( ++$_iIndex ) |
|
141 | 141 | ); |
142 | 142 | $_aSectionsBySectionTab[ $_sSectionTaqbSlug ][ $_sSectionPath ] = $_aSectionset; |
143 | 143 | $_aFieldsBySectionTab[ $_sSectionTaqbSlug ][ $_sSectionPath ] = $this->getElement( |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @since 3.7.0 Moved from `AdminPageFramework_FormPart_Table`. |
159 | 159 | * @return boolean True if a custom content value is set. |
160 | 160 | */ |
161 | - private function _isCustomContentSet( array $aSectionset, array $aKeys=array( 'content' ) ) { |
|
161 | + private function _isCustomContentSet( array $aSectionset, array $aKeys = array( 'content' ) ) { |
|
162 | 162 | return isset( $aSectionset[ 'content' ] ); |
163 | 163 | // @deprecated |
164 | 164 | // foreach( $aKeys as $_sKey ) { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | $_aParameters = func_get_args() + array( |
34 | 34 | $this->aFieldset, |
35 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
35 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
36 | 36 | $this->aFieldErrors, |
37 | 37 | $this->aFieldTypeDefinitions, |
38 | 38 | $this->aCallbacks, // field output element callables. |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | |
61 | 61 | $aFieldset = $this->aFieldset; |
62 | 62 | |
63 | - if ( ! $this->isNormalPlacement( $aFieldset ) ) { |
|
63 | + if ( !$this->isNormalPlacement( $aFieldset ) ) { |
|
64 | 64 | return ''; |
65 | 65 | } |
66 | 66 | |
67 | - $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
67 | + $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
68 | 68 | $aFieldset, |
69 | 69 | array( |
70 | - 'id' => 'fieldrow-' . $aFieldset[ 'tag_id' ], |
|
70 | + 'id' => 'fieldrow-'.$aFieldset[ 'tag_id' ], |
|
71 | 71 | 'valign' => 'top', |
72 | 72 | 'class' => 'admin-page-framework-fieldrow', |
73 | 73 | ) |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | return $this->_getFieldByContainer( |
77 | 77 | $aFieldset, |
78 | 78 | array( |
79 | - 'open_container' => "<tr " . $_oFieldrowAttribute->get() . ">", |
|
79 | + 'open_container' => "<tr ".$_oFieldrowAttribute->get().">", |
|
80 | 80 | 'close_container' => "</tr>", |
81 | 81 | 'open_title' => "<th>", |
82 | 82 | 'close_title' => "</th>", |
@@ -125,13 +125,13 @@ discard block |
||
125 | 125 | $this->aCallbacks, |
126 | 126 | $this->oMsg |
127 | 127 | ); |
128 | - $_aOutput = array(); |
|
128 | + $_aOutput = array(); |
|
129 | 129 | if ( $aFieldset[ 'show_title_column' ] ) { |
130 | - $_aOutput[] = $aOpenCloseTags[ 'open_title' ] |
|
130 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_title' ] |
|
131 | 131 | . $_oFieldTitle->get() |
132 | 132 | . $aOpenCloseTags[ 'close_title' ]; |
133 | 133 | } |
134 | - $_aOutput[] = $aOpenCloseTags[ 'open_main' ] |
|
134 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_main' ] |
|
135 | 135 | // . call_user_func_array( $hfCallback, array( $aFieldset ) ) |
136 | 136 | . $this->getFieldsetOutput( $aFieldset ) |
137 | 137 | . $aOpenCloseTags[ 'close_main' ]; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | $_aParameters = func_get_args() + array( |
33 | 33 | $this->aFieldset, |
34 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
34 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
35 | 35 | $this->aFieldErrors, |
36 | 36 | $this->aFieldTypeDefinitions, |
37 | 37 | $this->aCallbacks, // field output element callables. |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | $aFieldset = $this->aFieldset; |
61 | 61 | |
62 | - if ( ! $this->isNormalPlacement( $aFieldset ) ) { |
|
62 | + if ( !$this->isNormalPlacement( $aFieldset ) ) { |
|
63 | 63 | return ''; |
64 | 64 | } |
65 | 65 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | return $this->_getFieldByContainer( |
71 | 71 | $aFieldset, |
72 | 72 | array( |
73 | - 'open_main' => "<div " . $_oFieldrowAttribute->get() . ">", |
|
73 | + 'open_main' => "<div ".$_oFieldrowAttribute->get().">", |
|
74 | 74 | 'close_main' => "</div>", |
75 | 75 | ) |
76 | 76 | ); |
@@ -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 ( ! $_aFieldset[ 'if' ] ) { |
|
79 | + if ( !$_aFieldset[ 'if' ] ) { |
|
80 | 80 | continue; |
81 | 81 | } |
82 | 82 |