Completed
Branch master (fd2290)
by
unknown
06:38
created
development/cli/AdminPageFramework_InclusionClassFilesHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * If accessed from a console, include the registry class to laod 'AdminPageFramework_Registry_Base'.
12 12
  */
13 13
 if ( php_sapi_name() === 'cli' ) {
14
-    $_sFrameworkFilePath = dirname( dirname( __FILE__ ) ) . '/admin-page-framework.php';
14
+    $_sFrameworkFilePath = dirname( dirname( __FILE__ ) ).'/admin-page-framework.php';
15 15
     if ( file_exists( $_sFrameworkFilePath ) ) {
16 16
         include_once( $_sFrameworkFilePath );
17 17
     }
Please login to merge, or discard this patch.
development/cli/AdminPageFramework_BeautifiedVersionHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * If accessed from a console, include the registry class to laod 'AdminPageFramework_Registry_Base'.
12 12
  */
13 13
 if ( php_sapi_name() === 'cli' ) {
14
-    $_sFrameworkFilePath = dirname( dirname( __FILE__ ) ) . '/admin-page-framework.php';
14
+    $_sFrameworkFilePath = dirname( dirname( __FILE__ ) ).'/admin-page-framework.php';
15 15
     if ( file_exists( $_sFrameworkFilePath ) ) {
16 16
         include_once( $_sFrameworkFilePath );
17 17
     }
Please login to merge, or discard this patch.
AdminPageFramework_Model__FormSubmission__Validator__ResetConfirm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function _replyToCallback( $aInputs, $aRawInputs, array $aSubmits, $aSubmitInformation, $oFactory ) {
35 35
                                 
36
-        if ( ! $this->_shouldProceed( $oFactory, $aSubmits ) ) {
36
+        if ( !$this->_shouldProceed( $oFactory, $aSubmits ) ) {
37 37
             return;
38 38
         }
39 39
         
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         );            
47 47
         
48 48
         // Go to the catch clause.
49
-        $_oException = new Exception( 'aReturn' );  // the property name to return from the catch clasue.
49
+        $_oException = new Exception( 'aReturn' ); // the property name to return from the catch clasue.
50 50
         $_oException->aReturn = $this->_confirmSubmitButtonAction( 
51 51
             $this->getElement( $aSubmitInformation, 'input_name' ), 
52 52
             $this->getElement( $aSubmitInformation, 'section_id' ), 
Please login to merge, or discard this patch.
factory/_common/form/field_type/AdminPageFramework_FieldType_size.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -165,6 +165,7 @@  discard block
 block discarded – undo
165 165
              * Returns the HTML output of the number input part.
166 166
              * 
167 167
              * @since       3.5.3
168
+             * @param boolean $bMultiLabels
168 169
              * @return      string      The number input output.
169 170
              */
170 171
             private function _getNumberInputPart( array $aField, array $aBaseAttributes, $isKey, $bMultiLabels ) {
@@ -217,6 +218,7 @@  discard block
 block discarded – undo
217 218
              * Returns the HTML output of the unit select input part.
218 219
              * 
219 220
              * @since       3.5.3
221
+             * @param boolean $bMultiLabels
220 222
              * @return      string      The unit select input output.
221 223
              */
222 224
             private function _getUnitSelectInput( array $aField, array $aBaseAttributes, $isKey, $bMultiLabels ) {
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Defines the field type slugs used for this field type.
67 67
      */
68
-    public $aFieldTypeSlugs = array( 'size', );
68
+    public $aFieldTypeSlugs = array( 'size',);
69 69
     
70 70
     /**
71 71
      * Defines the default key-values of this field type. 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     protected $aDefaultKeys = array(
76 76
         'is_multiple'           => false, // indicates whether the select tag alloes multiple selections.
77
-        'units'                 => null,  // do not define units here since this will be merged with the user defined field array.
77
+        'units'                 => null, // do not define units here since this will be merged with the user defined field array.
78 78
         'attributes'            => array(
79 79
             'size'      => array(
80 80
                 'min'           => null,
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     protected $aDefaultUnits = array(
104 104
         'px'    => 'px', // pixel
105
-        '%'     => '%',  // percentage
105
+        '%'     => '%', // percentage
106 106
         'em'    => 'em', // font size
107 107
         'ex'    => 'ex', // font height
108 108
         'in'    => 'in', // inch
@@ -162,8 +162,8 @@  discard block
 block discarded – undo
162 162
         );
163 163
 
164 164
         $_aOutput = array();
165
-        foreach( ( array ) $aField[ 'label' ] as $_isKey => $_sLabel ) {
166
-            $_aOutput[] = $this->_getFieldOutputByLabel( 
165
+        foreach ( ( array ) $aField[ 'label' ] as $_isKey => $_sLabel ) {
166
+            $_aOutput[ ] = $this->_getFieldOutputByLabel( 
167 167
                 $_isKey, 
168 168
                 $_sLabel,
169 169
                 $aField
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
 
187 187
             $_aBaseAttributes   = $_bMultiLabels
188 188
                 ? array(
189
-                        'name'  => $aField[ 'attributes' ][ 'name' ] . "[{$isKey}]",
190
-                        'id'    => $aField[ 'attributes' ][ 'id' ] . "_{$isKey}",
189
+                        'name'  => $aField[ 'attributes' ][ 'name' ]."[{$isKey}]",
190
+                        'id'    => $aField[ 'attributes' ][ 'id' ]."_{$isKey}",
191 191
                         'value' => $aField[ 'value' ],
192 192
                     ) 
193 193
                     + $aField[ 'attributes' ]
@@ -199,9 +199,9 @@  discard block
 block discarded – undo
199 199
                      
200 200
             $_aOutput = array(
201 201
                 $this->getElementByLabel( $aField[ 'before_label' ], $isKey, $aField[ 'label' ] ),
202
-                    "<div " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-container admin-page-framework-select-label' ) . ">",
203
-                        $this->_getNumberInputPart( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ),  // The size (number) part
204
-                        $this->_getUnitSelectInput( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ),  // The unit (select) part
202
+                    "<div ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-container admin-page-framework-select-label' ).">",
203
+                        $this->_getNumberInputPart( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The size (number) part
204
+                        $this->_getUnitSelectInput( $aField, $_aBaseAttributes, $isKey, is_array( $aField[ 'label' ] ) ), // The unit (select) part
205 205
                     "</div>",
206 206
                 $this->getElementByLabel( $aField[ 'after_label' ], $isKey, $aField[ 'label' ] )
207 207
             );
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
             private function _getNumberInputPart( array $aField, array $aBaseAttributes, $isKey, $bMultiLabels ) {
219 219
                 
220 220
                 // Size and Size Label
221
-                $_aSizeAttributes       = $this->_getSizeAttributes( 
221
+                $_aSizeAttributes = $this->_getSizeAttributes( 
222 222
                     $aField, 
223 223
                     $aBaseAttributes,
224 224
                     $bMultiLabels
@@ -226,32 +226,32 @@  discard block
 block discarded – undo
226 226
                         : ''
227 227
                 );
228 228
 
229
-                $_aSizeLabelAttributes  = array(
229
+                $_aSizeLabelAttributes = array(
230 230
                     'for'   => $_aSizeAttributes[ 'id' ],
231 231
                     'class' => $_aSizeAttributes[ 'disabled' ] 
232 232
                         ? 'disabled' 
233 233
                         : null,
234 234
                 );                  
235 235
                 
236
-                $_sLabel                = $this->getElementByLabel( 
236
+                $_sLabel = $this->getElementByLabel( 
237 237
                     $aField[ 'label' ], 
238 238
                     $isKey, 
239 239
                     $aField[ 'label' ]
240 240
                 );
241
-                return "<label " . $this->getAttributes( $_aSizeLabelAttributes ) . ">"
241
+                return "<label ".$this->getAttributes( $_aSizeLabelAttributes ).">"
242 242
                     . $this->getElement( 
243 243
                         $aField, 
244 244
                         $bMultiLabels
245 245
                             ? array( 'before_label', $isKey, 'size' ) 
246 246
                             : array( 'before_label', 'size' ) 
247 247
                     )
248
-                    . ( $aField[ 'label' ] && ! $aField[ 'repeatable' ]
249
-                        ? "<span " . $this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ) . ">" 
248
+                    . ( $aField[ 'label' ] && !$aField[ 'repeatable' ]
249
+                        ? "<span ".$this->getLabelContainerAttributes( $aField, 'admin-page-framework-input-label-string' ).">" 
250 250
                                 . $_sLabel 
251 251
                             . "</span>"
252 252
                         : "" 
253 253
                     )
254
-                    . "<input " . $this->getAttributes( $_aSizeAttributes ) . " />" 
254
+                    . "<input ".$this->getAttributes( $_aSizeAttributes )." />" 
255 255
                     . $this->getElement( 
256 256
                         $aField, 
257 257
                         $bMultiLabels
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
                     )
295 295
                     : $aField[ 'units' ];
296 296
                 
297
-                return "<label " . $this->getAttributes( 
297
+                return "<label ".$this->getAttributes( 
298 298
                         array(
299 299
                             'for'       => $_aUnitAttributes[ 'id' ],
300 300
                             'class'     => $_aUnitAttributes[ 'disabled' ] 
@@ -326,9 +326,9 @@  discard block
 block discarded – undo
326 326
                  * @return      array       an unit attribute array
327 327
                  * @internal
328 328
                  */
329
-                private function _getUnitAttributes( array $aField, array $aBaseAttributes, $isLabelKey='' ) {
329
+                private function _getUnitAttributes( array $aField, array $aBaseAttributes, $isLabelKey = '' ) {
330 330
                     
331
-                    $_bIsMultiple    = $aField[ 'is_multiple' ] 
331
+                    $_bIsMultiple = $aField[ 'is_multiple' ] 
332 332
                         ? true 
333 333
                         : $this->getElement( 
334 334
                             $aField,
@@ -340,13 +340,13 @@  discard block
 block discarded – undo
340 340
               
341 341
                     $_aSelectAttributes = array(
342 342
                         'type'      => 'select',
343
-                        'id'        => $aField[ 'input_id' ] . ( '' === $isLabelKey ? '' : '_' . $isLabelKey ) . '_' . 'unit',
343
+                        'id'        => $aField[ 'input_id' ].( '' === $isLabelKey ? '' : '_'.$isLabelKey ).'_'.'unit',
344 344
                         'multiple'  => $_bIsMultiple 
345 345
                             ? 'multiple' 
346 346
                             : null,
347 347
                         'name'      => $_bIsMultiple 
348
-                            ? "{$aField['_input_name']}" . ( '' === $isLabelKey ? '' : '[' . $isLabelKey . ']' ) . "[unit][]" 
349
-                            : "{$aField['_input_name']}" . ( '' === $isLabelKey ? '' : '[' . $isLabelKey . ']' ) . "[unit]",
348
+                            ? "{$aField[ '_input_name' ]}".( '' === $isLabelKey ? '' : '['.$isLabelKey.']' )."[unit][]" 
349
+                            : "{$aField[ '_input_name' ]}".( '' === $isLabelKey ? '' : '['.$isLabelKey.']' )."[unit]",
350 350
                         'value'     => $this->getElement( 
351 351
                             $aField, 
352 352
                             array( 'value', 'unit' ),
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                         '' === $isLabelKey
359 359
                             ? array( 'attributes', 'unit' )
360 360
                             : array( 'attributes', $isLabelKey, 'unit' ),
361
-                        $this->aDefaultKeys['attributes']['unit'] 
361
+                        $this->aDefaultKeys[ 'attributes' ][ 'unit' ] 
362 362
                     )
363 363
                     + $aBaseAttributes;       
364 364
                     return $_aSelectAttributes;
@@ -372,15 +372,15 @@  discard block
 block discarded – undo
372 372
              * @return      array       an size attribute array
373 373
              * @internal
374 374
              */
375
-            private function _getSizeAttributes( array $aField, array $aBaseAttributes, $sLabelKey='' ) {
375
+            private function _getSizeAttributes( array $aField, array $aBaseAttributes, $sLabelKey = '' ) {
376 376
 
377 377
                 return array(
378 378
                         'type'  => 'number',
379
-                        'id'    => $aField['input_id'] . '_' . ( '' !== $sLabelKey ? $sLabelKey . '_' : '' ) . 'size',
380
-                        'name'  => $aField[ '_input_name' ] . ( '' !== $sLabelKey ? "[{$sLabelKey}]" : '' ) . '[size]',
379
+                        'id'    => $aField[ 'input_id' ].'_'.( '' !== $sLabelKey ? $sLabelKey.'_' : '' ).'size',
380
+                        'name'  => $aField[ '_input_name' ].( '' !== $sLabelKey ? "[{$sLabelKey}]" : '' ).'[size]',
381 381
                         'value' => $this->getElement(
382
-                            $aField,        // subject
383
-                            array( 'value', 'size' ),   // dimensional keys
382
+                            $aField, // subject
383
+                            array( 'value', 'size' ), // dimensional keys
384 384
                             ''  // default
385 385
                         ),
386 386
                     ) 
Please login to merge, or discard this patch.
development/factory/_common/_abstract/AdminPageFramework_Factory_Router.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -141,8 +141,8 @@  discard block
 block discarded – undo
141 141
     public function __construct( $oProp ) {
142 142
 
143 143
         // Set sub-class names.
144
-        foreach( $this->_aSubClassPrefixes as $_sObjectVariableName => $_sPrefix ) {
145
-            $this->aSubClassNames[ $_sObjectVariableName ] = $_sPrefix . $this->_sStructureType;
144
+        foreach ( $this->_aSubClassPrefixes as $_sObjectVariableName => $_sPrefix ) {
145
+            $this->aSubClassNames[ $_sObjectVariableName ] = $_sPrefix.$this->_sStructureType;
146 146
         }
147 147
         $this->aSubClassNames = $this->aSubClassNames + $this->_aSubClassNames;
148 148
     
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
         // Required sub-class objects
162 162
         $this->oProp = $oProp;
163 163
             
164
-        if ( $this->oProp->bIsAdmin && ! $this->oProp->bIsAdminAjax ) {
164
+        if ( $this->oProp->bIsAdmin && !$this->oProp->bIsAdminAjax ) {
165 165
             if ( did_action( 'current_screen' ) ) {
166 166
                 $this->_replyToLoadComponents();
167 167
             } else {                
@@ -170,8 +170,8 @@  discard block
 block discarded – undo
170 170
         }
171 171
         
172 172
         // Call the user constructor.
173
-        $this->start();     // defined in the controller class.
174
-        $this->oUtil->addAndDoAction( $this, 'start_' . $this->oProp->sClassName, $this );
173
+        $this->start(); // defined in the controller class.
174
+        $this->oUtil->addAndDoAction( $this, 'start_'.$this->oProp->sClassName, $this );
175 175
         
176 176
     }    
177 177
         
@@ -184,15 +184,15 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function _replyToLoadComponents( /* $oScreen */ ) {
186 186
 
187
-        if ( ! $this->_isInThePage() ) { 
187
+        if ( !$this->_isInThePage() ) { 
188 188
             return; 
189 189
         }
190 190
                     
191
-        if ( ! isset( $this->oResource ) ) {
191
+        if ( !isset( $this->oResource ) ) {
192 192
             $this->oResource = $this->_replyTpSetAndGetInstance_oResource();
193 193
         }
194 194
         
195
-        if ( ! isset(  $this->oLink ) ) {
195
+        if ( !isset( $this->oLink ) ) {
196 196
             $this->oLink = $this->_replyTpSetAndGetInstance_oLink();         
197 197
         }
198 198
         
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     public function _replyToDetermineToLoad() {
242 242
 
243
-        if ( ! $this->_isInThePage() ) { 
243
+        if ( !$this->_isInThePage() ) { 
244 244
             return; 
245 245
         }
246 246
 
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
         // Set and return the sub class object instance.
313 313
         if ( isset( $this->aSubClassNames[ $sPropertyName ] ) ) {
314 314
             return call_user_func( 
315
-                array( $this, "_replyTpSetAndGetInstance_{$sPropertyName}"  )
315
+                array( $this, "_replyTpSetAndGetInstance_{$sPropertyName}" )
316 316
             );
317 317
         }
318 318
         
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
          */              
347 347
         public function _replyTpSetAndGetInstance_oMsg() {
348 348
             $this->oMsg = call_user_func_array(
349
-                array( $this->aSubClassNames[ 'oMsg' ], 'getInstance'),
349
+                array( $this->aSubClassNames[ 'oMsg' ], 'getInstance' ),
350 350
                 array( $this->oProp->sTextDomain )  // parameters
351 351
             );
352 352
             return $this->oMsg;
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
      * 
412 412
      * @internal
413 413
      */
414
-    public function __call( $sMethodName, $aArguments=null ) {    
414
+    public function __call( $sMethodName, $aArguments = null ) {    
415 415
          
416 416
         $_mFirstArg = $this->oUtil->getElement( $aArguments, 0 );
417 417
         
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
             
442 442
             // Check if the method name does not contain a backslash.
443 443
             if ( false === strpos( $sMethodName, "\\" ) ) {
444
-                return $this->oUtil->getElement( $aArguments, 0 );  // the first element - the filter value
444
+                return $this->oUtil->getElement( $aArguments, 0 ); // the first element - the filter value
445 445
             }
446 446
                 
447 447
             // If the method name contains a backslash, the user may be using a name space. 
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
                     array( $this, $_sAutoCallbackMethodName ),
453 453
                     $aArguments
454 454
                 )
455
-                : $this->oUtil->getElement( $aArguments, 0 );   // the first argument
455
+                : $this->oUtil->getElement( $aArguments, 0 ); // the first argument
456 456
             
457 457
         }
458 458
         
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
          */
463 463
         private function _triggerUndefinedMethodWarning( $sMethodName ) {
464 464
             trigger_error(
465
-                AdminPageFramework_Registry::NAME . ': ' 
465
+                AdminPageFramework_Registry::NAME.': ' 
466 466
                     . sprintf( 
467 467
                         __( 'The method is not defined: %1$s', $this->oProp->sTextDomain ),
468 468
                         $sMethodName 
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         if ( $this->oProp->bIsAdmin && ! $this->oProp->bIsAdminAjax ) {
165 165
             if ( did_action( 'current_screen' ) ) {
166 166
                 $this->_replyToLoadComponents();
167
-            } else {                
167
+            } else {
168 168
                 add_action( 'current_screen', array( $this, '_replyToLoadComponents' ) );
169 169
             }
170 170
         }
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function _replyToLoadComponents( /* $oScreen */ ) {
186 186
 
187
-        if ( ! $this->_isInThePage() ) { 
187
+        if ( ! $this->_isInThePage() ) {
188 188
             return; 
189 189
         }
190 190
                     
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      * @since       3.1.0
212 212
      * @internal
213 213
      */ 
214
-    protected function _isInstantiatable() { 
214
+    protected function _isInstantiatable() {
215 215
         return true; 
216 216
     }
217 217
     
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
      * @todo        Change the visibility scope to `protected` as the public version of the method `isInThePage()` has been introduced to make the design consitent.
227 227
      * @internal
228 228
      */
229
-    public function _isInThePage() { 
229
+    public function _isInThePage() {
230 230
         return true; 
231 231
     }
232 232
          
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     public function _replyToDetermineToLoad() {
242 242
 
243
-        if ( ! $this->_isInThePage() ) { 
243
+        if ( ! $this->_isInThePage() ) {
244 244
             return; 
245 245
         }
246 246
 
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
      * 
412 412
      * @internal
413 413
      */
414
-    public function __call( $sMethodName, $aArguments=null ) {    
414
+    public function __call( $sMethodName, $aArguments=null ) {
415 415
          
416 416
         $_mFirstArg = $this->oUtil->getElement( $aArguments, 0 );
417 417
         
Please login to merge, or discard this patch.
development/factory/user_meta/AdminPageFramework_UserMeta.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,16 +39,16 @@
 block discarded – undo
39 39
      * @since       3.7.4       Changed the default capability value to `read`.
40 40
      * @todo        Examine the appropriate default capability level.
41 41
      */
42
-    public function __construct( $sCapability='read', $sTextDomain='admin-page-framework' ) {
42
+    public function __construct( $sCapability = 'read', $sTextDomain = 'admin-page-framework' ) {
43 43
         
44 44
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
45 45
             ? $this->aSubClassNames[ 'oProp' ]
46
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
46
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
47 47
         $this->oProp = new $_sProprtyClassName( 
48
-            $this,                  // the caller object
49
-            get_class( $this ),     // the caller class name    
50
-            $sCapability,           // the capability level
51
-            $sTextDomain,           // the text domain
48
+            $this, // the caller object
49
+            get_class( $this ), // the caller class name    
50
+            $sCapability, // the capability level
51
+            $sTextDomain, // the text domain
52 52
             $this->_sStructureType  // the structure type
53 53
         );     
54 54
         
Please login to merge, or discard this patch.
factory/_common/form/field_type/AdminPageFramework_FieldType_media.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Defines the field type slugs used for this field type.
23 23
      */
24
-    public $aFieldTypeSlugs = array( 'media', );
24
+    public $aFieldTypeSlugs = array( 'media',);
25 25
     
26 26
     /**
27 27
      * Defines the default key-values of this field type. 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         return 
54 54
             $this->_getScript_MediaUploader(
55 55
                 "admin_page_framework"
56
-            ) . PHP_EOL
56
+            ).PHP_EOL
57 57
             . $this->_getScript_RegisterCallbacks();
58 58
     }    
59 59
     
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
             $_sInsertFromURL         = esc_js( $this->oMsg->get( 'insert_from_url' ) );
149 149
             
150 150
             // If the WordPress version is 3.4.x or below
151
-            if ( ! function_exists( 'wp_enqueue_media' ) ) {
151
+            if ( !function_exists( 'wp_enqueue_media' ) ) {
152 152
                 return <<<JAVASCRIPTS
153 153
                     /**
154 154
                      * Bind/rebinds the thickbox script the given selector element.
@@ -388,10 +388,10 @@  discard block
 block discarded – undo
388 388
             // Do not include the escaping character (backslash) in the heredoc variable declaration 
389 389
             // because the minifier script will parse it and the <<<JAVASCRIPTS and JAVASCRIPTS; parts are converted to double quotes (")
390 390
             // which causes the PHP syntax error.
391
-            $_sButtonHTML       = '"' . $this->_getUploaderButtonHTML_Media( $sInputID, $aButtonAttributes, $bExternalSource ) . '"';
392
-            $_sRpeatable        = $this->getAOrB( ! empty( $abRepeatable ), 'true', 'false' );
391
+            $_sButtonHTML       = '"'.$this->_getUploaderButtonHTML_Media( $sInputID, $aButtonAttributes, $bExternalSource ).'"';
392
+            $_sRpeatable        = $this->getAOrB( !empty( $abRepeatable ), 'true', 'false' );
393 393
             $_sExternalSource   = $this->getAOrB( $bExternalSource, 'true', 'false' );
394
-            $_sScript                = <<<JAVASCRIPTS
394
+            $_sScript = <<<JAVASCRIPTS
395 395
 if ( jQuery( 'a#select_media_{$sInputID}' ).length == 0 ) {
396 396
     jQuery( 'input#{$sInputID}' ).after( $_sButtonHTML );
397 397
 }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
                     . '/* <![CDATA[ */'
405 405
                     . $_sScript 
406 406
                     . '/* ]]> */'
407
-                . "</script>". PHP_EOL;
407
+                . "</script>".PHP_EOL;
408 408
 
409 409
         }
410 410
             /**
@@ -414,19 +414,19 @@  discard block
 block discarded – undo
414 414
              */
415 415
             private function _getUploaderButtonHTML_Media( $sInputID, array $aButtonAttributes, $bExternalSource ) {
416 416
                     
417
-                $_bIsLabelSet = isset( $aButtonAttributes['data-label'] ) && $aButtonAttributes['data-label'];
417
+                $_bIsLabelSet = isset( $aButtonAttributes[ 'data-label' ] ) && $aButtonAttributes[ 'data-label' ];
418 418
                 $_aAttributes = $this->_getFormattedUploadButtonAttributes_Media( 
419 419
                     $sInputID, 
420 420
                     $aButtonAttributes, 
421 421
                     $_bIsLabelSet, 
422 422
                     $bExternalSource 
423 423
                 );
424
-                return "<a " . $this->getAttributes( $_aAttributes ) . ">"
424
+                return "<a ".$this->getAttributes( $_aAttributes ).">"
425 425
                         . $this->getAOrB( 
426 426
                             $_bIsLabelSet,
427
-                            $_aAttributes['data-label'],
427
+                            $_aAttributes[ 'data-label' ],
428 428
                             $this->getAOrB(
429
-                                strrpos( $_aAttributes['class'], 'dashicons' ),
429
+                                strrpos( $_aAttributes[ 'class' ], 'dashicons' ),
430 430
                                 '',
431 431
                                 $this->oMsg->get( 'select_file' )
432 432
                             )
@@ -441,26 +441,26 @@  discard block
 block discarded – undo
441 441
                  */
442 442
                 private function _getFormattedUploadButtonAttributes_Media( $sInputID, array $aButtonAttributes, $_bIsLabelSet, $bExternalSource ) {
443 443
                    
444
-                    $_aAttributes           = array(
444
+                    $_aAttributes = array(
445 445
                             'id'        => "select_media_{$sInputID}",
446 446
                             'href'      => '#',            
447
-                            'data-uploader_type'            => ( string ) function_exists( 'wp_enqueue_media' ),    //  ? 1 : 0,
448
-                            'data-enable_external_source'   => ( string ) ( bool ) $bExternalSource,    //  ? 1 : 0, 
447
+                            'data-uploader_type'            => ( string ) function_exists( 'wp_enqueue_media' ), //  ? 1 : 0,
448
+                            'data-enable_external_source'   => ( string ) ( bool ) $bExternalSource, //  ? 1 : 0, 
449 449
                         ) 
450 450
                         + $aButtonAttributes
451 451
                         + array(
452 452
                             'title'     => $_bIsLabelSet 
453
-                                ? $aButtonAttributes['data-label'] 
453
+                                ? $aButtonAttributes[ 'data-label' ] 
454 454
                                 : $this->oMsg->get( 'select_file' ),
455 455
                             'data-label' => null,
456 456
                         );
457
-                    $_aAttributes['class']  = $this->getClassAttribute( 
457
+                    $_aAttributes[ 'class' ] = $this->getClassAttribute( 
458 458
                         'select_media button button-small ',
459 459
                         $this->getAOrB(
460
-                            trim( $aButtonAttributes['class'] ),
461
-                            $aButtonAttributes['class'],
460
+                            trim( $aButtonAttributes[ 'class' ] ),
461
+                            $aButtonAttributes[ 'class' ],
462 462
                             $this->getAOrB( 
463
-                                ! $_bIsLabelSet && version_compare( $GLOBALS['wp_version'], '3.8', '>=' ),
463
+                                !$_bIsLabelSet && version_compare( $GLOBALS[ 'wp_version' ], '3.8', '>=' ),
464 464
                                 'dashicons dashicons-portfolio',
465 465
                                 ''
466 466
                             )
Please login to merge, or discard this patch.
admin-page-framework-loader.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
      * @return      void
191 191
      */ 
192 192
     static public function setAdminNotice( $sMessage, $sClassAttribute='error' ) {
193
-        if ( ! is_admin() ) {  
193
+        if ( ! is_admin() ) {
194 194
             return; 
195 195
         }
196 196
         self::$_aAdminNotices[] = array(
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
  */
17 17
 class AdminPageFrameworkLoader_Registry_Base {
18 18
 
19
-    const VERSION        = '3.8.7';    // <--- DON'T FORGET TO CHANGE THIS AS WELL!!
19
+    const VERSION        = '3.8.7'; // <--- 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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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' ) ) {
@@ -234,8 +234,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
factory/taxonomy_field/AdminPageFramework_TaxonomyField_Router.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
                 
29 29
         parent::__construct( $oProp );
30 30
 
31
-        if ( ! $this->oProp->bIsAdmin ) {
31
+        if ( !$this->oProp->bIsAdmin ) {
32 32
             return;
33 33
         }
34 34
         
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         );
40 40
         
41 41
         add_action( 
42
-            'set_up_' . $this->oProp->sClassName,
42
+            'set_up_'.$this->oProp->sClassName,
43 43
             array( $this, '_replyToSetUpHooks' )
44 44
         );
45 45
         
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
             return true;
60 60
         }    
61 61
         
62
-        if ( ! in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) {
62
+        if ( !in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) {
63 63
             return false;
64 64
         }
65 65
         
66
-        if ( isset( $_GET[ 'taxonomy' ] ) && ! in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) {
66
+        if ( isset( $_GET[ 'taxonomy' ] ) && !in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) {
67 67
             return false;
68 68
         }        
69 69
         
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function _replyToSetUpHooks( $oFactory ) {
82 82
         
83
-        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
83
+        foreach ( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
84 84
             
85 85
             // Validation callbacks need to be set regardless of whether the current page is edit-tags.php or not.
86 86
             add_action( "created_{$_sTaxonomySlug}", array( $this, '_replyToValidateOptions' ), 10, 2 );
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     public function _replyToSetUpHooks( $oFactory ) {
82 82
         
83
-        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
83
+        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {
84 84
             
85 85
             // Validation callbacks need to be set regardless of whether the current page is edit-tags.php or not.
86 86
             add_action( "created_{$_sTaxonomySlug}", array( $this, '_replyToValidateOptions' ), 10, 2 );
Please login to merge, or discard this patch.