@@ -76,7 +76,7 @@ |
||
76 | 76 | register_deactivation_hook( $this->sFilePath, array( $this, 'replyToPluginDeactivation' ) ); |
77 | 77 | |
78 | 78 | // 8. Schedule to load plugin specific components. |
79 | - if ( ! $this->sSetUpHook || did_action( $this->sSetUpHook ) ) { |
|
79 | + if ( ! $this->sSetUpHook || did_action( $this->sSetUpHook ) ) { |
|
80 | 80 | $this->_replyToLoadPluginComponents(); |
81 | 81 | } else { |
82 | 82 | add_action( $this->sSetUpHook, array( $this, '_replyToLoadPluginComponents' ), $this->iPriority ); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * @param string $sSetUpHook The action hook name for the setUp callback. Default 'plugins_loaded'. |
123 | 123 | * @param string $iPriority The priority. Set a lower number to get loader earlier. Default: `10`. |
124 | 124 | */ |
125 | - public function __construct( $sPluginFilePath, $sPluginHookPrefix='', $sSetUpHook='plugins_loaded', $iPriority=10 ) { |
|
125 | + public function __construct( $sPluginFilePath, $sPluginHookPrefix = '', $sSetUpHook = 'plugins_loaded', $iPriority = 10 ) { |
|
126 | 126 | |
127 | 127 | // Check if it has been loaded. |
128 | 128 | if ( $this->_hasLoaded() ) { |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | register_deactivation_hook( $this->sFilePath, array( $this, 'replyToPluginDeactivation' ) ); |
159 | 159 | |
160 | 160 | // 8. Schedule to load plugin specific components. |
161 | - if ( ! $this->sSetUpHook || did_action( $this->sSetUpHook ) ) { |
|
161 | + if ( !$this->sSetUpHook || did_action( $this->sSetUpHook ) ) { |
|
162 | 162 | $this->_replyToLoadPluginComponents(); |
163 | 163 | } else { |
164 | 164 | add_action( $this->sSetUpHook, array( $this, '_replyToLoadPluginComponents' ), $this->iPriority ); |
@@ -200,14 +200,14 @@ discard block |
||
200 | 200 | protected function _registerClasses() { |
201 | 201 | |
202 | 202 | // This class should be used in the framework bootstrap so disabling the auto-load option for performance. |
203 | - if ( ! class_exists( 'AdminPageFramework_RegisterClasses', false ) ) { |
|
203 | + if ( !class_exists( 'AdminPageFramework_RegisterClasses', false ) ) { |
|
204 | 204 | return; |
205 | 205 | } |
206 | 206 | |
207 | 207 | // Register classes |
208 | 208 | new AdminPageFramework_RegisterClasses( |
209 | - $this->getScanningDirs(), // scanning directory paths |
|
210 | - array(), // autoloader options |
|
209 | + $this->getScanningDirs(), // scanning directory paths |
|
210 | + array(), // autoloader options |
|
211 | 211 | $this->getClasses() // pre-generated class list |
212 | 212 | ); |
213 | 213 |
@@ -52,7 +52,7 @@ |
||
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 | '', |
@@ -23,7 +23,7 @@ discard block |
||
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 |
||
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 |
||
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 | ); |
@@ -53,7 +53,7 @@ |
||
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 |
@@ -25,14 +25,14 @@ discard block |
||
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 |
||
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 | ); |
@@ -34,7 +34,7 @@ |
||
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( |
@@ -21,6 +21,6 @@ |
||
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 | } |
@@ -23,17 +23,17 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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( |
@@ -157,7 +157,7 @@ discard block |
||
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 |
||
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() { |
@@ -272,8 +272,8 @@ discard block |
||
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 |
||
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' |
@@ -67,7 +67,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | /** |
@@ -93,8 +93,8 @@ |
||
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 |
@@ -24,8 +24,8 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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. |