Completed
Pull Request — dev (#237)
by
unknown
10:59
created
factory/meta_box/_model/AdminPageFramework_Property_post_meta_box.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @since       2.1.0       Moved from the meta box class.
36 36
      * @var string
37 37
      */     
38
-    public $sMetaBoxID ='';
38
+    public $sMetaBoxID = '';
39 39
     
40 40
     /**
41 41
      * Stores the post type slugs associated with the meta box.
@@ -138,14 +138,14 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Calls the parent constructor by formatting the parameter values.
140 140
      */
141
-    public function __construct( $oCaller, $sClassName, $sCapability='edit_posts', $sTextDomain='admin-page-framework', $sStructureType='post_meta_box' ) {
141
+    public function __construct( $oCaller, $sClassName, $sCapability = 'edit_posts', $sTextDomain = 'admin-page-framework', $sStructureType = 'post_meta_box' ) {
142 142
         
143 143
         parent::__construct( 
144
-            $oCaller,           // caller object
145
-            null,               // caller script path - meta boxes don't need the caller script path.
146
-            $sClassName,        // class name
147
-            $sCapability,       // capability
148
-            $sTextDomain,       // text domain
144
+            $oCaller, // caller object
145
+            null, // caller script path - meta boxes don't need the caller script path.
146
+            $sClassName, // class name
147
+            $sCapability, // capability
148
+            $sTextDomain, // text domain
149 149
             $sStructureType     // structure type
150 150
         ); 
151 151
      
Please login to merge, or discard this patch.
development/factory/meta_box/AdminPageFramework_MetaBox_View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         // Use nonce for verification
33 33
         $_aOutput   = array();
34
-        $_aOutput[] = wp_nonce_field(
34
+        $_aOutput[ ] = wp_nonce_field(
35 35
             $this->oProp->sMetaBoxID, 
36 36
             $this->oProp->sMetaBoxID, 
37 37
             true, 
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
                                  
41 41
         // Get the fields output. If no field is added, the form object is not instantiated.
42 42
         if ( isset( $this->oForm ) ) {
43
-            $_aOutput[] = $this->oForm->get();
43
+            $_aOutput[ ] = $this->oForm->get();
44 44
         }
45 45
 
46 46
         // Do actions
47
-        $this->oUtil->addAndDoActions( $this, 'do_' . $this->oProp->sClassName, $this );
47
+        $this->oUtil->addAndDoActions( $this, 'do_'.$this->oProp->sClassName, $this );
48 48
         
49 49
         // Render the filtered output.
50 50
         echo $this->oUtil->addAndApplyFilters(
Please login to merge, or discard this patch.
development/factory/admin_page/AdminPageFramework_Model_Menu.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * 
26 26
      * @internal
27 27
      */
28
-    public function __construct( $sOptionKey=null, $sCallerPath=null, $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
28
+    public function __construct( $sOptionKey = null, $sCallerPath = null, $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) {
29 29
         
30 30
         parent::__construct( $sOptionKey, $sCallerPath, $sCapability, $sTextDomain );
31 31
         
Please login to merge, or discard this patch.
factory/admin_page/_controller/AdminPageFramework_Link_admin_page.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 array( $this, '_replyToAddPostTypeQueryInEditPostLink' ), 
34 34
                 10, 
35 35
                 3 
36
-           );
36
+            );
37 37
         }        
38 38
     }
39 39
 
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function _replyToSetFooterInfo() {
38 38
 
39
-        if ( ! $this->oProp->isPageAdded() ) {
39
+        if ( !$this->oProp->isPageAdded() ) {
40 40
             return;
41 41
         }
42 42
         parent::_replyToSetFooterInfo();
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function _addLinkToPluginDescription( $asLinks ) {
57 57
         
58
-        if ( ! is_array( $asLinks ) ) {
59
-            $this->oProp->aPluginDescriptionLinks[] = $asLinks;
58
+        if ( !is_array( $asLinks ) ) {
59
+            $this->oProp->aPluginDescriptionLinks[ ] = $asLinks;
60 60
         } else {
61 61
             $this->oProp->aPluginDescriptionLinks = array_merge(
62 62
                 $this->oProp->aPluginDescriptionLinks,
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function _addLinkToPluginTitle( $asLinks ) {
83 83
         
84
-        if ( ! is_array( $asLinks ) ) {
85
-            $this->oProp->aPluginTitleLinks[] = $asLinks;
84
+        if ( !is_array( $asLinks ) ) {
85
+            $this->oProp->aPluginTitleLinks[ ] = $asLinks;
86 86
         } else {
87 87
             $this->oProp->aPluginTitleLinks = array_merge(
88 88
                 $this->oProp->aPluginTitleLinks,
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             }
117 117
             $_sPluginBaseName = plugin_basename( $this->oProp->aScriptInfo[ 'sPath' ] );
118 118
             add_filter(
119
-                $this->_sFilterSuffix_PluginActionLinks . $_sPluginBaseName,
119
+                $this->_sFilterSuffix_PluginActionLinks.$_sPluginBaseName,
120 120
                 array( $this, '_replyToAddPluginActionLinks' )
121 121
             );
122 122
         }
@@ -128,14 +128,14 @@  discard block
 block discarded – undo
128 128
      * @callback    filter      admin_footer_text
129 129
      * @return      string
130 130
      */
131
-    public function _replyToAddInfoInFooterLeft( $sLinkHTML='' ) {
131
+    public function _replyToAddInfoInFooterLeft( $sLinkHTML = '' ) {
132 132
 
133
-        if ( ! $this->_isPageAdded() ) {
133
+        if ( !$this->_isPageAdded() ) {
134 134
             return $sLinkHTML; // $sLinkHTML is given by the hook.
135 135
         }
136
-        $sLinkHTML  = empty( $this->oProp->aScriptInfo['sName'] )
136
+        $sLinkHTML = empty( $this->oProp->aScriptInfo[ 'sName' ] )
137 137
             ? $sLinkHTML
138
-            : $this->oProp->aFooterInfo['sLeft'];
138
+            : $this->oProp->aFooterInfo[ 'sLeft' ];
139 139
             
140 140
         $_sPageSlug = $this->oProp->getCurrentPageSlug();
141 141
         $_sTabSlug  = $this->oProp->getCurrentTabSlug();
@@ -146,11 +146,11 @@  discard block
 block discarded – undo
146 146
             array(
147 147
                 $this->getAOrB(
148 148
                     $_sTabSlug,
149
-                    'footer_left_' . $_sPageSlug . '_' . $_sTabSlug,
149
+                    'footer_left_'.$_sPageSlug.'_'.$_sTabSlug,
150 150
                     null    // will be ignored
151 151
                 ),
152
-                'footer_left_' . $_sPageSlug,
153
-                'footer_left_' . $this->oProp->sClassName,
152
+                'footer_left_'.$_sPageSlug,
153
+                'footer_left_'.$this->oProp->sClassName,
154 154
             ),
155 155
             $sLinkHTML
156 156
         );
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
      * @callback    filter      update_footer
164 164
      * @return      string
165 165
      */
166
-    public function _replyToAddInfoInFooterRight( $sLinkHTML='' ) {
166
+    public function _replyToAddInfoInFooterRight( $sLinkHTML = '' ) {
167 167
 
168
-        if ( ! $this->_isPageAdded() ) {
168
+        if ( !$this->_isPageAdded() ) {
169 169
             return $sLinkHTML; // $sLinkTHML is given by the hook.
170 170
         }
171 171
             
@@ -178,13 +178,13 @@  discard block
 block discarded – undo
178 178
             array(
179 179
                 $this->getAOrB(
180 180
                     $_sTabSlug,
181
-                    'footer_right_' . $_sPageSlug . '_' . $_sTabSlug,
181
+                    'footer_right_'.$_sPageSlug.'_'.$_sTabSlug,
182 182
                     null    // will be ignored
183 183
                 ),
184
-                'footer_right_' . $_sPageSlug,
185
-                'footer_right_' . $this->oProp->sClassName,
184
+                'footer_right_'.$_sPageSlug,
185
+                'footer_right_'.$this->oProp->sClassName,
186 186
             ),
187
-            $this->oProp->aFooterInfo['sRight']
187
+            $this->oProp->aFooterInfo[ 'sRight' ]
188 188
         );
189 189
             
190 190
     }
@@ -196,11 +196,11 @@  discard block
 block discarded – undo
196 196
          */
197 197
         private function _isPageAdded() {
198 198
             
199
-            if ( ! isset( $_GET['page'] ) ) {
199
+            if ( !isset( $_GET[ 'page' ] ) ) {
200 200
                 return false;
201 201
             }
202 202
 
203
-            return ( bool ) $this->oProp->isPageAdded( $_GET['page'] );
203
+            return ( bool ) $this->oProp->isPageAdded( $_GET[ 'page' ] );
204 204
 
205 205
         }
206 206
     /**
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             : $this->oProp->sLabelPluginSettingsLink;
222 222
 
223 223
         // If the user disables the settings link, the label property is empty. If so, do not add it.
224
-        if ( ! $this->oProp->sLabelPluginSettingsLink ) {
224
+        if ( !$this->oProp->sLabelPluginSettingsLink ) {
225 225
             return $aLinks;
226 226
         }
227 227
 
@@ -239,13 +239,13 @@  discard block
 block discarded – undo
239 239
         array_unshift(
240 240
             $aLinks,
241 241
             // '<a href="' . esc_url( $_sLinkURL ) . '">' 
242
-            '<a ' . $this->getAttributes(
242
+            '<a '.$this->getAttributes(
243 243
                 array(
244 244
                     'href'      => esc_url( $_sLinkURL ),
245 245
                     // 3.5.7+ Added for acceptance testing
246 246
                     'class'     => 'apf-plugin-title-action-link apf-post-type',
247 247
                 )
248
-            ) . '>'
248
+            ).'>'
249 249
                 . $this->oProp->sLabelPluginSettingsLink
250 250
             . '</a>'
251 251
         );
@@ -268,16 +268,16 @@  discard block
 block discarded – undo
268 268
         
269 269
         // Backward compatibility sanitisation.
270 270
         $_aAddingLinks = array();
271
-        foreach( array_filter( $this->oProp->aPluginDescriptionLinks ) as $_sLLinkHTML ) {
271
+        foreach ( array_filter( $this->oProp->aPluginDescriptionLinks ) as $_sLLinkHTML ) {
272 272
             
273
-            if ( ! $_sLLinkHTML ) {
273
+            if ( !$_sLLinkHTML ) {
274 274
                 continue;
275 275
             }
276 276
             if ( is_array( $_sLLinkHTML ) ) {  // should not be an array
277 277
                 $_aAddingLinks = array_merge( $_sLLinkHTML, $_aAddingLinks );
278 278
                 continue;
279 279
             }
280
-            $_aAddingLinks[] = ( string ) $_sLLinkHTML;
280
+            $_aAddingLinks[ ] = ( string ) $_sLLinkHTML;
281 281
             
282 282
         }
283 283
 
@@ -294,13 +294,13 @@  discard block
 block discarded – undo
294 294
     public function _replyToAddPluginActionLinks( $aLinks ) {
295 295
 
296 296
         $_aAddingLinks = array();
297
-        foreach( array_filter( $this->oProp->aPluginTitleLinks ) as $_sLinkHTML ) {
297
+        foreach ( array_filter( $this->oProp->aPluginTitleLinks ) as $_sLinkHTML ) {
298 298
 
299 299
             if ( is_array( $_sLinkHTML ) ) {
300 300
                 $_aAddingLinks = array_merge( $_sLinkHTML, $aAddingLinks );
301 301
                 continue;
302 302
             }
303
-            $_aAddingLinks[] = ( string ) $_sLinkHTML;
303
+            $_aAddingLinks[ ] = ( string ) $_sLinkHTML;
304 304
             
305 305
         }
306 306
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -273,7 +273,8 @@
 block discarded – undo
273 273
             if ( ! $_sLLinkHTML ) {
274 274
                 continue;
275 275
             }
276
-            if ( is_array( $_sLLinkHTML ) ) {  // should not be an array
276
+            if ( is_array( $_sLLinkHTML ) ) {
277
+// should not be an array
277 278
                 $_aAddingLinks = array_merge( $_sLLinkHTML, $_aAddingLinks );
278 279
                 continue;
279 280
             }
Please login to merge, or discard this patch.
delegate/validaor/AdminPageFramework_Model__FormSubmission__Validator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->oFactory = $oFactory;
31 31
         
32 32
         add_filter(
33
-            "validation_pre_" . $this->oFactory->oProp->sClassName,
33
+            "validation_pre_".$this->oFactory->oProp->sClassName,
34 34
             array( $this, '_replyToValiateUserFormInputs' ),
35 35
             10,
36 36
             4
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $_sSubmitSectionID  = $this->_getPressedSubmitButtonData( $_aSubmits, 'section_id' );
62 62
             
63 63
             // Submit Information - [3.5.0+] this will be passed to validation callback methods.
64
-            $_aSubmitsInformation        = array(
64
+            $_aSubmitsInformation = array(
65 65
                 'page_slug'     => $_sPageSlug,
66 66
                 'tab_slug'      => $_sTabSlug,
67 67
                 'input_id'      => $this->_getPressedSubmitButtonData( $_aSubmits, 'input_id' ), 
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
                 'AdminPageFramework_Model__FormSubmission__Validator__Export',
82 82
                 'AdminPageFramework_Model__FormSubmission__Validator__Reset',
83 83
                 'AdminPageFramework_Model__FormSubmission__Validator__ResetConfirm', // 3.7.6+ Moved to after validation from before validation
84
-                'AdminPageFramework_Model__FormSubmission__Validator__ContactForm',  // 3.7.6+ Moved to after validation from before validation
84
+                'AdminPageFramework_Model__FormSubmission__Validator__ContactForm', // 3.7.6+ Moved to after validation from before validation
85 85
                 'AdminPageFramework_Model__FormSubmission__Validator__ContactFormConfirm',
86 86
                 
87 87
             );
88
-            foreach( $_aClassNames as $_sClassName ) {
88
+            foreach ( $_aClassNames as $_sClassName ) {
89 89
                 new $_sClassName( $this->oFactory );
90 90
             }
91 91
             
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                 
95 95
                 $this->addAndDoActions(
96 96
                     $this->oFactory,
97
-                    'try_validation_before_' . $this->oFactory->oProp->sClassName,
97
+                    'try_validation_before_'.$this->oFactory->oProp->sClassName,
98 98
                     $aInputs,
99 99
                     $aRawInputs,
100 100
                     $_aSubmits,
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
                 $this->addAndDoActions(
115 115
                     $this->oFactory,
116
-                    'try_validation_after_' . $this->oFactory->oProp->sClassName,
116
+                    'try_validation_after_'.$this->oFactory->oProp->sClassName,
117 117
                     $aInputs,
118 118
                     $aRawInputs,
119 119
                     $_aSubmits,
Please login to merge, or discard this patch.
AdminPageFramework_Model__FormSubmission__Validator__ContactFormConfirm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function _replyToCallback( $aInputs, $aRawInputs, array $aSubmits, $aSubmitInformation, $oFactory ) {
35 35
                                 
36
-        if ( ! $this->_shouldProceed( $oFactory, $aSubmits ) ) {
36
+        if ( !$this->_shouldProceed( $oFactory, $aSubmits ) ) {
37 37
             return;
38 38
         }
39 39
         
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         );            
47 47
         
48 48
         // Go to the catch clause.
49
-        $_oException = new Exception( 'aReturn' );  // the property name to return from the catch clasue.
49
+        $_oException = new Exception( 'aReturn' ); // the property name to return from the catch clasue.
50 50
         $_oException->aReturn = $this->_confirmSubmitButtonAction( 
51 51
             $this->getElement( $aSubmitInformation, 'input_name' ), 
52 52
             $this->getElement( $aSubmitInformation, 'section_id' ), 
Please login to merge, or discard this patch.
factory/admin_page/_view/AdminPageFramework_PageLoadInfo_admin_page.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         if ( in_array( $oProp->sClassName, self::$aClassNames ) )
32 32
             return self::$_oInstance;
33 33
         
34
-        self::$aClassNames[] = $oProp->sClassName;
34
+        self::$aClassNames[ ] = $oProp->sClassName;
35 35
         self::$_oInstance = new AdminPageFramework_PageLoadInfo_Page( $oProp, $oMsg );
36 36
         
37 37
         return self::$_oInstance;
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     public static function instantiate( $oProp, $oMsg ) {
29 29
         
30
-        if ( in_array( $oProp->sClassName, self::$aClassNames ) )
31
-            return self::$_oInstance;
30
+        if ( in_array( $oProp->sClassName, self::$aClassNames ) ) {
31
+                    return self::$_oInstance;
32
+        }
32 33
         
33 34
         self::$aClassNames[] = $oProp->sClassName;
34 35
         self::$_oInstance = new AdminPageFramework_PageLoadInfo_PostType( $oProp, $oMsg );
Please login to merge, or discard this patch.
development/factory/admin_page/AdminPageFramework_View_Page.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * @return      void
65 65
      * @internal
66 66
      */ 
67
-    protected function _renderPage( $sPageSlug, $sTabSlug=null ) {
67
+    protected function _renderPage( $sPageSlug, $sTabSlug = null ) {
68 68
         $_oPageRenderer = new AdminPageFramework_View__PageRenderer( $this, $sPageSlug, $sTabSlug );
69 69
         $_oPageRenderer->render();
70 70
     }
Please login to merge, or discard this patch.
development/factory/_common/_abstract/AdminPageFramework_Factory_View.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
          * @since       3.6.0
75 75
          * @return      string
76 76
          */
77
-        public function _replyToGetFieldNameAttribute( /* $sFieldName, $aFieldset */ )  {
77
+        public function _replyToGetFieldNameAttribute( /* $sFieldName, $aFieldset */ ) {
78 78
             $_aParams = func_get_args() + array( null, null, );
79 79
             return $_aParams[ 0 ];                        
80 80
         }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
          * @return      string      the input id attribute
42 42
          */
43 43
         public function _replyToGetSectionName( /* $sSectionName, $aSectionset */ ) {
44
-            $_aParams = func_get_args() + array( null, null, );
44
+            $_aParams = func_get_args() + array( null, null,);
45 45
 
46 46
             return $_aParams[ 0 ];
47 47
         }
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
          * @since       3.6.0
73 73
          * @return      string
74 74
          */
75
-        public function _replyToGetFieldNameAttribute( /* $sFieldName, $aFieldset */ )  {
76
-            $_aParams = func_get_args() + array( null, null, );
75
+        public function _replyToGetFieldNameAttribute( /* $sFieldName, $aFieldset */ ) {
76
+            $_aParams = func_get_args() + array( null, null,);
77 77
 
78 78
             return $_aParams[ 0 ];
79 79
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
          * @return      string
85 85
          */
86 86
         public function _replyToGetFlatFieldName( /* $sFieldName, $aFieldset */ ) {
87
-            $_aParams = func_get_args() + array( null, null, );
87
+            $_aParams = func_get_args() + array( null, null,);
88 88
 
89 89
             return $_aParams[ 0 ];
90 90
         }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
          * @return      string      the flat input name attribute
109 109
          */
110 110
         public function _replyToGetFlatInputName( /* $sFlatNameAttribute, $aField, $sKey */ ) {
111
-            $_aParams   = func_get_args() + array( null, null, null );
111
+            $_aParams = func_get_args() + array( null, null, null );
112 112
 
113 113
             return $_aParams[ 0 ];
114 114
         }
@@ -152,14 +152,14 @@  discard block
 block discarded – undo
152 152
                 'if'            => true,
153 153
                 'capability'    => '',
154 154
             );
155
-            if ( ! $aElementDefinition[ 'if' ] ) {
155
+            if ( !$aElementDefinition[ 'if' ] ) {
156 156
                 return false;
157 157
             }
158 158
             // For front-end forms that allow guests, the capability level can be empty. In that case, return true.
159
-            if ( ! $aElementDefinition[ 'capability' ] ) {
159
+            if ( !$aElementDefinition[ 'capability' ] ) {
160 160
                 return true;
161 161
             }
162
-            if ( ! current_user_can( $aElementDefinition[ 'capability' ] ) ) {
162
+            if ( !current_user_can( $aElementDefinition[ 'capability' ] ) ) {
163 163
                 return false;
164 164
             }
165 165
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
             $this,
198 198
             array(
199 199
                 // section_{instantiated class name}_{section id}
200
-                'section_head_' . $this->oProp->sClassName . '_' . $aSectionset[ 'section_id' ],
200
+                'section_head_'.$this->oProp->sClassName.'_'.$aSectionset[ 'section_id' ],
201 201
             ),
202 202
             $sSectionDescription
203 203
         );
@@ -214,16 +214,16 @@  discard block
 block discarded – undo
214 214
      */
215 215
     public function _replyToGetFieldOutput( $sFieldOutput, $aFieldset ) {
216 216
 
217
-        $_sSectionPart  = $this->oUtil->getAOrB(
217
+        $_sSectionPart = $this->oUtil->getAOrB(
218 218
             isset( $aFieldset[ 'section_id' ] ) && '_default' !== $aFieldset[ 'section_id' ],
219
-            '_' . $aFieldset[ 'section_id' ],
219
+            '_'.$aFieldset[ 'section_id' ],
220 220
             ''
221 221
         );
222 222
 
223 223
         return $this->oUtil->addAndApplyFilters(
224 224
             $this,
225 225
             array(
226
-                'field_' . $this->oProp->sClassName . $_sSectionPart . '_' . $aFieldset[ 'field_id' ],
226
+                'field_'.$this->oProp->sClassName.$_sSectionPart.'_'.$aFieldset[ 'field_id' ],
227 227
             ),
228 228
             $sFieldOutput,
229 229
             $aFieldset // the field array
Please login to merge, or discard this patch.