Completed
Branch master (18543e)
by
unknown
01:09 queued 37s
created
help/AdminPageFrameworkLoader_AdminPage_Help_Example.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         /**
53 53
          * @return      string
54 54
          */
55
-        private function getReadMeContents()  {
55
+        private function getReadMeContents() {
56 56
             return $this->_getReadmeContents(
57 57
                 AdminPageFrameworkLoader_Registry::$sDirPath . '/asset/text/examples.txt',
58 58
                 '',
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
         $_aItems     = $this->getContentsByHeader( $this->getReadmeContents(), 3 );
25 25
         $_iLastIndex = count( $_aItems ) - 1;
26
-        foreach( $_aItems as $_iIndex => $_aContent ) {
26
+        foreach ( $_aItems as $_iIndex => $_aContent ) {
27 27
 
28 28
             $_oParser   = new AdminPageFramework_WPReadmeParser;
29 29
             $_oParser->setText( $_aContent[ 1 ] );
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             $oAdminPage->addSettingSections(
32 32
                 $this->sPageSlug, // the target page slug
33 33
                 array(
34
-                    'section_id'        => 'examples_' . $_iIndex,
34
+                    'section_id'        => 'examples_'.$_iIndex,
35 35
                     'title'             => $_aContent[ 0 ],
36 36
                     'collapsible'       => array(
37 37
                         'toggle_all_button' => $_iLastIndex === $_iIndex
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
         /**
53 53
          * @return      string
54 54
          */
55
-        private function getReadMeContents()  {
55
+        private function getReadMeContents() {
56 56
             return $this->_getReadmeContents(
57
-                AdminPageFrameworkLoader_Registry::$sDirPath . '/asset/text/examples.txt',
57
+                AdminPageFrameworkLoader_Registry::$sDirPath.'/asset/text/examples.txt',
58 58
                 '',
59 59
                 array( 'Examples' )
60 60
             );
Please login to merge, or discard this patch.
admin-page-framework/help/AdminPageFrameworkLoader_AdminPage_Help_Tip.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         /**
54 54
          * @return      string
55 55
          */
56
-        private function getReadMeContents()  {
56
+        private function getReadMeContents() {
57 57
             return $this->_getReadmeContents(
58 58
                 AdminPageFrameworkLoader_Registry::$sDirPath . '/readme.txt', // source path
59 59
                 '', // TOC title
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
 
26 26
         $_aItems     = $this->getContentsByHeader( $this->getReadmeContents(), 4 );
27 27
         $_iLastIndex = count( $_aItems ) - 1;
28
-        foreach( $_aItems as $_iIndex => $_aContent ) {
28
+        foreach ( $_aItems as $_iIndex => $_aContent ) {
29 29
 
30 30
             $_oParser   = new AdminPageFramework_WPReadmeParser( $_aContent[ 1 ] );
31 31
             $_sContent  = $_oParser->get();
32 32
             $oAdminPage->addSettingSections(
33 33
                 $this->sPageSlug, // the target page slug
34 34
                 array(
35
-                    'section_id'        => 'tips_' . $_iIndex,
35
+                    'section_id'        => 'tips_'.$_iIndex,
36 36
                     'title'             => $_aContent[ 0 ],
37 37
                     'collapsible'       => array(
38 38
                         'toggle_all_button' => $_iLastIndex === $_iIndex
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
         /**
54 54
          * @return      string
55 55
          */
56
-        private function getReadMeContents()  {
56
+        private function getReadMeContents() {
57 57
             return $this->_getReadmeContents(
58
-                AdminPageFrameworkLoader_Registry::$sDirPath . '/readme.txt', // source path
58
+                AdminPageFrameworkLoader_Registry::$sDirPath.'/readme.txt', // source path
59 59
                 '', // TOC title
60 60
                 array( 'Other Notes' )  // sections
61 61
             );
Please login to merge, or discard this patch.
include/class/utility/AdminPageFrameworkLoader_Utility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             ),
35 35
             2 => __( 'Header already sent.', 'admin-page-framework-loader' ),
36 36
         );
37
-        if ( ! class_exists( 'AdminPageFramework_AdminNotice' ) ) {
37
+        if ( !class_exists( 'AdminPageFramework_AdminNotice' ) ) {
38 38
             return;
39 39
         }
40 40
         new AdminPageFramework_AdminNotice(
Please login to merge, or discard this patch.
factory/user_meta/_model/AdminPageFramework_UserMeta_Model___UserMeta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     /**
22 22
      * The callback function name or the callable object to retrieve meta data.
23 23
      */
24
-    protected $osCallable   = 'get_user_meta'; 
24
+    protected $osCallable = 'get_user_meta'; 
25 25
         
26 26
 }
Please login to merge, or discard this patch.
_common/_abstract/_model/AdminPageFramework_Factory_Model___Meta_Base.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * The callback function name or the callable object to retrieve meta data.
25 25
      */
26
-    protected $osCallable   = 'get_post_meta';
26
+    protected $osCallable = 'get_post_meta';
27 27
 
28 28
     /**
29 29
      * The object ID such as post ID, user ID, and term ID.
30 30
      */
31
-    public $iObjectID       = 0;
31
+    public $iObjectID = 0;
32 32
     
33 33
     /**
34 34
      * A form fieldsets array.
35 35
      */
36
-    public $aFieldsets      = array();
36
+    public $aFieldsets = array();
37 37
     
38 38
     /**
39 39
      * Sets up properties.
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function get() {
59 59
 
60
-        if ( ! $this->iObjectID ) {
60
+        if ( !$this->iObjectID ) {
61 61
             return array();
62 62
         }
63 63
         return $this->_getSavedDataFromFieldsets(
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
             
77 77
             $_aMetaKeys = $this->_getMetaKeys( $iObjectID );
78 78
             $_aMetaData = array();
79
-            foreach( $aFieldsets as $_sSectionID => $_aFieldsets ) {
79
+            foreach ( $aFieldsets as $_sSectionID => $_aFieldsets ) {
80 80
                 
81
-                if ( '_default' == $_sSectionID  ) {
82
-                    foreach( $_aFieldsets as $_aFieldset ) {
83
-                        if ( ! in_array( $_aFieldset[ 'field_id' ], $_aMetaKeys ) ) {
81
+                if ( '_default' == $_sSectionID ) {
82
+                    foreach ( $_aFieldsets as $_aFieldset ) {
83
+                        if ( !in_array( $_aFieldset[ 'field_id' ], $_aMetaKeys ) ) {
84 84
                             continue;
85 85
                         }
86 86
                         $_aMetaData[ $_aFieldset[ 'field_id' ] ] = call_user_func_array(
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
                         );
94 94
                     }
95 95
                 }
96
-                if ( ! in_array( $_sSectionID, $_aMetaKeys ) ) {
96
+                if ( !in_array( $_sSectionID, $_aMetaKeys ) ) {
97 97
                     continue;
98 98
                 }                
99 99
                 $_aMetaData[ $_sSectionID ] = call_user_func_array(
Please login to merge, or discard this patch.
form/_view/fieldset/AdminPageFramework_Form_View___Fieldset_Base.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                 self::$_bIsLoadedJSScripts_Widget = true;
158 158
             }
159 159
             
160
-            if ( self::$_bIsLoadedJSScripts ) { 
160
+            if ( self::$_bIsLoadedJSScripts ) {
161 161
                 return; 
162 162
             }
163 163
             self::$_bIsLoadedJSScripts = true;
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
      * 
256 256
      * @since 3.0.0
257 257
      */    
258
-    protected function _getSortableFieldEnablerScript( $sFieldsContainerID ) {        
258
+    protected function _getSortableFieldEnablerScript( $sFieldsContainerID ) {
259 259
     
260 260
         $_sScript = <<<JAVASCRIPTS
261 261
     jQuery( document ).ready( function() {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -272,8 +272,8 @@  discard block
 block discarded – undo
272 272
                     'href'      => empty( $aArguments[ 'disabled' ] )
273 273
                         ? null
274 274
                         : '#TB_inline?width=' . $aArguments[ 'disabled' ][ 'box_width' ]
275
-                          . '&height=' . $aArguments[ 'disabled' ][ 'box_height' ]
276
-                          . '&inlineId=' . 'repeatable_field_disabled_' . $sFieldsContainerID,
275
+                            . '&height=' . $aArguments[ 'disabled' ][ 'box_height' ]
276
+                            . '&inlineId=' . 'repeatable_field_disabled_' . $sFieldsContainerID,
277 277
                 );
278 278
                 return $this->getAttributes( $_sPlusButtonAttributes );
279 279
             }
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
             private function ___getRemoveButtonAttributes( $sFieldsContainerID, $sSmallButtonSelector, $iFieldCount ) {
286 286
                 $_aMinusButtonAttributes = array(
287 287
                     'class'     => 'repeatable-field-remove-button button-secondary repeatable-field-button button'
288
-                         . $sSmallButtonSelector,
288
+                            . $sSmallButtonSelector,
289 289
                     'title'     => $this->oMsg->get( 'remove' ),
290 290
                     'style'     => $iFieldCount <= 1
291 291
                         ? 'visibility: hidden'
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      * @param       object      $oMsg                   An object storing the system messages.
68 68
      * @param       array       $aCallbacks             An array storing the form-field specific callbacks.     
69 69
      */
70
-    public function __construct( $aFieldset, $aOptions, $aErrors, &$aFieldTypeDefinitions, &$oMsg, array $aCallbacks=array() ) {
70
+    public function __construct( $aFieldset, $aOptions, $aErrors, &$aFieldTypeDefinitions, &$oMsg, array $aCallbacks = array() ) {
71 71
 
72 72
         // Set up the properties that will be accessed later in the methods.
73 73
         $this->aFieldset                = $this->_getFormatted( $aFieldset, $aFieldTypeDefinitions );
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
         $this->aErrors                  = $this->getAsArray( $aErrors );
77 77
         $this->oMsg                     = $oMsg;
78 78
         $this->aCallbacks               = $aCallbacks + array(
79
-            'hfID'              => null,    // the input id attribute
80
-            'hfTagID'           => null,    // the fieldset/field row container id attribute
81
-            'hfName'            => null,    // the input name attribute
82
-            'hfNameFlat'        => null,    // the flat input name attribute                
79
+            'hfID'              => null, // the input id attribute
80
+            'hfTagID'           => null, // the fieldset/field row container id attribute
81
+            'hfName'            => null, // the input name attribute
82
+            'hfNameFlat'        => null, // the flat input name attribute                
83 83
             'hfInputName'       => null,
84 84
             'hfInputNameFlat'   => null,
85
-            'hfClass'           => null,    // the class attribute
85
+            'hfClass'           => null, // the class attribute
86 86
         );        
87 87
         
88 88
         // 2. Load necessary JavaScript scripts.
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
          * @since   3.2.0   Added the `$sFieldsType` parameter.
150 150
          * @internal
151 151
          */
152
-        private function _loadScripts( $sStructureType='' ) {
152
+        private function _loadScripts( $sStructureType = '' ) {
153 153
 
154
-            if ( 'widget' === $sStructureType && ! self::$_bIsLoadedJSScripts_Widget ) {
154
+            if ( 'widget' === $sStructureType && !self::$_bIsLoadedJSScripts_Widget ) {
155 155
                 new AdminPageFramework_Form_View___Script_Widget;
156 156
                 self::$_bIsLoadedJSScripts_Widget = true;
157 157
             }
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
      */
177 177
     protected function _getRepeaterFieldEnablerScript( $sFieldsContainerID, $iFieldCount, $aSettings ) {
178 178
         
179
-        $_sSmallButtons         = '"' . $this->___getRepeatableButtonHTML( $sFieldsContainerID, ( array ) $aSettings, $iFieldCount, true ) . '"';
180
-        $_sNestedFieldsButtons  = '"' . $this->___getRepeatableButtonHTML( $sFieldsContainerID, ( array ) $aSettings, $iFieldCount, false ) . '"';
179
+        $_sSmallButtons         = '"'.$this->___getRepeatableButtonHTML( $sFieldsContainerID, ( array ) $aSettings, $iFieldCount, true ).'"';
180
+        $_sNestedFieldsButtons  = '"'.$this->___getRepeatableButtonHTML( $sFieldsContainerID, ( array ) $aSettings, $iFieldCount, false ).'"';
181 181
         $_aJSArray              = json_encode( $aSettings );
182 182
         $_sScript               = <<<JAVASCRIPTS
183 183
 jQuery( document ).ready( function() {
@@ -223,36 +223,36 @@  discard block
 block discarded – undo
223 223
          * @since       3.8.0
224 224
          * @return      string
225 225
          */
226
-        private function ___getRepeatableButtonHTML( $sFieldsContainerID, array $aArguments, $iFieldCount, $bSmall=true ) {
226
+        private function ___getRepeatableButtonHTML( $sFieldsContainerID, array $aArguments, $iFieldCount, $bSmall = true ) {
227 227
 
228 228
             // @todo Move this formatting routine to the field-set formatter class.
229 229
             $_oFormatter             = new AdminPageFramework_Form_Model___Format_RepeatableField( $aArguments, $this->oMsg );
230 230
             $_aArguments             = $_oFormatter->get();
231 231
             $_sSmallButtonSelector   = $bSmall ? ' button-small' : '';
232 232
             if ( version_compare( $GLOBALS[ 'wp_version' ], '5.3', '>=' ) ) {
233
-                return "<div " . $this->___getContainerAttributes( $_aArguments ) . " >"
234
-                        . "<a " . $this->___getRemoveButtonAttributes( $sFieldsContainerID, $_sSmallButtonSelector, $iFieldCount ) . ">"
233
+                return "<div ".$this->___getContainerAttributes( $_aArguments )." >"
234
+                        . "<a ".$this->___getRemoveButtonAttributes( $sFieldsContainerID, $_sSmallButtonSelector, $iFieldCount ).">"
235 235
                             . "<span class='dashicons dashicons-minus'></span>"
236 236
                         . "</a>"
237
-                        . "<a " . $this->___getAddButtonAttribtes( $_aArguments, $sFieldsContainerID, $_sSmallButtonSelector ) . ">"
237
+                        . "<a ".$this->___getAddButtonAttribtes( $_aArguments, $sFieldsContainerID, $_sSmallButtonSelector ).">"
238 238
                             . "<span class='dashicons dashicons-plus-alt2'></span>"
239 239
                         ."</a>"
240 240
                     . "</div>"
241 241
                     . $this->getModalForDisabledRepeatableElement(
242
-                        'repeatable_field_disabled_' . $sFieldsContainerID,
242
+                        'repeatable_field_disabled_'.$sFieldsContainerID,
243 243
                         $_aArguments[ 'disabled' ]
244 244
                     );
245 245
             }
246
-            return "<div " . $this->___getContainerAttributes( $_aArguments ) . " >"
247
-                    . "<a " . $this->___getRemoveButtonAttributes( $sFieldsContainerID, $_sSmallButtonSelector, $iFieldCount ) . ">"
246
+            return "<div ".$this->___getContainerAttributes( $_aArguments )." >"
247
+                    . "<a ".$this->___getRemoveButtonAttributes( $sFieldsContainerID, $_sSmallButtonSelector, $iFieldCount ).">"
248 248
                         . "-"
249 249
                     . "</a>"
250
-                    . "<a " . $this->___getAddButtonAttribtes( $_aArguments, $sFieldsContainerID, $_sSmallButtonSelector ) . ">"
250
+                    . "<a ".$this->___getAddButtonAttribtes( $_aArguments, $sFieldsContainerID, $_sSmallButtonSelector ).">"
251 251
                         . "+"
252 252
                     ."</a>"
253 253
                 . "</div>"
254 254
                 . $this->getModalForDisabledRepeatableElement(
255
-                    'repeatable_field_disabled_' . $sFieldsContainerID,
255
+                    'repeatable_field_disabled_'.$sFieldsContainerID,
256 256
                     $_aArguments[ 'disabled' ]
257 257
                 );
258 258
 
@@ -271,9 +271,9 @@  discard block
 block discarded – undo
271 271
                     'data-id'   => $sFieldsContainerID,
272 272
                     'href'      => empty( $aArguments[ 'disabled' ] )
273 273
                         ? null
274
-                        : '#TB_inline?width=' . $aArguments[ 'disabled' ][ 'box_width' ]
275
-                          . '&height=' . $aArguments[ 'disabled' ][ 'box_height' ]
276
-                          . '&inlineId=' . 'repeatable_field_disabled_' . $sFieldsContainerID,
274
+                        : '#TB_inline?width='.$aArguments[ 'disabled' ][ 'box_width' ]
275
+                          . '&height='.$aArguments[ 'disabled' ][ 'box_height' ]
276
+                          . '&inlineId='.'repeatable_field_disabled_'.$sFieldsContainerID,
277 277
                 );
278 278
                 return $this->getAttributes( $_sPlusButtonAttributes );
279 279
             }
@@ -300,10 +300,10 @@  discard block
 block discarded – undo
300 300
              * @return      string
301 301
              */
302 302
             private function ___getContainerAttributes( $aArguments ) {
303
-                $_aContainerAttributes   = array(
303
+                $_aContainerAttributes = array(
304 304
                     'class' => $this->getClassAttribute(
305 305
                         'admin-page-framework-repeatable-field-buttons',
306
-                        ! empty( $aArguments[ 'disabled' ] )
306
+                        !empty( $aArguments[ 'disabled' ] )
307 307
                             ? 'disabled'
308 308
                             : ''
309 309
                     ),
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
                     unset( $aArguments[ 'disabled' ] );
317 317
                 }
318 318
                 return $this->getAttributes( $_aContainerAttributes )
319
-                    . ' ' . $this->getDataAttributes( $aArguments );
319
+                    . ' '.$this->getDataAttributes( $aArguments );
320 320
             }
321 321
 
322 322
     /**
Please login to merge, or discard this patch.
generator/section/AdminPageFramework_Form_View___Generate_Section_Base.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,8 +93,8 @@
 block discarded – undo
93 93
         
94 94
         // Extract the first part as it does not have braces
95 95
         $_sName = array_shift( $aParts );
96
-        foreach( $aParts as $_sPart ) {
97
-            $_sName .= '[' . $_sPart . ']';
96
+        foreach ( $aParts as $_sPart ) {
97
+            $_sName .= '['.$_sPart.']';
98 98
         }
99 99
         return $_sName;
100 100
         
Please login to merge, or discard this patch.
form/_model/formatter/AdminPageFramework_Form_Model___Format_EachField.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
      * Represents the structure of the sub-field definition array.
25 25
      */
26 26
     static public $aStructure = array(
27
-        '_is_sub_field'                 => false,   // @todo change this key name as all the parsed field is technically a sub-field.
28
-        '_index'                        => 0,       // indicates the field index
27
+        '_is_sub_field'                 => false, // @todo change this key name as all the parsed field is technically a sub-field.
28
+        '_index'                        => 0, // indicates the field index
29 29
         '_is_multiple_fields'           => false,
30 30
         '_saved_value'                  => null,
31 31
         '_is_value_set_by_user'         => false,
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
         '_fields_container_id'          => '',
40 40
         '_fieldset_container_id'        => '',
41 41
         
42
-        '_field_object'                 => null,        // 3.6.0+
43
-        '_parent_field_object'          => null,        // 3.6.0+ Stores the parent field object to be accessed from the nested fields to generate id and name attribute models.
42
+        '_field_object'                 => null, // 3.6.0+
43
+        '_parent_field_object'          => null, // 3.6.0+ Stores the parent field object to be accessed from the nested fields to generate id and name attribute models.
44 44
     );
45 45
     
46 46
     /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
         $_aField = $this->aField + self::$aStructure;
89 89
         
90
-        $_aField[ '_is_sub_field' ]            = is_numeric( $this->isIndex ) && 0 < $this->isIndex;      // 3.5.3+
90
+        $_aField[ '_is_sub_field' ]            = is_numeric( $this->isIndex ) && 0 < $this->isIndex; // 3.5.3+
91 91
         $_aField[ '_index' ]                   = $this->isIndex;
92 92
 
93 93
         // 'input_id' - something like ({section id}_){field_id}__{index} e.g. my_section_id_my_field_id__0
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
                     'value'             => $_aField[ 'value' ],
135 135
                     'type'              => $_aField[ 'type' ], // text, password, etc.
136 136
                     'disabled'          => null,
137
-                    'data-id_model'     => $_aField[ '_input_id_model' ],    // 3.3.1+
138
-                    'data-name_model'   => $_aField[ '_input_name_model' ],  // 3.3.1+
137
+                    'data-id_model'     => $_aField[ '_input_id_model' ], // 3.3.1+
138
+                    'data-name_model'   => $_aField[ '_input_name_model' ], // 3.3.1+
139 139
                 )
140 140
             ),
141 141
             // this allows sub-fields with different field types to set the default key-values for the sub-field.
Please login to merge, or discard this patch.
_model/formatter/AdminPageFramework_Form_Model___Format_FieldsetOutput.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -33,23 +33,23 @@  discard block
 block discarded – undo
33 33
      * @internal
34 34
      */ 
35 35
     static public $aStructure = array(       
36
-        '_section_index'            => null,    // 3.0.0+ - internally set to indicate the section index for repeatable sections.        
36
+        '_section_index'            => null, // 3.0.0+ - internally set to indicate the section index for repeatable sections.        
37 37
         
38 38
         'tag_id'                    => null,
39
-        '_tag_id_model'             => '',      // 3.6.0+   
39
+        '_tag_id_model'             => '', // 3.6.0+   
40 40
         
41
-        '_field_name'               => '',      // 3.6.0+   
42
-        '_field_name_model'         => '',      // 3.6.0+           
41
+        '_field_name'               => '', // 3.6.0+   
42
+        '_field_name_model'         => '', // 3.6.0+           
43 43
         
44
-        '_field_name_flat'          => '',      // 3.6.0+
45
-        '_field_name_flat_model'    => '',      // 3.6.0+   
44
+        '_field_name_flat'          => '', // 3.6.0+
45
+        '_field_name_flat_model'    => '', // 3.6.0+   
46 46
                 
47
-        '_field_address'            => '',      // 3.6.0+
48
-        '_field_address_model'      => '',      // 3.6.0+
47
+        '_field_address'            => '', // 3.6.0+
48
+        '_field_address_model'      => '', // 3.6.0+
49 49
                
50
-        '_parent_field_object'      => null,    // 3.6.0+   Assigned when a field creates a nested field.
50
+        '_parent_field_object'      => null, // 3.6.0+   Assigned when a field creates a nested field.
51 51
         
52
-        '_parent_tag_id'            => null,    // 3.8.0+   Set outside the class.
52
+        '_parent_tag_id'            => null, // 3.8.0+   Set outside the class.
53 53
         
54 54
     );        
55 55
     
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $_aFieldset = $this->aFieldset + self::$aStructure;
93 93
 
94 94
         // The section index must be set before generating a field tag id as it uses a section index.
95
-        $_aFieldset[ '_section_index' ]   = $this->iSectionIndex;
95
+        $_aFieldset[ '_section_index' ] = $this->iSectionIndex;
96 96
         $_oFieldTagIDGenerator = new AdminPageFramework_Form_View___Generate_FieldTagID( 
97 97
             $_aFieldset,
98 98
             $_aFieldset[ '_caller_object' ]->aCallbacks[ 'hfTagID' ]
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         
127 127
         // 3.8.0+ Format nested fieldsets.
128 128
         if ( $this->hasFieldDefinitionsInContent( $_aFieldset ) ) {
129
-            foreach( $_aFieldset[ 'content' ] as &$_aNestedFieldset ) {
129
+            foreach ( $_aFieldset[ 'content' ] as &$_aNestedFieldset ) {
130 130
                 // The inline-mixed type has a string element.
131 131
                 if ( is_scalar( $_aNestedFieldset ) ) {
132 132
                     continue;
Please login to merge, or discard this patch.