Completed
Branch master (b5e54a)
by
unknown
25:50
created
factory/admin_page/_controller/AdminPageFramework_Resource_Page.php 3 patches
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         
46 46
         // tab 
47 47
         if ( $_sPageSlug && $_sTabSlug ) {
48
-            $this->oProp->sStyle     = $this->addAndApplyFilters( 
48
+            $this->oProp->sStyle = $this->addAndApplyFilters( 
49 49
                 $_oCaller, 
50 50
                 "style_{$_sPageSlug}_{$_sTabSlug}", 
51 51
                 $this->oProp->sStyle 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         
55 55
         // page
56 56
         if ( $_sPageSlug ) {
57
-            $this->oProp->sStyle     = $this->addAndApplyFilters( 
57
+            $this->oProp->sStyle = $this->addAndApplyFilters( 
58 58
                 $_oCaller, 
59 59
                 "style_{$_sPageSlug}", 
60 60
                 $this->oProp->sStyle 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
          * @return      string      The tab slug if the tab has been added.
89 89
          */
90 90
         private function _getCurrentTabSlugForFilter( $sPageSlug ) {
91
-            $_sTabSlug  = $this->oProp->getCurrentTabSlug( $sPageSlug ); 
91
+            $_sTabSlug = $this->oProp->getCurrentTabSlug( $sPageSlug ); 
92 92
             return isset( $this->oProp->aInPageTabs[ $sPageSlug ][ $_sTabSlug ] )
93 93
                 ? $_sTabSlug
94 94
                 : '';          
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         
117 117
         // tab 
118 118
         if ( $_sPageSlug && $_sTabSlug ) {
119
-            $this->oProp->sScript     = $this->addAndApplyFilters( 
119
+            $this->oProp->sScript = $this->addAndApplyFilters( 
120 120
                 $_oCaller, 
121 121
                 "script_{$_sPageSlug}_{$_sTabSlug}", 
122 122
                 $this->oProp->sScript 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         
126 126
         // page
127 127
         if ( $_sPageSlug ) {
128
-            $this->oProp->sScript     = $this->addAndApplyFilters( 
128
+            $this->oProp->sScript = $this->addAndApplyFilters( 
129 129
                 $_oCaller, 
130 130
                 "script_{$_sPageSlug}", 
131 131
                 $this->oProp->sScript 
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
      * @since 2.1.5
144 144
      * @internal
145 145
      */
146
-    public function _enqueueStyles( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
146
+    public function _enqueueStyles( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
147 147
         
148 148
         $_aHandleIDs = array();
149
-        foreach( ( array ) $aSRCs as $_sSRC ) {
150
-            $_aHandleIDs[] = $this->_enqueueStyle( $_sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
149
+        foreach ( ( array ) $aSRCs as $_sSRC ) {
150
+            $_aHandleIDs[ ] = $this->_enqueueStyle( $_sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
151 151
         }
152 152
         return $_aHandleIDs;
153 153
         
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      * @return      string  The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
174 174
      * @internal
175 175
      */    
176
-    public function _enqueueStyle( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
176
+    public function _enqueueStyle( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
177 177
         return $this->_enqueueResourceByType( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs, 'style' );        
178 178
     }
179 179
     
@@ -182,11 +182,11 @@  discard block
 block discarded – undo
182 182
      * 
183 183
      * @since 2.1.5
184 184
      */
185
-    public function _enqueueScripts( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
185
+    public function _enqueueScripts( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
186 186
         
187 187
         $_aHandleIDs = array();
188
-        foreach( ( array ) $aSRCs as $_sSRC ) {
189
-            $_aHandleIDs[] = $this->_enqueueScript( $_sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
188
+        foreach ( ( array ) $aSRCs as $_sSRC ) {
189
+            $_aHandleIDs[ ] = $this->_enqueueScript( $_sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
190 190
         }
191 191
         return $_aHandleIDs;
192 192
         
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @return      string      The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
214 214
      * @internal
215 215
      */
216
-    public function _enqueueScript( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
216
+    public function _enqueueScript( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
217 217
         return $this->_enqueueResourceByType( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs, 'script' );
218 218
     }
219 219
         /**
@@ -226,20 +226,20 @@  discard block
 block discarded – undo
226 226
          * @param       array       $aCustomArgs    A custom argument array.
227 227
          * @param       string      $sType          Accepts 'style' or 'script'
228 228
          */
229
-        private function _enqueueResourceByType( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array(), $sType='style' ) {
229
+        private function _enqueueResourceByType( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array(), $sType = 'style' ) {
230 230
             
231
-            $sSRC       = trim( $sSRC );
231
+            $sSRC = trim( $sSRC );
232 232
             if ( empty( $sSRC ) ) { 
233 233
                 return ''; 
234 234
             }
235
-            $sSRC       = $this->getResolvedSRC( $sSRC );
235
+            $sSRC = $this->getResolvedSRC( $sSRC );
236 236
 
237 237
             // Get the property name for the type
238 238
             $_sContainerPropertyName     = $this->_getContainerPropertyNameByType( $sType );
239 239
             $_sEnqueuedIndexPropertyName = $this->_getEnqueuedIndexPropertyNameByType( $sType );
240 240
             
241 241
             // setting the key based on the url prevents duplicate items
242
-            $_sSRCHash  = md5( $sSRC );
242
+            $_sSRCHash = md5( $sSRC );
243 243
             if ( isset( $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ] ) ) { 
244 244
                 return ''; 
245 245
             } 
@@ -250,13 +250,13 @@  discard block
 block discarded – undo
250 250
                     'sTabSlug'  => $sTabSlug,
251 251
                     'sSRC'      => $sSRC,
252 252
                     'sType'     => $sType,
253
-                    'handle_id' => $sType . '_' . $this->oProp->sClassName . '_' .  ( ++$this->oProp->{$_sEnqueuedIndexPropertyName} ),
253
+                    'handle_id' => $sType.'_'.$this->oProp->sClassName.'_'.( ++$this->oProp->{$_sEnqueuedIndexPropertyName} ),
254 254
                 )
255 255
                 + self::$_aStructure_EnqueuingResources
256 256
                 ;
257 257
 
258 258
             // Store the attributes in another container by url.
259
-            $this->oProp->aResourceAttributes[ $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ]['handle_id'] ] = $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ]['attributes'];
259
+            $this->oProp->aResourceAttributes[ $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ][ 'handle_id' ] ] = $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ][ 'attributes' ];
260 260
             
261 261
             return $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ][ 'handle_id' ];
262 262
             
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
      * @since       3.0.0
297 297
      * @internal
298 298
      */
299
-    public function _forceToEnqueueStyle( $sSRC, $aCustomArgs=array() ) {
299
+    public function _forceToEnqueueStyle( $sSRC, $aCustomArgs = array() ) {
300 300
         return $this->_enqueueStyle( $sSRC, '', '', $aCustomArgs );
301 301
     }
302 302
     /**
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      * @since       3.0.0
307 307
      * @internal
308 308
      */    
309
-    public function _forceToEnqueueScript( $sSRC, $aCustomArgs=array() ) {
309
+    public function _forceToEnqueueScript( $sSRC, $aCustomArgs = array() ) {
310 310
         return $this->_enqueueScript( $sSRC, '', '', $aCustomArgs );
311 311
     }
312 312
     
@@ -323,11 +323,11 @@  discard block
 block discarded – undo
323 323
 
324 324
         $sCurrentPageSlug   = $this->oProp->getCurrentPageSlug();
325 325
         $sCurrentTabSlug    = $this->oProp->getCurrentTabSlug( $sCurrentPageSlug );
326
-        $sPageSlug          = $aEnqueueItem['sPageSlug'];
327
-        $sTabSlug           = $aEnqueueItem['sTabSlug'];
326
+        $sPageSlug          = $aEnqueueItem[ 'sPageSlug' ];
327
+        $sTabSlug           = $aEnqueueItem[ 'sTabSlug' ];
328 328
 
329 329
         // If the page slug is not specified and the currently loading page is one of the pages that is added by the framework,
330
-        if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework)
330
+        if ( !$sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework)
331 331
             return $this->_enqueueSRC( $aEnqueueItem );
332 332
         }
333 333
                 
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         // If the tab slug is not specified and the page slug is specified, 
343 343
         // and if the current loading page slug and the specified one matches,
344 344
         if ( 
345
-            ( $sPageSlug && ! $sTabSlug )
345
+            ( $sPageSlug && !$sTabSlug )
346 346
             && ( $sCurrentPageSlug == $sPageSlug )
347 347
         ) {
348 348
             return $this->_enqueueSRC( $aEnqueueItem );
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
         private function _enqueueResourceByType( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array(), $sType='style' ) {
230 230
             
231 231
             $sSRC       = trim( $sSRC );
232
-            if ( empty( $sSRC ) ) { 
232
+            if ( empty( $sSRC ) ) {
233 233
                 return ''; 
234 234
             }
235 235
             $sSRC       = $this->getResolvedSRC( $sSRC );
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
             
241 241
             // setting the key based on the url prevents duplicate items
242 242
             $_sSRCHash  = md5( $sSRC );
243
-            if ( isset( $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ] ) ) { 
243
+            if ( isset( $this->oProp->{$_sContainerPropertyName}[ $_sSRCHash ] ) ) {
244 244
                 return ''; 
245 245
             } 
246 246
             
@@ -327,7 +327,8 @@  discard block
 block discarded – undo
327 327
         $sTabSlug           = $aEnqueueItem['sTabSlug'];
328 328
 
329 329
         // If the page slug is not specified and the currently loading page is one of the pages that is added by the framework,
330
-        if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) { // means script-global(among pages added by the framework)
330
+        if ( ! $sPageSlug && $this->oProp->isPageAdded( $sCurrentPageSlug ) ) {
331
+// means script-global(among pages added by the framework)
331 332
             return $this->_enqueueSRC( $aEnqueueItem );
332 333
         }
333 334
                 
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Admin Page Framework
4
- * 
5
- * http://en.michaeluno.jp/admin-page-framework/
6
- * Copyright (c) 2013-2015 Michael Uno; Licensed MIT
7
- * 
8
- */
3
+     * Admin Page Framework
4
+     * 
5
+     * http://en.michaeluno.jp/admin-page-framework/
6
+     * Copyright (c) 2013-2015 Michael Uno; Licensed MIT
7
+     * 
8
+     */
9 9
 
10 10
 /**
11 11
  * Provides methods for creating fields in the taxonomy page (edit-tags.php).
Please login to merge, or discard this patch.
factory/admin_page/_model/AdminPageFramework_CustomSubmitFields.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function __construct( array $aPostElement ) {
36 36
             
37 37
         $this->aPost    = $aPostElement;
38
-        $this->sInputID = $this->getInputID( $aPostElement['submit'] ); // the submit element must be set by the field type.
38
+        $this->sInputID = $this->getInputID( $aPostElement[ 'submit' ] ); // the submit element must be set by the field type.
39 39
     
40 40
     }
41 41
     
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
      * @since   2.0.0
48 48
      * @since   3.4.0   Changed the name from `getElement()`.
49 49
      */ 
50
-    protected function getSubmitValueByType( $aElement, $sInputID, $sElementKey='format' ) {
50
+    protected function getSubmitValueByType( $aElement, $sInputID, $sElementKey = 'format' ) {
51 51
             
52 52
         return $this->getElement( 
53
-            $aElement,  // subject array
53
+            $aElement, // subject array
54 54
             array( $sInputID, $sElementKey ), // dimensional keys
55 55
             null    // default
56 56
         );
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         // Only the pressed element will be stored in the array.
81 81
         // The input tag: name="__import[submit][my_section_my_import_field_the_index]" value="Import Button"
82 82
         // The array structure:  array( 'my_section_my_import_field_the_index' => 'Import Button' )
83
-        foreach( $aSubmitElement as $sInputID => $v ) { // $aSubmitElement should have been set in the constructor.
83
+        foreach ( $aSubmitElement as $sInputID => $v ) { // $aSubmitElement should have been set in the constructor.
84 84
             $this->sInputID = $sInputID;
85 85
             return $this->sInputID;
86 86
         }     
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * 
63 63
      * @since 2.1.5
64 64
      */
65
-    public function getSiblingValue( $sKey ) {    
65
+    public function getSiblingValue( $sKey ) {
66 66
         return $this->getSubmitValueByType( $this->aPost, $this->sInputID, $sKey );
67 67
     }
68 68
     
@@ -80,7 +80,8 @@  discard block
 block discarded – undo
80 80
         // Only the pressed element will be stored in the array.
81 81
         // The input tag: name="__import[submit][my_section_my_import_field_the_index]" value="Import Button"
82 82
         // The array structure:  array( 'my_section_my_import_field_the_index' => 'Import Button' )
83
-        foreach( $aSubmitElement as $sInputID => $v ) { // $aSubmitElement should have been set in the constructor.
83
+        foreach( $aSubmitElement as $sInputID => $v ) {
84
+// $aSubmitElement should have been set in the constructor.
84 85
             $this->sInputID = $sInputID;
85 86
             return $this->sInputID;
86 87
         }     
Please login to merge, or discard this patch.
development/factory/admin_page/_model/AdminPageFramework_ExportOptions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
      * @since       2.0.0
95 95
      * @since       3.5.4       Added the `$aHeader` parameter. Deprecated the `$sFileName` parameter as it is included in the $aHeader definition.
96 96
      */ 
97
-    public function doExport( $vData, $sFormatType=null, array $aHeader=array() ) {
97
+    public function doExport( $vData, $sFormatType = null, array $aHeader = array() ) {
98 98
 
99
-        $sFormatType    = isset( $sFormatType ) 
99
+        $sFormatType = isset( $sFormatType ) 
100 100
             ? $sFormatType 
101 101
             : $this->sFormatType;
102 102
 
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
          * @since       3.5.4
123 123
          * @return      void
124 124
          */
125
-        private function _outputHTTPHeader( array $aHeader, $sKey='' ) {
125
+        private function _outputHTTPHeader( array $aHeader, $sKey = '' ) {
126 126
             
127
-            foreach( $aHeader as $_sKey => $_asValue ) {
127
+            foreach ( $aHeader as $_sKey => $_asValue ) {
128 128
                 
129 129
                 // Nested items. Set the key to overrider array keys.
130 130
                 if ( is_array( $_asValue ) ) {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
                     return;
165 165
                 case 'json': // for json.
166 166
                     echo json_encode( ( array ) $vData );
167
-                    return ;
167
+                    return;
168 168
                 case 'array': // for serialized PHP array.
169 169
                 default: // for anything else, 
170 170
                     echo serialize( ( array ) $vData );
Please login to merge, or discard this patch.
_model/delegate/AdminPageFramework_Model__FormRedirectHandler.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function __construct( $oFactory ) {
30 30
        
31
-        $this->oFactory         = $oFactory;        
31
+        $this->oFactory = $oFactory;        
32 32
         
33 33
         // wp_mail() will be loaded by the time 'after_setup_theme' is loaded.
34 34
         // @deprecated      DEVVER
@@ -52,18 +52,18 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function _replyToCheckRedirects() {
54 54
   
55
-        if ( ! $this->_shouldProceed() ) {
55
+        if ( !$this->_shouldProceed() ) {
56 56
             return;
57 57
         }
58 58
 
59 59
         // The redirect transient key.
60
-        $_sTransient = 'apf_rurl' . md5( 
61
-            trim( "redirect_{$this->oFactory->oProp->sClassName}_{$_GET['page']}" )
60
+        $_sTransient = 'apf_rurl'.md5( 
61
+            trim( "redirect_{$this->oFactory->oProp->sClassName}_{$_GET[ 'page' ]}" )
62 62
         );
63 63
         
64 64
         // Check the settings error transient.
65 65
         $_aError = $this->oFactory->_getFieldErrors( $_GET[ 'page' ], false );
66
-        if ( ! empty( $_aError ) ) {
66
+        if ( !empty( $_aError ) ) {
67 67
             $this->deleteTransient( $_sTransient ); // we don't need it any more.
68 68
             return;
69 69
         }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         private function _shouldProceed() {
91 91
 
92 92
             // Check if it's one of the plugin's added page. If not, do nothing.
93
-            if ( ! $this->oFactory->_isInThePage() ) {
93
+            if ( !$this->oFactory->_isInThePage() ) {
94 94
                 return false;
95 95
             }
96 96
             
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
                 'settings-updated',
104 104
                 false
105 105
             );            
106
-            if ( ! $_bsSettingsUpdatedFlag ) {
106
+            if ( !$_bsSettingsUpdatedFlag ) {
107 107
                 return false;
108 108
             }
109 109
             
Please login to merge, or discard this patch.
delegate/validaor/AdminPageFramework_Model__FormSubmission__Validator.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->oFactory = $oFactory;
31 31
         
32 32
         add_filter(
33
-            "validation_pre_" . $this->oFactory->oProp->sClassName,
33
+            "validation_pre_".$this->oFactory->oProp->sClassName,
34 34
             array( $this, '_replyToValiateUserFormInputs' ),
35 35
             10,
36 36
             4
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $_sSubmitSectionID  = $this->_getPressedSubmitButtonData( $_aSubmits, 'section_id' );
62 62
             
63 63
             // Submit Information - [3.5.0+] this will be passed to validation callback methods.
64
-            $_aSubmitsInformation        = array(
64
+            $_aSubmitsInformation = array(
65 65
                 'page_slug'     => $_sPageSlug,
66 66
                 'tab_slug'      => $_sTabSlug,
67 67
                 'input_id'      => $this->_getPressedSubmitButtonData( $_aSubmits, 'input_id' ), 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 'AdminPageFramework_Model__FormSubmission__Validator__ContactFormConfirm',
86 86
                 
87 87
             );
88
-            foreach( $_aClassNames as $_sClassName ) {
88
+            foreach ( $_aClassNames as $_sClassName ) {
89 89
                 new $_sClassName( $this->oFactory );
90 90
             }
91 91
             
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                 
95 95
                 $this->addAndDoActions(
96 96
                     $this->oFactory,
97
-                    'try_validation_before_' . $this->oFactory->oProp->sClassName,
97
+                    'try_validation_before_'.$this->oFactory->oProp->sClassName,
98 98
                     $aInputs,
99 99
                     $aRawInputs,
100 100
                     $_aSubmits,
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
                 $this->addAndDoActions(
115 115
                     $this->oFactory,
116
-                    'try_validation_after_' . $this->oFactory->oProp->sClassName,
116
+                    'try_validation_after_'.$this->oFactory->oProp->sClassName,
117 117
                     $aInputs,
118 118
                     $aRawInputs,
119 119
                     $_aSubmits,
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator_Base.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             : 'add_filter';
37 37
             
38 38
         $_sFunctionName(
39
-            $this->sActionHookPrefix . $this->oFactory->oProp->sClassName,
39
+            $this->sActionHookPrefix.$this->oFactory->oProp->sClassName,
40 40
             array( $this, $this->sCallbackName ),
41 41
             $this->iHookPriority,
42 42
             $this->iCallbackParameters
@@ -56,17 +56,17 @@  discard block
 block discarded – undo
56 56
      * @since   3.6.3       Moved from `AdminPageFramework_Validation`.
57 57
      * @return  array       The intact stored options.
58 58
      */
59
-    protected function _confirmSubmitButtonAction( $sPressedInputName, $sSectionID, $sType='reset' ) {
59
+    protected function _confirmSubmitButtonAction( $sPressedInputName, $sSectionID, $sType = 'reset' ) {
60 60
         
61
-        switch( $sType ) {
61
+        switch ( $sType ) {
62 62
             default:
63 63
             case 'reset':
64 64
                 $_sFieldErrorMessage = $this->oFactory->oMsg->get( 'reset_options' );
65
-                $_sTransientKey      =  'apf_rc_' . md5( $sPressedInputName . get_current_user_id() );
65
+                $_sTransientKey      = 'apf_rc_'.md5( $sPressedInputName.get_current_user_id() );
66 66
                 break;
67 67
             case 'email':
68 68
                 $_sFieldErrorMessage = $this->oFactory->oMsg->get( 'send_email' );
69
-                $_sTransientKey      =  'apf_ec_' . md5( $sPressedInputName . get_current_user_id() );
69
+                $_sTransientKey      = 'apf_ec_'.md5( $sPressedInputName.get_current_user_id() );
70 70
                 break;                
71 71
         }
72 72
         
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $this->oFactory->setFieldErrors( $_aErrors );
89 89
             
90 90
         // Set a flag that the confirmation is displayed
91
-        $this->setTransient( $_sTransientKey, $sPressedInputName, 60*2 );
91
+        $this->setTransient( $_sTransientKey, $sPressedInputName, 60 * 2 );
92 92
         
93 93
         // Set the admin notice
94 94
         $this->oFactory->setSettingNotice( $this->oFactory->oMsg->get( 'confirm_perform_task' ), 'error confirmation' );
Please login to merge, or discard this patch.
AdminPageFramework_Model__FormSubmission__Validator__ContactForm.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
     public function _replyToCallback( $aInputs, $aRawInputs, array $aSubmits, $aSubmitInformation, $oFactory ) {
35 35
                 
36 36
         // Check whether sending an email has been confirmed by the user or not.
37
-        $_bConfirmedToSendEmail     = ( bool ) $this->_getPressedSubmitButtonData( 
37
+        $_bConfirmedToSendEmail = ( bool ) $this->_getPressedSubmitButtonData( 
38 38
             $aSubmits, 
39 39
             'confirmed_sending_email' 
40 40
         );
41
-        if ( ! $_bConfirmedToSendEmail ) {
41
+        if ( !$_bConfirmedToSendEmail ) {
42 42
             return;
43 43
         }
44 44
         
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
             $this->getElement( $aSubmitInformation, 'section_id' )
50 50
         );
51 51
         $this->oFactory->oProp->_bDisableSavingOptions = true;
52
-        $this->deleteTransient( 'apf_tfd' . md5( 'temporary_form_data_' . $this->oFactory->oProp->sClassName . get_current_user_id() ) );
52
+        $this->deleteTransient( 'apf_tfd'.md5( 'temporary_form_data_'.$this->oFactory->oProp->sClassName.get_current_user_id() ) );
53 53
         
54 54
         // Schedule to remove the confirmation url query key.
55 55
         add_action( "setting_update_url_{$this->oFactory->oProp->sClassName}", array( $this, '_replyToRemoveConfirmationQueryKey' ) );
56 56
         
57 57
         // Go to the catch clause.
58
-        $_oException = new Exception( 'aReturn' );  // the property name to return from the catch clasue.
58
+        $_oException = new Exception( 'aReturn' ); // the property name to return from the catch clasue.
59 59
         $_oException->aReturn = $aInputs;
60 60
         throw $_oException;
61 61
     
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
          */
74 74
         private function _sendEmailInBackground( $aInputs, $sPressedInputNameFlat, $sSubmitSectionID ) {
75 75
             
76
-            $_sTranskentKey = 'apf_em_' . md5( $sPressedInputNameFlat . get_current_user_id() );
76
+            $_sTranskentKey = 'apf_em_'.md5( $sPressedInputNameFlat.get_current_user_id() );
77 77
             $_aEmailOptions = $this->getTransient( $_sTranskentKey );
78 78
             $this->deleteTransient( $_sTranskentKey );
79 79
 
@@ -88,13 +88,13 @@  discard block
 block discarded – undo
88 88
                 'name'          => '',
89 89
             );
90 90
 
91
-            $_sTransientKey  = 'apf_emd_' . md5( $sPressedInputNameFlat . get_current_user_id() );
91
+            $_sTransientKey  = 'apf_emd_'.md5( $sPressedInputNameFlat.get_current_user_id() );
92 92
             $_aFormEmailData = array(
93 93
                 'email_options' => $_aEmailOptions,
94 94
                 'input'         => $aInputs,
95 95
                 'section_id'    => $sSubmitSectionID,
96 96
             );
97
-            $_bIsSet = $this->setTransient( $_sTransientKey,  $_aFormEmailData, 100 );
97
+            $_bIsSet = $this->setTransient( $_sTransientKey, $_aFormEmailData, 100 );
98 98
             
99 99
             // Send the email in the background.
100 100
             wp_remote_get( 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             );  
113 113
             
114 114
             // @remark      Not possible to tell whether it is sent or not at the moment because it is performed in the background.
115
-            $_bSent      = $_bIsSet;    
115
+            $_bSent = $_bIsSet;    
116 116
             $this->oFactory->setSettingNotice( 
117 117
                 $this->oFactory->oMsg->get( 
118 118
                     $this->getAOrB( 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
          * @return      string
135 135
          */
136 136
         public function _replyToRemoveConfirmationQueryKey( $sSettingUpdateURL ) {
137
-            return remove_query_arg( array( 'confirmation', ), $sSettingUpdateURL );
137
+            return remove_query_arg( array( 'confirmation',), $sSettingUpdateURL );
138 138
         }      
139 139
         
140 140
 }
141 141
\ No newline at end of file
Please login to merge, or discard this patch.
AdminPageFramework_Model__FormSubmission__Validator__ContactFormConfirm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
         if ( $this->oFactory->hasFieldError() ) {
37 37
             return;
38 38
         }
39
-        $_bConfirmingToSendEmail    = ( bool ) $this->_getPressedSubmitButtonData( 
39
+        $_bConfirmingToSendEmail = ( bool ) $this->_getPressedSubmitButtonData( 
40 40
             $aSubmits, 
41 41
             'confirming_sending_email' 
42 42
         );
43
-        if ( ! $_bConfirmingToSendEmail ) {
43
+        if ( !$_bConfirmingToSendEmail ) {
44 44
             return;
45 45
         }
46 46
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         );            
54 54
         
55 55
         // Go to the catch clause.
56
-        $_oException = new Exception( 'aReturn' );  // the property name to return from the catch clasue.
56
+        $_oException = new Exception( 'aReturn' ); // the property name to return from the catch clasue.
57 57
         $_oException->aReturn = $this->_confirmSubmitButtonAction( 
58 58
             $this->getElement( $aSubmitInformation, 'input_name' ), 
59 59
             $this->getElement( $aSubmitInformation, 'section_id' ), 
Please login to merge, or discard this patch.
validaor/AdminPageFramework_Model__FormSubmission__Validator__Filter.php 3 patches
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
                     $this->oFactory
90 90
                 ),               
91 91
                 'aStoredTabDataWODynamicElements' => array(),
92
-                'aEmbeddedDataWODynamicElements'  => array(),   // stores page meta box field options. This will be updated inside the validation methods.
92
+                'aEmbeddedDataWODynamicElements'  => array(), // stores page meta box field options. This will be updated inside the validation methods.
93 93
                 'aSubmitInformation'    => $aSubmitInformation, // 3.5.0+
94 94
             );
95 95
             
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                 call_user_func_array( 
105 105
                     array( $this->oFactory, 'validate' ), // triggers __call()
106 106
                     array( $_aData[ 'aInput' ], $_aData[ 'aStoredData' ], $this->oFactory, $_aData[ 'aSubmitInformation' ] )
107
-                ),    // 3.5.3+
107
+                ), // 3.5.3+
108 108
                 $_aData[ 'aStoredData' ],
109 109
                 $_aData[ 'aSubmitInformation' ] // 3.5.0+
110 110
             );
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             
116 116
             // If everything fine, return the filtered input data. 
117 117
             $this->_bHasFieldErrors = $this->oFactory->hasFieldError();
118
-            if ( ! $this->_bHasFieldErrors ) {
118
+            if ( !$this->_bHasFieldErrors ) {
119 119
                 return $_aInput;
120 120
             }
121 121
             
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             );            
130 130
                         
131 131
             // Go to the catch clause.
132
-            $_oException = new Exception( 'aReturn' );  // the property name to return from the catch clause.
132
+            $_oException = new Exception( 'aReturn' ); // the property name to return from the catch clause.
133 133
             $_oException->aReturn = $_aInput;
134 134
             throw $_oException;
135 135
 
@@ -152,13 +152,13 @@  discard block
 block discarded – undo
152 152
              */
153 153
             private function _getInputByUnset( array $aInputs ) {
154 154
                 
155
-                $_sUnsetKey = '__unset_' . $this->oFactory->oProp->sStructureType;
156
-                if ( ! isset( $_POST[ $_sUnsetKey ] ) ) {
155
+                $_sUnsetKey = '__unset_'.$this->oFactory->oProp->sStructureType;
156
+                if ( !isset( $_POST[ $_sUnsetKey ] ) ) {
157 157
                     return $aInputs;
158 158
                 }
159 159
                 
160 160
                 $_aUnsetElements = array_unique( $_POST[ $_sUnsetKey ] );
161
-                foreach( $_aUnsetElements as $_sFlatInputName ) {
161
+                foreach ( $_aUnsetElements as $_sFlatInputName ) {
162 162
                     $_aDimensionalKeys = explode( '|', $_sFlatInputName );
163 163
                     
164 164
                     // The first element is the option key; the section or field dimensional keys follow.
@@ -181,22 +181,22 @@  discard block
 block discarded – undo
181 181
              */
182 182
             private function _validateEachField( array $aData, array $aInputsToParse ) {
183 183
                 
184
-                foreach( $aInputsToParse as $_sID => $_aSectionOrFields ) { // $_sID is either a section id or a field id
184
+                foreach ( $aInputsToParse as $_sID => $_aSectionOrFields ) { // $_sID is either a section id or a field id
185 185
                     
186 186
                     // For each section
187 187
                     if ( $this->oFactory->oForm->isSection( $_sID ) ) {
188 188
                         
189 189
                         // If the parsing item does not belong to the current page, do not call the validation callback method.
190
-                        if ( ! $this->_isValidSection( $_sID, $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] ) ) {
190
+                        if ( !$this->_isValidSection( $_sID, $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] ) ) {
191 191
                             continue;
192 192
                         }                             
193 193
                         
194 194
                         // Call the validation callback method.
195
-                        foreach( $_aSectionOrFields as $_sFieldID => $_aFields ) { // For fields
195
+                        foreach ( $_aSectionOrFields as $_sFieldID => $_aFields ) { // For fields
196 196
                             $aData[ 'aInput' ][ $_sID ][ $_sFieldID ] = $this->_getValidatedData(
197 197
                                 "validation_{$this->oFactory->oProp->sClassName}_{$_sID}_{$_sFieldID}", 
198 198
                                 $aData[ 'aInput' ][ $_sID ][ $_sFieldID ], 
199
-                                $this->getElement( $aData, array( 'aStoredData', $_sID, $_sFieldID ), null ),    // isset( $aData[ 'aStoredData' ][ $_sID ][ $_sFieldID ] ) ? $aData[ 'aStoredData' ][ $_sID ][ $_sFieldID ] : null,
199
+                                $this->getElement( $aData, array( 'aStoredData', $_sID, $_sFieldID ), null ), // isset( $aData[ 'aStoredData' ][ $_sID ][ $_sFieldID ] ) ? $aData[ 'aStoredData' ][ $_sID ][ $_sFieldID ] : null,
200 200
                                 $aData[ 'aSubmitInformation' ]    // 3.5.0+
201 201
                             );
202 202
                         }
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                         $aData[ 'aInput' ][ $_sID ] = $this->_getValidatedData(
218 218
                             "validation_{$this->oFactory->oProp->sClassName}_{$_sID}", 
219 219
                             $_aSectionInput,
220
-                            $this->getElement( $aData, array( 'aStoredData', $_sID ), null ),    // isset( $aData[ 'aStoredData' ][ $_sID ] ) ? $aData[ 'aStoredData' ][ $_sID ] : null,
220
+                            $this->getElement( $aData, array( 'aStoredData', $_sID ), null ), // isset( $aData[ 'aStoredData' ][ $_sID ] ) ? $aData[ 'aStoredData' ][ $_sID ] : null,
221 221
                             $aData[ 'aSubmitInformation' ]
222 222
                         );     
223 223
                         
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
                     }
227 227
                                         
228 228
                     // Check if the parsing item (the default section) belongs to the current page; if not, do not call the validation callback method.
229
-                    if ( ! $this->_isValidSection( '_default', $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] ) ) {
229
+                    if ( !$this->_isValidSection( '_default', $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] ) ) {
230 230
                         continue;
231 231
                     }  
232 232
                     
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                     $aData[ 'aInput' ][ $_sID ] = $this->_getValidatedData(
235 235
                         "validation_{$this->oFactory->oProp->sClassName}_{$_sID}",
236 236
                         $aData[ 'aInput' ][ $_sID ],
237
-                        $this->getElement( $aData, array( 'aStoredData', $_sID ), null ),    // isset( $aData[ 'aStoredData' ][ $_sID ] ) ? $aData[ 'aStoredData' ][ $_sID ] : null,
237
+                        $this->getElement( $aData, array( 'aStoredData', $_sID ), null ), // isset( $aData[ 'aStoredData' ][ $_sID ] ) ? $aData[ 'aStoredData' ][ $_sID ] : null,
238 238
                         $aData[ 'aSubmitInformation' ]
239 239
                     );
240 240
                     
@@ -276,22 +276,22 @@  discard block
 block discarded – undo
276 276
              */
277 277
             private function _validateTabFields( array $aData ) {
278 278
                 
279
-                if ( ! $aData[ 'sTabSlug' ] || ! $aData[ 'sPageSlug' ] ) { 
279
+                if ( !$aData[ 'sTabSlug' ] || !$aData[ 'sPageSlug' ] ) { 
280 280
                     return $aData; 
281 281
                 }
282 282
                     
283
-                $aData[ 'aStoredTabData' ]        = $this->oFactory->oForm->getTabOptions( 
283
+                $aData[ 'aStoredTabData' ] = $this->oFactory->oForm->getTabOptions( 
284 284
                     $aData[ 'aStoredData' ], 
285 285
                     $aData[ 'sPageSlug' ], 
286 286
                     $aData[ 'sTabSlug' ] 
287 287
                 ); // respects page meta box fields
288
-                $aData[ 'aStoredTabData' ]        = $this->addAndApplyFilter(
288
+                $aData[ 'aStoredTabData' ] = $this->addAndApplyFilter(
289 289
                     $this->oFactory, 
290 290
                     "validation_saved_options_{$aData[ 'sPageSlug' ]}_{$aData[ 'sTabSlug' ]}", 
291 291
                     $aData[ 'aStoredTabData' ], 
292 292
                     $this->oFactory 
293 293
                 );
294
-                $_aOtherTabOptions  = $this->oFactory->oForm->getOtherTabOptions( $aData[ 'aStoredData' ], $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] );
294
+                $_aOtherTabOptions = $this->oFactory->oForm->getOtherTabOptions( $aData[ 'aStoredData' ], $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] );
295 295
 
296 296
                 // This options data contain embedded options.
297 297
                 $aData[ 'aStoredTabDataWODynamicElements' ] = $this->oFactory->oForm->getTabOptions( $aData[ 'aStoredDataWODynamicElements' ], $aData[ 'sPageSlug' ], $aData[ 'sTabSlug' ] );
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
              */
338 338
             private function _validatePageFields( array $aData ) {
339 339
            
340
-                if ( ! $aData[ 'sPageSlug' ] ) { 
340
+                if ( !$aData[ 'sPageSlug' ] ) { 
341 341
                     return $aData[ 'aInput' ]; 
342 342
                 }
343 343
 
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
                 $_aPageOptionsWODynamicElements = $this->addAndApplyFilter( 
350 350
                     $this->oFactory, 
351 351
                     "validation_saved_options_without_dynamic_elements_{$aData[ 'sPageSlug' ]}", 
352
-                    $this->oFactory->oForm->getPageOptions( $aData[ 'aStoredDataWODynamicElements' ], $aData[ 'sPageSlug' ] ),     // united with the in-page tab specific data in order to override the page-specific dynamic elements.
352
+                    $this->oFactory->oForm->getPageOptions( $aData[ 'aStoredDataWODynamicElements' ], $aData[ 'sPageSlug' ] ), // united with the in-page tab specific data in order to override the page-specific dynamic elements.
353 353
                     $this->oFactory 
354 354
                 );                
355 355
 
@@ -362,15 +362,15 @@  discard block
 block discarded – undo
362 362
                 // Validate the input data.
363 363
                 $aData[ 'aInput' ] = $this->_getValidatedData(
364 364
                     "validation_{$aData[ 'sPageSlug' ]}", 
365
-                    $aData[ 'aInput' ],                   // new values
366
-                    $_aPageOptions,                     // stored page options
365
+                    $aData[ 'aInput' ], // new values
366
+                    $_aPageOptions, // stored page options
367 367
                     $aData[ 'aSubmitInformation' ]        // submit information 3.5.0+
368 368
                 );
369 369
 
370 370
                 // If it's in a tab-page, drop the elements which belong to the tab so that arrayed-options will not be merged such as multiple select options.
371
-                $_aPageOptions = $aData[ 'sTabSlug' ] && ! empty( $aData[ 'aStoredTabData' ] ) 
371
+                $_aPageOptions = $aData[ 'sTabSlug' ] && !empty( $aData[ 'aStoredTabData' ] ) 
372 372
                     ? $this->invertCastArrayContents( $_aPageOptions, $aData[ 'aStoredTabData' ] ) 
373
-                    : ( ! $aData[ 'sTabSlug' ] // if the tab is not specified, do not merge the input array with the page options as the input array already includes the page options. This is for dynamic elements(repeatable sections).
373
+                    : ( !$aData[ 'sTabSlug' ] // if the tab is not specified, do not merge the input array with the page options as the input array already includes the page options. This is for dynamic elements(repeatable sections).
374 374
                         ? array()
375 375
                         : $_aPageOptions
376 376
                     );    
@@ -425,13 +425,13 @@  discard block
 block discarded – undo
425 425
                  * @param       array       $aStoredData    The stored option.
426 426
                  * @param       array       $aSubmitInfo    [3.5.0+] The form submit information such as the field ID of the pressed submit field.
427 427
                  */
428
-                private function _getValidatedData( $sFilterName, $aInputs, $aStoredData, $aSubmitInfo=array() ) {
428
+                private function _getValidatedData( $sFilterName, $aInputs, $aStoredData, $aSubmitInfo = array() ) {
429 429
                     return $this->addAndApplyFilter( 
430
-                        $this->oFactory,          // caller
431
-                        $sFilterName,   // hook name
432
-                        $aInputs,        // 1st argument
433
-                        $aStoredData,   // 2nd argument
434
-                        $this->oFactory,          // 3rd argument
430
+                        $this->oFactory, // caller
431
+                        $sFilterName, // hook name
432
+                        $aInputs, // 1st argument
433
+                        $aStoredData, // 2nd argument
434
+                        $this->oFactory, // 3rd argument
435 435
                         $aSubmitInfo    // 4th argument 3.5.0+
436 436
                     );                    
437 437
                 }  
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,7 +181,8 @@  discard block
 block discarded – undo
181 181
              */
182 182
             private function _validateEachField( array $aData, array $aInputsToParse ) {
183 183
                 
184
-                foreach( $aInputsToParse as $_sID => $_aSectionOrFields ) { // $_sID is either a section id or a field id
184
+                foreach( $aInputsToParse as $_sID => $_aSectionOrFields ) {
185
+// $_sID is either a section id or a field id
185 186
                     
186 187
                     // For each section
187 188
                     if ( $this->oFactory->oForm->isSection( $_sID ) ) {
@@ -192,7 +193,8 @@  discard block
 block discarded – undo
192 193
                         }                             
193 194
                         
194 195
                         // Call the validation callback method.
195
-                        foreach( $_aSectionOrFields as $_sFieldID => $_aFields ) { // For fields
196
+                        foreach( $_aSectionOrFields as $_sFieldID => $_aFields ) {
197
+// For fields
196 198
                             $aData[ 'aInput' ][ $_sID ][ $_sFieldID ] = $this->_getValidatedData(
197 199
                                 "validation_{$this->oFactory->oProp->sClassName}_{$_sID}_{$_sFieldID}", 
198 200
                                 $aData[ 'aInput' ][ $_sID ][ $_sFieldID ], 
@@ -276,7 +278,7 @@  discard block
 block discarded – undo
276 278
              */
277 279
             private function _validateTabFields( array $aData ) {
278 280
                 
279
-                if ( ! $aData[ 'sTabSlug' ] || ! $aData[ 'sPageSlug' ] ) { 
281
+                if ( ! $aData[ 'sTabSlug' ] || ! $aData[ 'sPageSlug' ] ) {
280 282
                     return $aData; 
281 283
                 }
282 284
                     
@@ -337,7 +339,7 @@  discard block
 block discarded – undo
337 339
              */
338 340
             private function _validatePageFields( array $aData ) {
339 341
            
340
-                if ( ! $aData[ 'sPageSlug' ] ) { 
342
+                if ( ! $aData[ 'sPageSlug' ] ) {
341 343
                     return $aData[ 'aInput' ]; 
342 344
                 }
343 345
 
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Admin Page Framework
4
- * 
5
- * http://en.michaeluno.jp/admin-page-framework/
6
- * Copyright (c) 2013-2015 Michael Uno; Licensed MIT
7
- * 
8
- */
3
+         * Admin Page Framework
4
+         * 
5
+         * http://en.michaeluno.jp/admin-page-framework/
6
+         * Copyright (c) 2013-2015 Michael Uno; Licensed MIT
7
+         * 
8
+         */
9 9
 
10 10
 /**
11 11
  * Provides methods to handle importing options.
Please login to merge, or discard this patch.