Completed
Branch dev (1ad2e5)
by
unknown
04:48
created
_common/form/_view/fieldset/AdminPageFramework_Form_View___Fieldset.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
                  */
140 140
                 private function _getUnsetFlagFieldInputTag( array $aField ) {
141 141
                     
142
-                    if ( false !== $aField[ 'save' ] ) {                
142
+                    if ( false !== $aField[ 'save' ] ) {
143 143
                         return '';
144 144
                     }
145 145
                     return $this->getHTMLTag( 
Please login to merge, or discard this patch.
form/_view/sectionset/AdminPageFramework_Form_View___FieldsetTableRow.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
                             $aField[ '_structure_type' ],
194 194
                             array( 'widget', 'post_meta_box', 'page_meta_box' )
195 195
                         )
196
-                    ){
196
+                    ) {
197 197
                         return "<span class='title-colon'>:</span>" ;
198 198
                     }
199 199
                     
Please login to merge, or discard this patch.
_common/form/_view/sectionset/AdminPageFramework_Form_View___FieldTitle.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
                     $aField[ '_structure_type' ], 
167 167
                     array( 'widget', 'post_meta_box', 'page_meta_box' ) 
168 168
                 ) 
169
-            ){
169
+            ) {
170 170
                 return "<span class='title-colon'>:</span>" ;
171 171
             }                                                 
172 172
             
Please login to merge, or discard this patch.
form/_view/sectionset/AdminPageFramework_Form_View___SectionTitle.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * @since       3.7.0      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,
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
              * @since       3.8.0
136 136
              * @internal
137 137
              */
138
-            private function _getFieldsetsOutputInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) {   
138
+            private function _getFieldsetsOutputInSectionTitleArea( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) {
139 139
             
140 140
                 $_aFieldsetsInSectionTitle   = array();
141 141
                 $_aFieldsetsInSectionTitle[] = $this->_getSectionTitleField( $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions );
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                 );
146 146
                 $_sOutput = '';
147 147
                 foreach( $_aFieldsetsInSectionTitle as $_aFieldset ) {
148
-                    if ( empty( $_aFieldset ) )  {
148
+                    if ( empty( $_aFieldset ) ) {
149 149
                         continue;
150 150
                     }
151 151
                     $_sOutput .= $this->getFieldsetOutput( $_aFieldset );
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                  * @since       3.7.0       Moved from `AdminPageFramework_FormPart_SectionTitle`.
190 190
                  * @return      array|void
191 191
                  */
192
-                private function _getSectionTitleField( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) {   
192
+                private function _getSectionTitleField( array $aFieldsets, $iSectionIndex, $aFieldTypeDefinitions ) {
193 193
                 
194 194
                     foreach( $aFieldsets as $_aFieldset ) {
195 195
                         
Please login to merge, or discard this patch.