@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | $_aParameters = func_get_args() + array( |
34 | 34 | $this->aFieldset, |
35 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
35 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
36 | 36 | $this->aFieldErrors, |
37 | 37 | $this->aFieldTypeDefinitions, |
38 | 38 | $this->aCallbacks, // field output element callables. |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | return $this->_getFieldByContainer( |
72 | 72 | $aFieldset, |
73 | 73 | array( |
74 | - 'open_main' => "<div " . $_oFieldrowAttribute->get() . ">", |
|
74 | + 'open_main' => "<div ".$_oFieldrowAttribute->get().">", |
|
75 | 75 | 'close_main' => "</div>", |
76 | 76 | ) |
77 | 77 | ); |
@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $aFieldset = $this->aFieldset; |
62 | 62 | |
63 | - if ( 'section_title' === $aFieldset[ 'type' ] ) { |
|
63 | + if ( 'section_title' === $aFieldset[ 'type' ] ) { |
|
64 | 64 | return ''; |
65 | 65 | } |
66 | 66 |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @return string |
58 | 58 | * @since DEVVER |
59 | 59 | */ |
60 | - public function get( $bTableRow=true ) { |
|
60 | + public function get( $bTableRow = true ) { |
|
61 | 61 | |
62 | 62 | $_sMethodName = $this->getAOrB( |
63 | 63 | $bTableRow, |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | ); |
67 | 67 | |
68 | 68 | $_aOutput = array(); |
69 | - foreach( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
69 | + foreach ( $this->aFieldsetsPerSection as $_aFieldset ) { |
|
70 | 70 | |
71 | 71 | $_oFieldsetOutputFormatter = new AdminPageFramework_Form_Model___Format_FieldsetOutput( |
72 | 72 | $_aFieldset, |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $this->aFieldTypeDefinitions |
75 | 75 | ); |
76 | 76 | |
77 | - $_aOutput[] = call_user_func_array( |
|
77 | + $_aOutput[ ] = call_user_func_array( |
|
78 | 78 | array( $this, $_sMethodName ), |
79 | 79 | array( $_oFieldsetOutputFormatter->get() ) |
80 | 80 | ); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | $_aParameters = func_get_args() + array( |
35 | 35 | $this->aFieldset, |
36 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
36 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
37 | 37 | $this->aFieldErrors, |
38 | 38 | $this->aFieldTypeDefinitions, |
39 | 39 | $this->aCallbacks, // field output element callables. |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | return ''; |
66 | 66 | } |
67 | 67 | |
68 | - $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
68 | + $_oFieldrowAttribute = new AdminPageFramework_Form_View___Attribute_Fieldrow( |
|
69 | 69 | $aFieldset, |
70 | 70 | array( |
71 | - 'id' => 'fieldrow-' . $aFieldset[ 'tag_id' ], |
|
71 | + 'id' => 'fieldrow-'.$aFieldset[ 'tag_id' ], |
|
72 | 72 | 'valign' => 'top', |
73 | 73 | 'class' => 'admin-page-framework-fieldrow', |
74 | 74 | ) |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return $this->_getFieldByContainer( |
78 | 78 | $aFieldset, |
79 | 79 | array( |
80 | - 'open_container' => "<tr " . $_oFieldrowAttribute->get() . ">", |
|
80 | + 'open_container' => "<tr ".$_oFieldrowAttribute->get().">", |
|
81 | 81 | 'close_container' => "</tr>", |
82 | 82 | 'open_title' => "<th>", |
83 | 83 | 'close_title' => "</th>", |
@@ -117,13 +117,13 @@ discard block |
||
117 | 117 | 'close_main' => '', |
118 | 118 | ); |
119 | 119 | |
120 | - $_aOutput = array(); |
|
120 | + $_aOutput = array(); |
|
121 | 121 | if ( $aFieldset[ 'show_title_column' ] ) { |
122 | - $_aOutput[] = $aOpenCloseTags[ 'open_title' ] |
|
122 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_title' ] |
|
123 | 123 | . $this->_getFieldTitle( $aFieldset ) |
124 | 124 | . $aOpenCloseTags[ 'close_title' ]; |
125 | 125 | } |
126 | - $_aOutput[] = $aOpenCloseTags[ 'open_main' ] |
|
126 | + $_aOutput[ ] = $aOpenCloseTags[ 'open_main' ] |
|
127 | 127 | // . call_user_func_array( $hfCallback, array( $aFieldset ) ) |
128 | 128 | . $this->getFieldsetOutput( $aFieldset ) |
129 | 129 | . $aOpenCloseTags[ 'close_main' ]; |
@@ -147,22 +147,22 @@ discard block |
||
147 | 147 | $aField, |
148 | 148 | 0 // the first item |
149 | 149 | ); |
150 | - return "<label for='" . $_oInputTagIDGenerator->get() . "'>" |
|
151 | - . "<a id='{$aField['field_id']}'></a>" // to allow the browser to link to the element. |
|
150 | + return "<label for='".$_oInputTagIDGenerator->get()."'>" |
|
151 | + . "<a id='{$aField[ 'field_id' ]}'></a>" // to allow the browser to link to the element. |
|
152 | 152 | . "<span title='" |
153 | 153 | . esc_attr( strip_tags( |
154 | - isset( $aField['tip'] ) |
|
155 | - ? $aField['tip'] |
|
154 | + isset( $aField[ 'tip' ] ) |
|
155 | + ? $aField[ 'tip' ] |
|
156 | 156 | : ( |
157 | - is_array( $aField['description'] |
|
158 | - ? implode( ' ', $aField['description'] ) |
|
159 | - : $aField['description'] |
|
157 | + is_array( $aField[ 'description' ] |
|
158 | + ? implode( ' ', $aField[ 'description' ] ) |
|
159 | + : $aField[ 'description' ] |
|
160 | 160 | ) |
161 | 161 | ) |
162 | 162 | ) ) |
163 | 163 | . "'>" |
164 | - . $aField['title'] |
|
165 | - . ( in_array( $aField[ '_structure_type' ], array( 'widget', 'post_meta_box', 'page_meta_box' ) ) && isset( $aField['title'] ) && '' !== $aField['title'] |
|
164 | + . $aField[ 'title' ] |
|
165 | + . ( in_array( $aField[ '_structure_type' ], array( 'widget', 'post_meta_box', 'page_meta_box' ) ) && isset( $aField[ 'title' ] ) && '' !== $aField[ 'title' ] |
|
166 | 166 | ? "<span class='title-colon'>:</span>" |
167 | 167 | : '' |
168 | 168 | ) |
@@ -61,7 +61,7 @@ |
||
61 | 61 | |
62 | 62 | $aFieldset = $this->aFieldset; |
63 | 63 | |
64 | - if ( 'section_title' === $aFieldset[ 'type' ] ) { |
|
64 | + if ( 'section_title' === $aFieldset[ 'type' ] ) { |
|
65 | 65 | return ''; |
66 | 66 | } |
67 | 67 |
@@ -224,7 +224,7 @@ |
||
224 | 224 | * @return string |
225 | 225 | * @deprecated DEVVER |
226 | 226 | */ |
227 | - /* public function getFieldsetRows( array $aFieldsetsPerSection, $iSectionIndex=null ) { |
|
227 | + /* public function getFieldsetRows( array $aFieldsetsPerSection, $iSectionIndex=null ) { |
|
228 | 228 | |
229 | 229 | $_aOutput = array(); |
230 | 230 | foreach( $aFieldsetsPerSection as $_aFieldset ) { |
@@ -76,15 +76,15 @@ discard block |
||
76 | 76 | $_oSectionTableBodyAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableBody( $this->aSectionset ); |
77 | 77 | |
78 | 78 | $_aOutput = array(); |
79 | - $_aOutput[] = "<table " . $_oSectionTableAttributes->get() . ">" |
|
79 | + $_aOutput[ ] = "<table ".$_oSectionTableAttributes->get().">" |
|
80 | 80 | . $_oTableCaption->get() |
81 | - . "<tbody " . $_oSectionTableBodyAttributes->get() . ">" |
|
81 | + . "<tbody ".$_oSectionTableBodyAttributes->get().">" |
|
82 | 82 | . $this->_getSectionContent( $_iSectionIndex ) |
83 | 83 | . "</tbody>" |
84 | 84 | . "</table>"; |
85 | 85 | |
86 | - $_oSectionTableContainerAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableContainer( $this->aSectionset ); |
|
87 | - return "<div " . $_oSectionTableContainerAttributes->get() . ">" |
|
86 | + $_oSectionTableContainerAttributes = new AdminPageFramework_Form_View___Attribute_SectionTableContainer( $this->aSectionset ); |
|
87 | + return "<div ".$_oSectionTableContainerAttributes->get().">" |
|
88 | 88 | . implode( PHP_EOL, $_aOutput ) |
89 | 89 | . "</div>"; |
90 | 90 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | // Retrieve the formatted sectionsets of the content. |
145 | 145 | $_sSectionPath = $this->aSectionset[ '_section_path' ]; |
146 | 146 | $_aSectionsets = $this->aStructure[ 'sectionsets' ]; |
147 | - if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
147 | + if ( !isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
148 | 148 | return ''; |
149 | 149 | } |
150 | 150 | |
@@ -195,14 +195,14 @@ discard block |
||
195 | 195 | $_aNestedSectionPaths = array(); |
196 | 196 | |
197 | 197 | // List the section paths of the direct children |
198 | - foreach( $aNestedSctionsets as $_aNestedSectionset ) { |
|
199 | - $_sThisSectionPath = $sSubjectSectionPath . '|' . $_aNestedSectionset[ 'section_id' ]; |
|
198 | + foreach ( $aNestedSctionsets as $_aNestedSectionset ) { |
|
199 | + $_sThisSectionPath = $sSubjectSectionPath.'|'.$_aNestedSectionset[ 'section_id' ]; |
|
200 | 200 | $_aNestedSectionPaths[ $_sThisSectionPath ] = $_sThisSectionPath; |
201 | 201 | } |
202 | 202 | |
203 | 203 | // Now we need children's children. |
204 | 204 | $_aChildSectionPaths = array(); |
205 | - foreach( $_aNestedSectionPaths as $_sNestedSectionPath ) { |
|
205 | + foreach ( $_aNestedSectionPaths as $_sNestedSectionPath ) { |
|
206 | 206 | $_aNestedSectionsets = $this->getElementAsArray( |
207 | 207 | $aSectionsets, |
208 | 208 | array( $_sNestedSectionPath, 'content' ) |
@@ -144,7 +144,8 @@ |
||
144 | 144 | // Retrieve the formatted sectionsets of the content. |
145 | 145 | $_sSectionPath = $this->aSectionset[ '_section_path' ]; |
146 | 146 | $_aSectionsets = $this->aStructure[ 'sectionsets' ]; |
147 | - if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { // @todo not sure what this check is for |
|
147 | + if ( ! isset( $_aSectionsets[ $_sSectionPath ] ) ) { |
|
148 | +// @todo not sure what this check is for |
|
148 | 149 | return ''; |
149 | 150 | } |
150 | 151 |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | private function _getCaption( array $aSectionset, $iSectionIndex, $aFieldsets, $aFieldErrors, $aFieldTypeDefinitions, $aCallbacks, $oMsg ) { |
81 | 81 | |
82 | - if ( ! $aSectionset[ 'description' ] && ! $aSectionset[ 'title' ] ) { |
|
82 | + if ( !$aSectionset[ 'description' ] && !$aSectionset[ 'title' ] ) { |
|
83 | 83 | return "<caption class='admin-page-framework-section-caption' style='display:none;'></caption>"; |
84 | 84 | } |
85 | 85 | |
@@ -110,15 +110,15 @@ discard block |
||
110 | 110 | $aCallbacks // field output element callables. |
111 | 111 | ); |
112 | 112 | |
113 | - $_bShowTitle = empty( $_abCollapsible ) && ! $aSectionset[ 'section_tab_slug' ]; |
|
113 | + $_bShowTitle = empty( $_abCollapsible ) && !$aSectionset[ 'section_tab_slug' ]; |
|
114 | 114 | return |
115 | - "<caption " . $this->getAttributes( |
|
115 | + "<caption ".$this->getAttributes( |
|
116 | 116 | array( |
117 | 117 | 'class' => 'admin-page-framework-section-caption', |
118 | 118 | // data-section_tab is referred by the repeater script to hide/show the title and the description |
119 | 119 | 'data-section_tab' => $aSectionset[ 'section_tab_slug' ], |
120 | 120 | ) |
121 | - ) . ">" |
|
121 | + ).">" |
|
122 | 122 | . $_oCollapsibleSectionTitle->get() |
123 | 123 | . $this->getAOrB( |
124 | 124 | $_bShowTitle, |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $this->oMsg, |
180 | 180 | $this->aCallbacks // field output element callables. |
181 | 181 | ); |
182 | - return "<div " . $this->getAttributes( |
|
182 | + return "<div ".$this->getAttributes( |
|
183 | 183 | array( |
184 | 184 | 'class' => 'admin-page-framework-section-title', |
185 | 185 | 'style' => $this->getAOrB( |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | 'display: none;' |
189 | 189 | ), |
190 | 190 | ) |
191 | - ). ">" |
|
191 | + ).">" |
|
192 | 192 | . $_oSectionTitle->get() |
193 | 193 | . "</div>"; |
194 | 194 | } |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | if ( $aSectionset[ 'collapsible' ] ) { |
205 | 205 | return ''; |
206 | 206 | } |
207 | - if ( ! is_callable( $hfSectionCallback ) ) { |
|
207 | + if ( !is_callable( $hfSectionCallback ) ) { |
|
208 | 208 | return ''; |
209 | 209 | } |
210 | 210 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | private function _shouldShowCaptionTitle( $aSectionset, $iSectionIndex ) { |
238 | 238 | |
239 | - if ( ! $aSectionset[ 'title' ] ){ |
|
239 | + if ( !$aSectionset[ 'title' ] ) { |
|
240 | 240 | return false; |
241 | 241 | } |
242 | 242 | if ( $aSectionset[ 'collapsible' ] ) { |
@@ -236,7 +236,7 @@ |
||
236 | 236 | */ |
237 | 237 | private function _shouldShowCaptionTitle( $aSectionset, $iSectionIndex ) { |
238 | 238 | |
239 | - if ( ! $aSectionset[ 'title' ] ){ |
|
239 | + if ( ! $aSectionset[ 'title' ] ) { |
|
240 | 240 | return false; |
241 | 241 | } |
242 | 242 | if ( $aSectionset[ 'collapsible' ] ) { |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | */ |
19 | 19 | class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
20 | 20 | |
21 | - public $aArguments = array( |
|
21 | + public $aArguments = array( |
|
22 | 22 | 'title' => null, |
23 | 23 | 'tag' => null, |
24 | 24 | 'section_index' => null, |
25 | 25 | ); |
26 | - public $aFieldsets = array(); |
|
26 | + public $aFieldsets = array(); |
|
27 | 27 | public $aSavedData = array(); |
28 | 28 | public $aFieldErrors = array(); |
29 | 29 | public $aFieldTypeDefinitions = array(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * @since DEVVER Moved from `AdminPageFramework_FormPart_SectionTitle`. |
87 | 87 | * @return string The section title output. |
88 | 88 | */ |
89 | - protected function _getSectionTitle( $sTitle, $sTag, $aFieldsets, $iSectionIndex=null, $aFieldTypeDefinitions=array() ) { |
|
89 | + protected function _getSectionTitle( $sTitle, $sTag, $aFieldsets, $iSectionIndex = null, $aFieldTypeDefinitions = array() ) { |
|
90 | 90 | |
91 | 91 | $_aSectionTitleField = $this->_getSectionTitleField( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ); |
92 | 92 | return $_aSectionTitleField |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | private function _getSectionTitleField( array $aFieldsetsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
108 | 108 | |
109 | - foreach( $aFieldsetsets as $_aFieldsetset ) { |
|
109 | + foreach ( $aFieldsetsets as $_aFieldsetset ) { |
|
110 | 110 | |
111 | 111 | if ( 'section_title' !== $_aFieldsetset[ 'type' ] ) { |
112 | 112 | continue; |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * @since DEVVER Changed the name from `AdminPageFramework_FormPart_SectionTitle`. |
17 | 17 | * @internal |
18 | 18 | */ |
19 | -class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
|
19 | +class AdminPageFramework_Form_View___SectionTitle extends AdminPageFramework_Form_View___Section_Base { |
|
20 | 20 | |
21 | 21 | public $aArguments = array( |
22 | 22 | 'title' => null, |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * @since 3.6.0 Added the `$iSectionIndex` parameter. Added the `$aFieldTypeDefinitions` parameter. |
105 | 105 | * @since DEVVER Moved from `AdminPageFramework_FormPart_SectionTitle`. |
106 | 106 | */ |
107 | - private function _getSectionTitleField( array $aFieldsetsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
107 | + private function _getSectionTitleField( array $aFieldsetsets, $iSectionIndex, $aFieldTypeDefinitions ) { |
|
108 | 108 | |
109 | 109 | foreach( $aFieldsetsets as $_aFieldsetset ) { |
110 | 110 |
@@ -54,13 +54,13 @@ |
||
54 | 54 | public function getFieldsetOutput( $aFieldset ) { |
55 | 55 | |
56 | 56 | // Check if the field is visible |
57 | - if ( ! $this->isFieldsetVisible( $aFieldset ) ) { |
|
57 | + if ( !$this->isFieldsetVisible( $aFieldset ) ) { |
|
58 | 58 | return ''; |
59 | 59 | } |
60 | 60 | |
61 | 61 | $_oFieldset = new AdminPageFramework_Form_View___Fieldset( |
62 | 62 | $aFieldset, |
63 | - $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
63 | + $this->aSavedData, // passed by reference. @todo: examine why it needs to be passed by reference. |
|
64 | 64 | $this->aFieldErrors, |
65 | 65 | $this->aFieldTypeDefinitions, |
66 | 66 | $this->oMsg, |
@@ -54,7 +54,7 @@ |
||
54 | 54 | public function getFieldsetOutput( $aFieldset ) { |
55 | 55 | |
56 | 56 | // Check if the field is visible |
57 | - if ( ! $this->isFieldsetVisible( $aFieldset ) ) { |
|
57 | + if ( ! $this->isFieldsetVisible( $aFieldset ) ) { |
|
58 | 58 | return ''; |
59 | 59 | } |
60 | 60 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * Only one depth at a time will be parsed. |
26 | 26 | */ |
27 | - public $iNestedDepth = 0; |
|
27 | + public $iNestedDepth = 0; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Stores the generated section tab slugs. |
@@ -120,11 +120,11 @@ discard block |
||
120 | 120 | $_aFieldsBySectionTab = array(); |
121 | 121 | $_iIndex = 0; |
122 | 122 | |
123 | - foreach( $aSectionsets as $_sSectionPath => $_aSectionset ) { |
|
123 | + foreach ( $aSectionsets as $_sSectionPath => $_aSectionset ) { |
|
124 | 124 | |
125 | 125 | // If no fields for the section, no need to add the section |
126 | 126 | // unless the custom sectionset output is defined. |
127 | - if ( ! isset( $aFieldsets[ $_sSectionPath ] ) && ! $this->_isCustomContentSet( $_aSectionset ) ) { |
|
127 | + if ( !isset( $aFieldsets[ $_sSectionPath ] ) && !$this->_isCustomContentSet( $_aSectionset ) ) { |
|
128 | 128 | continue; |
129 | 129 | } |
130 | 130 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $_sSectionTaqbSlug = $this->getAOrB( |
137 | 137 | $_aSectionset[ 'section_tab_slug' ], |
138 | 138 | $_aSectionset[ 'section_tab_slug' ], |
139 | - '_default_' . $this->iNestedDepth . '_' . ( ++$_iIndex ) |
|
139 | + '_default_'.$this->iNestedDepth.'_'.( ++$_iIndex ) |
|
140 | 140 | ); |
141 | 141 | $_aSectionsBySectionTab[ $_sSectionTaqbSlug ][ $_sSectionPath ] = $_aSectionset; |
142 | 142 | $_aFieldsBySectionTab[ $_sSectionTaqbSlug ][ $_sSectionPath ] = $this->getElement( |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @since DEVVER Moved from `AdminPageFramework_FormPart_Table`. |
158 | 158 | * @return boolean True if a custom content value is set. |
159 | 159 | */ |
160 | - private function _isCustomContentSet( array $aSectionset, array $aKeys=array( 'content' ) ) { |
|
160 | + private function _isCustomContentSet( array $aSectionset, array $aKeys = array( 'content' ) ) { |
|
161 | 161 | return isset( $aSectionset[ 'content' ] ); |
162 | 162 | // @deprecated |
163 | 163 | // foreach( $aKeys as $_sKey ) { |
@@ -71,7 +71,7 @@ |
||
71 | 71 | * </code> |
72 | 72 | * @access public This must be public as accessed from outside. |
73 | 73 | */ |
74 | - public $aFieldTypeSlugs = array( 'default', ); |
|
74 | + public $aFieldTypeSlugs = array( 'default',); |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * Defines the default key-values of this field type. |
@@ -38,7 +38,7 @@ |
||
38 | 38 | * @since 3.5.0 |
39 | 39 | * @callback fieldtype hfDoOnRegistration |
40 | 40 | */ |
41 | - public function _replyToDoOnFieldRegistration( array $aField ) { |
|
41 | + public function _replyToDoOnFieldRegistration( array $aField ) { |
|
42 | 42 | return $this->doOnFieldRegistration( $aField ); |
43 | 43 | } |
44 | 44 |