@@ -16,9 +16,9 @@ discard block |
||
16 | 16 | */ |
17 | 17 | class AdminPageFrameworkLoader_Registry_Base { |
18 | 18 | |
19 | - const VERSION = '3.8.27'; // <--- DON'T FORGET TO CHANGE THIS AS WELL!! |
|
19 | + const VERSION = '3.8.27'; // <--- DON'T FORGET TO CHANGE THIS AS WELL!! |
|
20 | 20 | const NAME = 'Admin Page Framework - Loader'; // the name is not 'Admin Page Framework' because warning messages gets confusing. |
21 | - const SHORTNAME = 'Admin Page Framework'; // used for a menu title etc. |
|
21 | + const SHORTNAME = 'Admin Page Framework'; // used for a menu title etc. |
|
22 | 22 | const DESCRIPTION = 'Loads Admin Page Framework which facilitates WordPress plugin and theme development.'; |
23 | 23 | const URI = 'http://admin-page-framework.michaeluno.jp/'; |
24 | 24 | const AUTHOR = 'miunosoft (Michael Uno)'; |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | * @remark This is also accessed from `uninstall.php` so do not remove. |
56 | 56 | * @remark Do not exceed 8 characters as a transient name allows 45 characters or less ( 40 for site transients ) so that md5 (32 characters) can be added. |
57 | 57 | */ |
58 | - const TRANSIENT_PREFIX = 'APFL_'; |
|
58 | + const TRANSIENT_PREFIX = 'APFL_'; |
|
59 | 59 | |
60 | 60 | /** |
61 | 61 | * The hook slug used for the prefix of action and filter hook names. |
62 | 62 | * |
63 | 63 | * @remark The ending underscore is not necessary. |
64 | 64 | */ |
65 | - const HOOK_SLUG = 'admin_page_framework_loader'; |
|
65 | + const HOOK_SLUG = 'admin_page_framework_loader'; |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * The text domain slug and its path. |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | static public $aAdminPages = array( |
118 | 118 | // key => 'page slug' |
119 | - 'about' => 'apfl_about', // the welcome page |
|
119 | + 'about' => 'apfl_about', // the welcome page |
|
120 | 120 | 'addon' => 'apfl_addons', |
121 | 121 | 'tool' => 'apfl_tools', |
122 | 122 | 'help' => 'apfl_contact', |
@@ -154,12 +154,12 @@ discard block |
||
154 | 154 | * @since 3.5.0 |
155 | 155 | * @return string |
156 | 156 | */ |
157 | - public static function getPluginURL( $sRelativePath='' ) { |
|
157 | + public static function getPluginURL( $sRelativePath = '' ) { |
|
158 | 158 | if ( isset( self::$_sPluginURLCache ) ) { |
159 | - return self::$_sPluginURLCache . $sRelativePath; |
|
159 | + return self::$_sPluginURLCache.$sRelativePath; |
|
160 | 160 | } |
161 | 161 | self::$_sPluginURLCache = trailingslashit( plugins_url( '', self::$sFilePath ) ); |
162 | - return self::$_sPluginURLCache . $sRelativePath; |
|
162 | + return self::$_sPluginURLCache.$sRelativePath; |
|
163 | 163 | } |
164 | 164 | /** |
165 | 165 | * @since 3.7.9 |
@@ -189,13 +189,13 @@ discard block |
||
189 | 189 | * @since 3.5.0 |
190 | 190 | * @return void |
191 | 191 | */ |
192 | - static public function setAdminNotice( $sMessage, $sClassAttribute='error' ) { |
|
193 | - if ( ! is_admin() ) { |
|
192 | + static public function setAdminNotice( $sMessage, $sClassAttribute = 'error' ) { |
|
193 | + if ( !is_admin() ) { |
|
194 | 194 | return; |
195 | 195 | } |
196 | - self::$_aAdminNotices[] = array( |
|
196 | + self::$_aAdminNotices[ ] = array( |
|
197 | 197 | 'message' => $sMessage, |
198 | - 'class_attribute' => trim( $sClassAttribute ) . ' notice is-dismissible', |
|
198 | + 'class_attribute' => trim( $sClassAttribute ).' notice is-dismissible', |
|
199 | 199 | ); |
200 | 200 | add_action( 'admin_notices', array( __CLASS__, '_replyToSetAdminNotice' ) ); |
201 | 201 | } |
@@ -205,12 +205,12 @@ discard block |
||
205 | 205 | * @return void |
206 | 206 | */ |
207 | 207 | static public function _replyToSetAdminNotice() { |
208 | - foreach( self::$_aAdminNotices as $_aAdminNotice ) { |
|
209 | - echo "<div class='" . esc_attr( $_aAdminNotice['class_attribute'] ) . " notice is-dismissible'>" |
|
208 | + foreach ( self::$_aAdminNotices as $_aAdminNotice ) { |
|
209 | + echo "<div class='".esc_attr( $_aAdminNotice[ 'class_attribute' ] )." notice is-dismissible'>" |
|
210 | 210 | ."<p>" |
211 | 211 | . sprintf( |
212 | - '<strong>%1$s</strong>: ' . $_aAdminNotice['message'], |
|
213 | - self::NAME . ' ' . self::VERSION |
|
212 | + '<strong>%1$s</strong>: '.$_aAdminNotice[ 'message' ], |
|
213 | + self::NAME.' '.self::VERSION |
|
214 | 214 | ) |
215 | 215 | . "</p>" |
216 | 216 | . "</div>"; |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | AdminPageFrameworkLoader_Registry::setUp( __FILE__ ); |
223 | 223 | |
224 | 224 | // Initial checks. - Do no load if accessed directly, not exiting because the 'uninstall.php' and inclusion list generator will load this file. |
225 | -if ( ! defined( 'ABSPATH' ) ) { |
|
225 | +if ( !defined( 'ABSPATH' ) ) { |
|
226 | 226 | return; |
227 | 227 | } |
228 | 228 | if ( defined( 'DOING_UNINSTALL' ) && DOING_UNINSTALL ) { |
@@ -234,8 +234,8 @@ discard block |
||
234 | 234 | |
235 | 235 | $_bFrameworkLoaded = class_exists( 'AdminPageFramework_Registry', false ); |
236 | 236 | if ( |
237 | - ! $_bFrameworkLoaded |
|
238 | - || ! defined( 'AdminPageFramework_Registry::VERSION' ) // backward compatibility |
|
237 | + !$_bFrameworkLoaded |
|
238 | + || !defined( 'AdminPageFramework_Registry::VERSION' ) // backward compatibility |
|
239 | 239 | || version_compare( AdminPageFramework_Registry::VERSION, AdminPageFrameworkLoader_Registry::VERSION, '<' ) |
240 | 240 | ) { |
241 | 241 | AdminPageFrameworkLoader_Registry::setAdminNotice( |
@@ -253,18 +253,18 @@ discard block |
||
253 | 253 | add_action( 'admin_init', 'AdminPageFrameworkLoader_Warning' ); |
254 | 254 | |
255 | 255 | // Include the library file - the development version will be available if you cloned the GitHub repository. |
256 | -$_sDevelopmentVersionPath = AdminPageFrameworkLoader_Registry::$sDirPath . '/development/admin-page-framework.php'; |
|
256 | +$_sDevelopmentVersionPath = AdminPageFrameworkLoader_Registry::$sDirPath.'/development/admin-page-framework.php'; |
|
257 | 257 | $_bDebugMode = defined( 'WP_DEBUG' ) && WP_DEBUG; |
258 | 258 | $_bLoadDevelopmentVersion = $_bDebugMode && file_exists( $_sDevelopmentVersionPath ); |
259 | 259 | include( |
260 | 260 | $_bLoadDevelopmentVersion |
261 | 261 | ? $_sDevelopmentVersionPath |
262 | - : AdminPageFrameworkLoader_Registry::$sDirPath . '/library/apf/admin-page-framework.php' |
|
262 | + : AdminPageFrameworkLoader_Registry::$sDirPath.'/library/apf/admin-page-framework.php' |
|
263 | 263 | ); |
264 | 264 | |
265 | 265 | // Include the framework loader plugin components. |
266 | 266 | include( AdminPageFramework_Registry::$aClassFiles[ 'AdminPageFramework_PluginBootstrap' ] ); |
267 | -include( AdminPageFrameworkLoader_Registry::$sDirPath . '/include/class/AdminPageFrameworkLoader_Bootstrap.php' ); |
|
267 | +include( AdminPageFrameworkLoader_Registry::$sDirPath.'/include/class/AdminPageFrameworkLoader_Bootstrap.php' ); |
|
268 | 268 | new AdminPageFrameworkLoader_Bootstrap( |
269 | 269 | AdminPageFrameworkLoader_Registry::$sFilePath, |
270 | 270 | AdminPageFrameworkLoader_Registry::HOOK_SLUG // hook prefix |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | * @since 3.8.24 |
26 | 26 | */ |
27 | 27 | static public function getHTTPRequestSanitized( array $aRequest, $bStripSlashes ) { |
28 | - foreach( $aRequest as $_isIndex => $_mValue ) { |
|
28 | + foreach ( $aRequest as $_isIndex => $_mValue ) { |
|
29 | 29 | if ( is_array( $_mValue ) ) { |
30 | - $aRequest[ $_isIndex ] = self::getHTTPRequestSanitized( $_mValue, false ); // do not double-strip |
|
30 | + $aRequest[ $_isIndex ] = self::getHTTPRequestSanitized( $_mValue, false ); // do not double-strip |
|
31 | 31 | continue; |
32 | 32 | } |
33 | 33 | if ( is_string( $_mValue ) ) { |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | * @sicne 3.8.25 |
48 | 48 | * @see _sanitize_text_fields() |
49 | 49 | */ |
50 | - static private function ___getHTTPRequestTextValueSanitized( $sString, $bKeepLineFeeds=true ) { |
|
50 | + static private function ___getHTTPRequestTextValueSanitized( $sString, $bKeepLineFeeds = true ) { |
|
51 | 51 | |
52 | 52 | $_sFiltered = wp_check_invalid_utf8( $sString ); |
53 | - if ( ! $bKeepLineFeeds ) { |
|
53 | + if ( !$bKeepLineFeeds ) { |
|
54 | 54 | $_sFiltered = preg_replace( '/[\r\n\t ]+/', ' ', $_sFiltered ); |
55 | 55 | } |
56 | 56 | $_sFiltered = trim( $_sFiltered ); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * @return mixed |
100 | 100 | * @since 3.8.24 |
101 | 101 | */ |
102 | - static public function getObjectCache( $asName, $mDefault=null ) { |
|
102 | + static public function getObjectCache( $asName, $mDefault = null ) { |
|
103 | 103 | return self::getArrayValueByArrayKeys( self::$___aObjectCache, self::getAsArray( $asName ), $mDefault ); |
104 | 104 | } |
105 | 105 | |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | * @param string $sProgramName |
115 | 115 | * @since 3.8.8 |
116 | 116 | */ |
117 | - static public function showDeprecationNotice( $sDeprecated, $sAlternative='', $sProgramName='Admin Page Framework' ) { |
|
117 | + static public function showDeprecationNotice( $sDeprecated, $sAlternative = '', $sProgramName = 'Admin Page Framework' ) { |
|
118 | 118 | trigger_error( |
119 | - $sProgramName . ': ' . sprintf( |
|
119 | + $sProgramName.': '.sprintf( |
|
120 | 120 | $sAlternative |
121 | 121 | ? '<code>%1$s</code> has been deprecated. Use <code>%2$s</code> instead.' |
122 | 122 | : '<code>%1$s</code> has been deprecated.', |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * @param string|array $asParameters Parameters to pass to the callback function. |
140 | 140 | * @return mixed |
141 | 141 | */ |
142 | - public function callBack( $oCallable, $asParameters=array() ) { |
|
143 | - $_aParameters = self::getAsArray( |
|
142 | + public function callBack( $oCallable, $asParameters = array() ) { |
|
143 | + $_aParameters = self::getAsArray( |
|
144 | 144 | $asParameters, |
145 | 145 | true // preserve empty |
146 | 146 | ); |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @param array $aParameters |
180 | 180 | * @return string The captured output buffer. |
181 | 181 | */ |
182 | - static public function getOutputBuffer( $cCallable, array $aParameters=array() ) { |
|
182 | + static public function getOutputBuffer( $cCallable, array $aParameters = array() ) { |
|
183 | 183 | |
184 | 184 | ob_start(); |
185 | 185 | echo call_user_func_array( $cCallable, $aParameters ); |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | |
202 | 202 | $_iCount = count( get_object_vars( $oInstance ) ); |
203 | 203 | $_sClassName = get_class( $oInstance ); |
204 | - return '(object) ' . $_sClassName . ': ' . $_iCount . ' properties.'; |
|
204 | + return '(object) '.$_sClassName.': '.$_iCount.' properties.'; |
|
205 | 205 | |
206 | 206 | } |
207 | 207 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @param boolean|integer|double|string|array|object|resource|NULL $mFalse The value to return when the first parameter value yields false. |
219 | 219 | * @return mixed |
220 | 220 | */ |
221 | - static public function getAOrB( $mValue, $mTrue=null, $mFalse=null ) { |
|
221 | + static public function getAOrB( $mValue, $mTrue = null, $mFalse = null ) { |
|
222 | 222 | return $mValue ? $mTrue : $mFalse; |
223 | 223 | } |
224 | 224 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | class AdminPageFramework_Form_Model___DefaultValues extends AdminPageFramework_Form_Base { |
18 | 18 | |
19 | - public $aFieldsets = array(); |
|
19 | + public $aFieldsets = array(); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * Sets up hooks. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $_aParameters = func_get_args() + array( |
28 | 28 | $this->aFieldsets, |
29 | 29 | ); |
30 | - $this->aFieldsets = $_aParameters[ 0 ]; |
|
30 | + $this->aFieldsets = $_aParameters[ 0 ]; |
|
31 | 31 | |
32 | 32 | } |
33 | 33 | |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @return array |
81 | 81 | */ |
82 | 82 | private function ___getDefaultValues( $aFieldsets, $aDefaultOptions ) { |
83 | - foreach( $aFieldsets as $_sSectionPath => $_aItems ) { |
|
83 | + foreach ( $aFieldsets as $_sSectionPath => $_aItems ) { |
|
84 | 84 | $_aSectionPath = explode( '|', $_sSectionPath ); |
85 | - foreach( $_aItems as $_sFieldPath => $_aFieldset ) { |
|
85 | + foreach ( $_aItems as $_sFieldPath => $_aFieldset ) { |
|
86 | 86 | $_aFieldPath = explode( '|', $_sFieldPath ); |
87 | 87 | $this->setMultiDimensionalArray( |
88 | - $aDefaultOptions, // by reference |
|
88 | + $aDefaultOptions, // by reference |
|
89 | 89 | '_default' === $_sSectionPath |
90 | 90 | ? array( $_sFieldPath ) |
91 | 91 | : array_merge( $_aSectionPath, $_aFieldPath ), // key address |
@@ -114,11 +114,11 @@ discard block |
||
114 | 114 | // If there are no sub-fields |
115 | 115 | if ( count( $_aSubFields ) === 0 ) { |
116 | 116 | return $this->getElement( |
117 | - $aFieldset, // subject |
|
118 | - 'value', // key |
|
117 | + $aFieldset, // subject |
|
118 | + 'value', // key |
|
119 | 119 | $this->getElement( // default value |
120 | - $aFieldset, // subject |
|
121 | - 'default', // key |
|
120 | + $aFieldset, // subject |
|
121 | + 'default', // key |
|
122 | 122 | null // default value |
123 | 123 | ) |
124 | 124 | ); |
@@ -127,13 +127,13 @@ discard block |
||
127 | 127 | // Otherwise, there are sub-fields |
128 | 128 | $_aDefault = array(); |
129 | 129 | array_unshift( $_aSubFields, $aFieldset ); // insert the main field into the very first index. |
130 | - foreach( $_aSubFields as $_iIndex => $_aField ) { |
|
130 | + foreach ( $_aSubFields as $_iIndex => $_aField ) { |
|
131 | 131 | $_aDefault[ $_iIndex ] = $this->getElement( |
132 | - $_aField, // subject |
|
133 | - 'value', // key |
|
132 | + $_aField, // subject |
|
133 | + 'value', // key |
|
134 | 134 | $this->getElement( // default value |
135 | - $_aField, // subject |
|
136 | - 'default', // key |
|
135 | + $_aField, // subject |
|
136 | + 'default', // key |
|
137 | 137 | null // default value |
138 | 138 | ) |
139 | 139 | ); |
@@ -93,18 +93,18 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | // If the section ID is not registered, return false. |
96 | - if ( ! array_key_exists( $sID, $this->aSectionsets ) ) { |
|
96 | + if ( !array_key_exists( $sID, $this->aSectionsets ) ) { |
|
97 | 97 | return false; |
98 | 98 | } |
99 | 99 | |
100 | 100 | // the fields array's first dimension is also filled with the keys of section ids. |
101 | - if ( ! array_key_exists( $sID, $this->aFieldsets ) ) { |
|
101 | + if ( !array_key_exists( $sID, $this->aFieldsets ) ) { |
|
102 | 102 | return false; |
103 | 103 | } |
104 | 104 | |
105 | 105 | // Since numeric IDs are denied at the beginning of the method, the elements will not be sub-sections. |
106 | 106 | $_bIsSection = false; |
107 | - foreach( $this->aFieldsets as $_sSectionID => $_aFields ) { |
|
107 | + foreach ( $this->aFieldsets as $_sSectionID => $_aFields ) { |
|
108 | 108 | |
109 | 109 | if ( $_sSectionID == $sID ) { |
110 | 110 | $_bIsSection = true; |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @return boolean |
131 | 131 | */ |
132 | 132 | public function canUserView( $sCapability ) { |
133 | - if ( ! $sCapability ) { |
|
133 | + if ( !$sCapability ) { |
|
134 | 134 | return true; |
135 | 135 | } |
136 | 136 | return ( boolean ) current_user_can( $sCapability ); |
@@ -64,16 +64,16 @@ discard block |
||
64 | 64 | * @return array |
65 | 65 | * @since 3.7.0 |
66 | 66 | */ |
67 | - public function getSubmittedData( array $aDataToParse, $bExtractFromFieldStructure=true, $bStripSlashes=true ) { |
|
67 | + public function getSubmittedData( array $aDataToParse, $bExtractFromFieldStructure = true, $bStripSlashes = true ) { |
|
68 | 68 | |
69 | 69 | // Extracts the form data from the subject data for parsing |
70 | - $_aSubmittedFormData = $bExtractFromFieldStructure |
|
70 | + $_aSubmittedFormData = $bExtractFromFieldStructure |
|
71 | 71 | ? $this->castArrayContents( |
72 | 72 | $this->getDataStructureFromAddedFieldsets(), // form data (options) structure |
73 | 73 | $aDataToParse // the subject data array, usually $_POST. |
74 | 74 | ) |
75 | 75 | : $aDataToParse; |
76 | - $_aSubmittedFormData = $this->getHTTPRequestSanitized( $_aSubmittedFormData, $bStripSlashes ); |
|
76 | + $_aSubmittedFormData = $this->getHTTPRequestSanitized( $_aSubmittedFormData, $bStripSlashes ); |
|
77 | 77 | return $this->getSortedInputs( $_aSubmittedFormData ); // [3.6.0] - sorts dynamic elements. |
78 | 78 | |
79 | 79 | } |
@@ -96,12 +96,12 @@ discard block |
||
96 | 96 | array_merge( |
97 | 97 | $this->getElementAsArray( |
98 | 98 | $_POST, |
99 | - '__repeatable_elements_' . $this->aArguments[ 'structure_type' ], |
|
99 | + '__repeatable_elements_'.$this->aArguments[ 'structure_type' ], |
|
100 | 100 | array() |
101 | 101 | ), |
102 | 102 | $this->getElementAsArray( |
103 | 103 | $_POST, |
104 | - '__sortable_elements_' . $this->aArguments[ 'structure_type' ], |
|
104 | + '__sortable_elements_'.$this->aArguments[ 'structure_type' ], |
|
105 | 105 | array() |
106 | 106 | ) |
107 | 107 | ) |
@@ -160,9 +160,9 @@ discard block |
||
160 | 160 | * Changed the name from `getFieldsModel()`. |
161 | 161 | * @return array |
162 | 162 | */ |
163 | - public function getDataStructureFromAddedFieldsets() { |
|
163 | + public function getDataStructureFromAddedFieldsets() { |
|
164 | 164 | |
165 | - $_aFormDataStructure = array(); |
|
165 | + $_aFormDataStructure = array(); |
|
166 | 166 | foreach ( $this->getAsArray( $this->aFieldsets ) as $_sSectionID => $_aFieldsets ) { |
167 | 167 | |
168 | 168 | if ( $_sSectionID !== '_default' ) { |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | } |
172 | 172 | |
173 | 173 | // For default field items. |
174 | - foreach( $_aFieldsets as $_sFieldID => $_aFieldset ) { |
|
174 | + foreach ( $_aFieldsets as $_sFieldID => $_aFieldset ) { |
|
175 | 175 | $_aFormDataStructure[ $_aFieldset[ 'field_id' ] ] = $_aFieldset; |
176 | 176 | } |
177 | 177 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $aSubject, |
204 | 204 | $this->getElementAsArray( |
205 | 205 | $_POST, |
206 | - '__repeatable_elements_' . $this->aArguments[ 'structure_type' ] |
|
206 | + '__repeatable_elements_'.$this->aArguments[ 'structure_type' ] |
|
207 | 207 | ) |
208 | 208 | ); |
209 | 209 | return $_oFilterRepeatableElements->get(); |
@@ -216,13 +216,13 @@ discard block |
||
216 | 216 | public function _replyToRegisterFormItems() { |
217 | 217 | |
218 | 218 | // Check if the form should be created or not. |
219 | - if ( ! $this->isInThePage() ) { |
|
219 | + if ( !$this->isInThePage() ) { |
|
220 | 220 | return; |
221 | 221 | } |
222 | 222 | |
223 | 223 | // Load field type definitions. |
224 | - $this->_setFieldTypeDefinitions( 'admin_page_framework' ); // site-wide |
|
225 | - $this->_setFieldTypeDefinitions( $this->aArguments[ 'caller_id' ] ); // per class |
|
224 | + $this->_setFieldTypeDefinitions( 'admin_page_framework' ); // site-wide |
|
225 | + $this->_setFieldTypeDefinitions( $this->aArguments[ 'caller_id' ] ); // per class |
|
226 | 226 | |
227 | 227 | // Set the options array |
228 | 228 | $this->aSavedData = $this->_getSavedData( |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $this->aArguments, |
251 | 251 | $this->aFieldsets, |
252 | 252 | self::$_aResources, |
253 | - $this->aFieldTypeDefinitions, // must be called after performing `_setFieldTypeDefinitions()`. |
|
253 | + $this->aFieldTypeDefinitions, // must be called after performing `_setFieldTypeDefinitions()`. |
|
254 | 254 | $this->aCallbacks |
255 | 255 | ); |
256 | 256 | self::$_aResources = $_oFieldResources->get(); // updates the property |
@@ -267,10 +267,10 @@ discard block |
||
267 | 267 | $this->callBack( |
268 | 268 | $this->aCallbacks[ 'handle_form_data' ], |
269 | 269 | array( |
270 | - $this->aSavedData, // 1st parameter |
|
271 | - $this->aArguments, // 2nd parameter |
|
272 | - $this->aSectionsets, // 3rd parameter |
|
273 | - $this->aFieldsets, // 4th parameter |
|
270 | + $this->aSavedData, // 1st parameter |
|
271 | + $this->aArguments, // 2nd parameter |
|
272 | + $this->aSectionsets, // 3rd parameter |
|
273 | + $this->aFieldsets, // 4th parameter |
|
274 | 274 | ) |
275 | 275 | ); |
276 | 276 | |
@@ -284,15 +284,15 @@ discard block |
||
284 | 284 | $this->aSectionsets = $this->callBack( |
285 | 285 | $this->aCallbacks[ 'sectionsets_before_registration' ], |
286 | 286 | array( |
287 | - $this->aSectionsets, // 1st parameter |
|
287 | + $this->aSectionsets, // 1st parameter |
|
288 | 288 | ) |
289 | 289 | ); |
290 | 290 | // Let the main routine modify the fieldsets definition array. |
291 | 291 | $this->aFieldsets = $this->callBack( |
292 | 292 | $this->aCallbacks[ 'fieldsets_before_registration' ], |
293 | 293 | array( |
294 | - $this->aFieldsets, // 1st parameter |
|
295 | - $this->aSectionsets, // 2nd parameter |
|
294 | + $this->aFieldsets, // 1st parameter |
|
295 | + $this->aSectionsets, // 2nd parameter |
|
296 | 296 | ) |
297 | 297 | ); |
298 | 298 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @return string |
59 | 59 | * @since 3.7.0 |
60 | 60 | */ |
61 | - public function get( $bTableRow=true ) { |
|
61 | + public function get( $bTableRow = true ) { |
|
62 | 62 | |
63 | 63 | $_sMethodName = $this->getAOrB( |
64 | 64 | $bTableRow, |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | ); |
68 | 68 | |
69 | 69 | $_sOutput = ''; |
70 | - foreach( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
70 | + foreach ( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
71 | 71 | |
72 | 72 | $_oFieldsetOutputFormatter = new AdminPageFramework_Form_Model___Format_FieldsetOutput( |
73 | 73 | $_aFieldset, |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | ); |
77 | 77 | |
78 | 78 | $_aFieldset = $_oFieldsetOutputFormatter->get(); |
79 | - if ( ! $this->callBack( $this->aCallbacks[ 'is_fieldset_visible' ], array( true, $_aFieldset ) ) ) { |
|
79 | + if ( !$this->callBack( $this->aCallbacks[ 'is_fieldset_visible' ], array( true, $_aFieldset ) ) ) { |
|
80 | 80 | continue; |
81 | 81 | } |
82 | 82 |