Completed
Branch master (bf4987)
by Michael
03:55
created
development/factory/post_type/AdminPageFramework_PostType_Router.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * @subpackage      PostType
17 17
  * @internal
18 18
  */
19
-abstract class AdminPageFramework_PostType_Router extends AdminPageFramework_Factory {    
19
+abstract class AdminPageFramework_PostType_Router extends AdminPageFramework_Factory {
20 20
   
21 21
     /**
22 22
      * Determines whether the currently loaded page is of the post type page.
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function _replyToDetermineToLoadAdmin( /* $oScreen */ ) {
45 45
 
46
-        if ( ! $this->_isInThePage() ) {
46
+        if ( !$this->_isInThePage() ) {
47 47
             return;
48 48
         }
49 49
 
50 50
         $this->_load(
51 51
             array(
52 52
                 "load_{$this->oProp->sPostType}",
53
-                "load_{$this->oProp->sClassName}",  // 3.8.14+
53
+                "load_{$this->oProp->sClassName}", // 3.8.14+
54 54
             )
55 55
         );
56 56
     
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     protected function _isInThePage() {
109 109
 
110 110
         // If it's not in one of the post type's pages
111
-        if ( ! $this->oProp->bIsAdmin ) {
111
+        if ( !$this->oProp->bIsAdmin ) {
112 112
             return false;
113 113
         }
114 114
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
             return true;
118 118
         }        
119 119
         
120
-        if ( ! in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'term.php', 'post.php', 'post-new.php' ) ) ) {
120
+        if ( !in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'term.php', 'post.php', 'post-new.php' ) ) ) {
121 121
             return false;
122 122
         }
123 123
                 
Please login to merge, or discard this patch.
development/factory/taxonomy_field/AdminPageFramework_TaxonomyField.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */ 
49 49
     function __construct( $asTaxonomySlug, $sOptionKey='', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
50 50
         
51
-        if ( empty( $asTaxonomySlug ) ) { 
51
+        if ( empty( $asTaxonomySlug ) ) {
52 52
             // @todo trigger a PHP warning
53 53
             return; 
54 54
         }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @param       string          The text domain. Default: `admin-page-framework`.
47 47
      * @return      void
48 48
      */ 
49
-    function __construct( $asTaxonomySlug, $sOptionKey='', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
49
+    function __construct( $asTaxonomySlug, $sOptionKey = '', $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) {
50 50
         
51 51
         if ( empty( $asTaxonomySlug ) ) { 
52 52
             return; 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         // Properties 
56 56
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
57 57
             ? $this->aSubClassNames[ 'oProp' ]
58
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
58
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
59 59
         $this->oProp        = new $_sProprtyClassName( 
60 60
             $this, 
61 61
             get_class( $this ), 
Please login to merge, or discard this patch.
factory/taxonomy_field/AdminPageFramework_TaxonomyField_Model.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
         return $this->_getFilteredColumnsByFilterPrefix( 
55 55
             $this->oUtil->getAsArray( $aColumns ), 
56 56
             'columns_', 
57
-            isset( $_GET['taxonomy'] )  // in ajax, $_GET is not even set.
58
-                ? $_GET['taxonomy']
57
+            isset( $_GET[ 'taxonomy' ] )  // in ajax, $_GET is not even set.
58
+                ? $_GET[ 'taxonomy' ]
59 59
                 : ''
60 60
         );        
61 61
     }
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
         return $this->_getFilteredColumnsByFilterPrefix( 
73 73
             $this->oUtil->getAsArray( $aSortableColumns ), 
74 74
             'sortable_columns_', 
75
-            isset( $_GET['taxonomy'] )  // in ajax, $_GET is not even set.
76
-                ? $_GET['taxonomy']
75
+            isset( $_GET[ 'taxonomy' ] )  // in ajax, $_GET is not even set.
76
+                ? $_GET[ 'taxonomy' ]
77 77
                 : ''
78 78
         );
79 79
     }   
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             if ( $sTaxonomy ) {
88 88
                 $aColumns = $this->oUtil->addAndApplyFilter(
89 89
                     $this, 
90
-                    "{$sFilterPrefix}{$_GET['taxonomy']}",
90
+                    "{$sFilterPrefix}{$_GET[ 'taxonomy' ]}",
91 91
                     $aColumns
92 92
                 );
93 93
             }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      * @since       DEVVER      No longer sets the value to `$this-oProp->aOptions` but to the form peoperty.
125 125
      * @internal
126 126
      */
127
-    protected function _setOptionArray( $iTermID=null, $sOptionKey ) {
127
+    protected function _setOptionArray( $iTermID = null, $sOptionKey ) {
128 128
         $this->oForm->aSavedData = $this->_getSavedFormData( 
129 129
             $iTermID, 
130 130
             $sOptionKey
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             
141 141
             return $this->oUtil->addAndApplyFilter(
142 142
                 $this, // the caller factory object
143
-                'options_' . $this->oProp->sClassName,
143
+                'options_'.$this->oProp->sClassName,
144 144
                 $this->_getSavedTermFormData( $iTermID, $sOptionKey )
145 145
                 // @todo maybe pass the term id because the user will not know whihch form data is
146 146
             );
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      */
175 175
     public function _replyToValidateOptions( $iTermID ) {
176 176
 
177
-        if ( ! $this->_shouldProceedValidation() ) {
177
+        if ( !$this->_shouldProceedValidation() ) {
178 178
             return;
179 179
         }              
180 180
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
         $_aSubmittedFormData    = $this->oForm->getSubmittedData( $_POST ); 
184 184
         $_aSubmittedFormData    = $this->oUtil->addAndApplyFilters( 
185 185
             $this, 
186
-            'validation_' . $this->oProp->sClassName, 
186
+            'validation_'.$this->oProp->sClassName, 
187 187
             call_user_func_array( 
188 188
                 array( $this, 'validate' ), // triggers __call()
189 189
                 array( $_aSubmittedFormData, $_aSavedFormData, $this )
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
         
195 195
         // @todo Examine whether it is appropriate to merge recursivly 
196 196
         // as some fields will have a problem such as select with multiple options.
197
-        $_aTaxonomyFormData[ $iTermID ]  = $this->oUtil->uniteArrays( 
197
+        $_aTaxonomyFormData[ $iTermID ] = $this->oUtil->uniteArrays( 
198 198
             $_aSubmittedFormData, 
199 199
             $_aSavedFormData 
200 200
         );
@@ -215,11 +215,11 @@  discard block
 block discarded – undo
215 215
          */        
216 216
         private 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;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
          */        
216 216
         private 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
             }
Please login to merge, or discard this patch.
factory/taxonomy_field/AdminPageFramework_TaxonomyField_View.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         return "{$_aField['field_id']}{$_sKey}";
70 70
     }
71 71
 
72
-   /**
72
+    /**
73 73
      * Adds input fields
74 74
      * 
75 75
      * @internal
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             '',
49 49
             "[{$_sKey}]"
50 50
         );        
51
-        return $_aField['field_id'] . $_sKey; 
51
+        return $_aField[ 'field_id' ].$_sKey; 
52 52
         
53 53
     }
54 54
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             '',
67 67
             "|{$_sKey}"
68 68
         );
69
-        return "{$_aField['field_id']}{$_sKey}";
69
+        return "{$_aField[ 'field_id' ]}{$_sKey}";
70 70
     }
71 71
 
72 72
    /**
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             $_aOutput = array();
117 117
             
118 118
             // Set nonce.           
119
-            $_aOutput[] = wp_nonce_field( 
119
+            $_aOutput[ ] = wp_nonce_field( 
120 120
                 $this->oProp->sClassHash, 
121 121
                 $this->oProp->sClassHash, 
122 122
                 true, 
@@ -127,17 +127,17 @@  discard block
 block discarded – undo
127 127
             $this->_setOptionArray( $iTermID, $this->oProp->sOptionKey );
128 128
             
129 129
             // Get the field outputs
130
-            $_aOutput[] = $this->oForm->get( $bRenderTableRow );
130
+            $_aOutput[ ] = $this->oForm->get( $bRenderTableRow );
131 131
             
132 132
             // Filter the output
133 133
             $_sOutput = $this->oUtil->addAndApplyFilters( 
134 134
                 $this, 
135
-                'content_' . $this->oProp->sClassName, 
135
+                'content_'.$this->oProp->sClassName, 
136 136
                 $this->content( implode( PHP_EOL, $_aOutput ) )
137 137
             );
138 138
 
139 139
             // Do action 
140
-            $this->oUtil->addAndDoActions( $this, 'do_' . $this->oProp->sClassName, $this );
140
+            $this->oUtil->addAndDoActions( $this, 'do_'.$this->oProp->sClassName, $this );
141 141
 
142 142
             return $_sOutput;
143 143
                        
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
     public function _replyToPrintColumnCell( $vValue, $sColumnSlug, $sTermID ) {
157 157
         
158 158
         $_sCellHTML = '';
159
-        if ( isset( $_GET['taxonomy'] ) && $_GET['taxonomy'] ) {
160
-            $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$_GET['taxonomy']}", $vValue, $sColumnSlug, $sTermID );
159
+        if ( isset( $_GET[ 'taxonomy' ] ) && $_GET[ 'taxonomy' ] ) {
160
+            $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$_GET[ 'taxonomy' ]}", $vValue, $sColumnSlug, $sTermID );
161 161
         }
162 162
         $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$this->oProp->sClassName}", $_sCellHTML, $sColumnSlug, $sTermID );
163 163
         $_sCellHTML = $this->oUtil->addAndApplyFilter( $this, "cell_{$this->oProp->sClassName}_{$sColumnSlug}", $_sCellHTML, $sTermID ); // 3.0.2+
Please login to merge, or discard this patch.
factory/taxonomy_field/form/AdminPageFramework_Form_taxonomy_field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             '' // default value
38 38
         );    
39 39
     
40
-        if ( ! $this->canUserView( $this->sCapability ) ) {
40
+        if ( !$this->canUserView( $this->sCapability ) ) {
41 41
             return '';
42 42
         }    
43 43
 
Please login to merge, or discard this patch.
development/factory/user_meta/AdminPageFramework_UserMeta_Controller.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * 
67 67
      * @since 3.5.0
68 68
      */
69
-    public function enqueueStyles( $aSRCs, $aPostTypes=array(), $aCustomArgs=array() ) {
69
+    public function enqueueStyles( $aSRCs, $aPostTypes = array(), $aCustomArgs = array() ) {
70 70
         return $this->oResource->_enqueueStyles( $aSRCs, $aPostTypes, $aCustomArgs );
71 71
     }
72 72
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @param       array       (optional) The argument array for more advanced parameters.
90 90
      * @return      string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
91 91
      */    
92
-    public function enqueueStyle( $sSRC, $aPostTypes=array(), $aCustomArgs=array() ) {
92
+    public function enqueueStyle( $sSRC, $aPostTypes = array(), $aCustomArgs = array() ) {
93 93
         return $this->oResource->_enqueueStyle( $sSRC, $aPostTypes, $aCustomArgs );     
94 94
     }
95 95
     /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * 
98 98
      * @since 3.5.0
99 99
      */
100
-    public function enqueueScripts( $aSRCs, $aPostTypes=array(), $aCustomArgs=array() ) {
100
+    public function enqueueScripts( $aSRCs, $aPostTypes = array(), $aCustomArgs = array() ) {
101 101
         return $this->oResource->_enqueueScripts( $aSRCs, $aPostTypes, $aCustomArgs );
102 102
     }    
103 103
     /**
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * @param       array       (optional) The argument array for more advanced parameters.
133 133
      * @return      string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
134 134
      */
135
-    public function enqueueScript( $sSRC, $aPostTypes=array(), $aCustomArgs=array() ) {    
135
+    public function enqueueScript( $sSRC, $aPostTypes = array(), $aCustomArgs = array() ) {    
136 136
         return $this->oResource->_enqueueScript( $sSRC, $aPostTypes, $aCustomArgs );
137 137
     }    
138 138
         
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      * @param       array       (optional) The argument array for more advanced parameters.
133 133
      * @return      string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
134 134
      */
135
-    public function enqueueScript( $sSRC, $aPostTypes=array(), $aCustomArgs=array() ) {    
135
+    public function enqueueScript( $sSRC, $aPostTypes=array(), $aCustomArgs=array() ) {
136 136
         return $this->oResource->_enqueueScript( $sSRC, $aPostTypes, $aCustomArgs );
137 137
     }    
138 138
         
Please login to merge, or discard this patch.
development/factory/user_meta/AdminPageFramework_UserMeta_Model.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -63,21 +63,21 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function _replyToSaveFieldValues( $iUserID ) {
65 65
 
66
-        if ( ! current_user_can( 'edit_user', $iUserID ) ) {
66
+        if ( !current_user_can( 'edit_user', $iUserID ) ) {
67 67
             return;
68 68
         }
69 69
 
70 70
         // Extract the fields data from $_POST
71 71
         // Retrieve the submitted data. 
72
-        $_aInputs       = $this->oForm->getSubmittedData(
73
-            $_POST,     // subject data to be parsed
74
-            true,       // extract data with the fieldset structure
72
+        $_aInputs = $this->oForm->getSubmittedData(
73
+            $_POST, // subject data to be parsed
74
+            true, // extract data with the fieldset structure
75 75
             false       // strip slashes
76 76
         );
77
-        $_aInputsRaw    = $_aInputs; // store one for the last input array.
77
+        $_aInputsRaw = $_aInputs; // store one for the last input array.
78 78
         
79 79
         // Prepare the saved data. For a new post, the id is set to 0.
80
-        $_aSavedMeta   = $this->oUtil->getSavedUserMetaArray( $iUserID, array_keys( $_aInputs ) );
80
+        $_aSavedMeta = $this->oUtil->getSavedUserMetaArray( $iUserID, array_keys( $_aInputs ) );
81 81
         
82 82
         // Apply filters to the array of the submitted values.
83 83
         $_aInputs = $this->oUtil->addAndApplyFilters( 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
         }
98 98
                             
99 99
         $this->oForm->updateMetaDataByType( 
100
-            $iUserID,  // object id
101
-            $_aInputs,  // user submit form data
100
+            $iUserID, // object id
101
+            $_aInputs, // user submit form data
102 102
             $this->oForm->dropRepeatableElements( $_aSavedMeta ), // Drop repeatable section elements from the saved meta array.
103 103
             $this->oForm->sStructureType   // fields type
104 104
         );            
Please login to merge, or discard this patch.
development/factory/user_meta/AdminPageFramework_UserMeta_View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,17 +45,17 @@
 block discarded – undo
45 45
         $_aOutput = array();
46 46
 
47 47
         // Get the field outputs
48
-        $_aOutput[] = $this->oForm->get();
48
+        $_aOutput[ ] = $this->oForm->get();
49 49
         
50 50
         // Filter the output
51 51
         $_sOutput = $this->oUtil->addAndApplyFilters( 
52 52
             $this, 
53
-            'content_' . $this->oProp->sClassName, 
53
+            'content_'.$this->oProp->sClassName, 
54 54
             $this->content( implode( PHP_EOL, $_aOutput ) )
55 55
         );
56 56
 
57 57
         // Do action 
58
-        $this->oUtil->addAndDoActions( $this, 'do_' . $this->oProp->sClassName, $this );       
58
+        $this->oUtil->addAndDoActions( $this, 'do_'.$this->oProp->sClassName, $this );       
59 59
 
60 60
         // Output
61 61
         echo $_sOutput;    
Please login to merge, or discard this patch.
development/factory/widget/AdminPageFramework_Widget.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @package     AdminPageFramework
16 16
  * @subpackage  Widget
17 17
  */
18
-abstract class AdminPageFramework_Widget extends AdminPageFramework_Widget_Controller {    
18
+abstract class AdminPageFramework_Widget extends AdminPageFramework_Widget_Controller {
19 19
        
20 20
     /**
21 21
      * Defines the class object structure type.
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     */
45 45
     public function __construct( $sWidgetTitle, $aWidgetArguments=array(), $sCapability='edit_theme_options', $sTextDomain='admin-page-framework' ) {
46 46
         
47
-        if ( empty( $sWidgetTitle ) ) { 
47
+        if ( empty( $sWidgetTitle ) ) {
48 48
             return; 
49 49
         }
50 50
      
Please login to merge, or discard this patch.
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -25,19 +25,19 @@
 block discarded – undo
25 25
     static protected $_sFieldsType = 'widget';
26 26
        
27 27
     /**
28
-    * The constructor of the class object.
29
-    * 
30
-    * Registers necessary hooks and sets up internal properties.
31
-    * 
32
-    * <h4>Example</h4>
33
-    * <code>
34
-    *   new APF_Widget( __( 'Admin Page Framework', 'admin-page-framework-demo' ) );  // the widget title
35
-    *   new APF_Widget_CustomFieldTypes( __( 'APF - Advanced', 'admin-page-framework-demo' ) );
36
-    *   new APF_Widget_Example( __( 'APF - GitHub Button', 'admin-page-framework-demo' ) );
37
-    * </code>
38
-    * 
39
-    * @return void
40
-    */
28
+     * The constructor of the class object.
29
+     * 
30
+     * Registers necessary hooks and sets up internal properties.
31
+     * 
32
+     * <h4>Example</h4>
33
+     * <code>
34
+     *   new APF_Widget( __( 'Admin Page Framework', 'admin-page-framework-demo' ) );  // the widget title
35
+     *   new APF_Widget_CustomFieldTypes( __( 'APF - Advanced', 'admin-page-framework-demo' ) );
36
+     *   new APF_Widget_Example( __( 'APF - GitHub Button', 'admin-page-framework-demo' ) );
37
+     * </code>
38
+     * 
39
+     * @return void
40
+     */
41 41
     public function __construct( $sWidgetTitle, $aWidgetArguments=array(), $sCapability='edit_theme_options', $sTextDomain='admin-page-framework' ) {
42 42
         
43 43
         if ( empty( $sWidgetTitle ) ) { 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     * 
43 43
     * @return void
44 44
     */
45
-    public function __construct( $sWidgetTitle, $aWidgetArguments=array(), $sCapability='edit_theme_options', $sTextDomain='admin-page-framework' ) {
45
+    public function __construct( $sWidgetTitle, $aWidgetArguments = array(), $sCapability = 'edit_theme_options', $sTextDomain = 'admin-page-framework' ) {
46 46
         
47 47
         if ( empty( $sWidgetTitle ) ) { 
48 48
             return; 
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
         // Properties
52 52
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
53 53
             ? $this->aSubClassNames[ 'oProp' ]
54
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
54
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
55 55
         $this->oProp        = new $_sProprtyClassName(
56
-            $this,                  // caller object
57
-            null,                   // the caller script path
58
-            get_class( $this ),     // class name
59
-            $sCapability,           // capability 
60
-            $sTextDomain,           // text domain
56
+            $this, // caller object
57
+            null, // the caller script path
58
+            get_class( $this ), // class name
59
+            $sCapability, // capability 
60
+            $sTextDomain, // text domain
61 61
             $this->_sStructureType  // fields type
62 62
         );
63 63
         
Please login to merge, or discard this patch.