Completed
Branch master (e54601)
by
unknown
09:47 queued 05:09
created
development/utility/requirement/AdminPageFramework_Requirement.php 4 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
                     ?  "<strong>" . $this->_sScriptName . "</strong>:&nbsp;" 
279 279
                     : '';            
280 280
                 return $_sScripTitle
281
-                   . implode( '<br />', $_aWarnings );
281
+                    . implode( '<br />', $_aWarnings );
282 282
                 
283 283
             }
284 284
         
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -76,12 +76,12 @@  discard block
 block discarded – undo
76 76
      * 
77 77
      * @since       3.4.6
78 78
      */ 
79
-    public function __construct( array $aRequirements=array(), $sScriptName='' ) {
79
+    public function __construct( array $aRequirements = array(), $sScriptName = '' ) {
80 80
         
81 81
         // Avoid undefined index warnings.
82 82
         $aRequirements          = $aRequirements + $this->_aDefaultRequirements;    
83 83
         $aRequirements          = array_filter( $aRequirements, 'is_array' );
84
-        foreach( array( 'php', 'mysql', 'wordpress' ) as $_iIndex => $_sName ) {
84
+        foreach ( array( 'php', 'mysql', 'wordpress' ) as $_iIndex => $_sName ) {
85 85
             if ( isset( $aRequirements[ $_sName ] ) ) {
86 86
                 $aRequirements[ $_sName ] = $aRequirements[ $_sName ] + $this->_aDefaultRequirements[ $_sName ];
87 87
             }
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
         $_aWarnings = array();
106 106
         
107 107
         // PHP, WordPress, MySQL
108
-        $_aWarnings[] = $this->_getWarningByType( 'php' );
109
-        $_aWarnings[] = $this->_getWarningByType( 'wordpress' );
110
-        $_aWarnings[] = $this->_getWarningByType( 'mysql' );
108
+        $_aWarnings[ ] = $this->_getWarningByType( 'php' );
109
+        $_aWarnings[ ] = $this->_getWarningByType( 'wordpress' );
110
+        $_aWarnings[ ] = $this->_getWarningByType( 'mysql' );
111 111
         
112 112
         // Ensure necessary array elements.
113 113
         $this->_aRequirements = $this->_aRequirements + array(
@@ -120,10 +120,10 @@  discard block
 block discarded – undo
120 120
         // Check the rest.
121 121
         $_aWarnings = array_merge(
122 122
             $_aWarnings,
123
-            $this->_checkFunctions( $this->_aRequirements['functions'] ),
124
-            $this->_checkClasses( $this->_aRequirements['classes'] ),
125
-            $this->_checkConstants( $this->_aRequirements['constants'] ),
126
-            $this->_checkFiles( $this->_aRequirements['files'] )
123
+            $this->_checkFunctions( $this->_aRequirements[ 'functions' ] ),
124
+            $this->_checkClasses( $this->_aRequirements[ 'classes' ] ),
125
+            $this->_checkConstants( $this->_aRequirements[ 'constants' ] ),
126
+            $this->_checkFiles( $this->_aRequirements[ 'files' ] )
127 127
         );
128 128
         
129 129
         $this->aWarnings = array_filter( $_aWarnings ); // drop empty elements.
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
          * @return      string      The warning.
138 138
          */
139 139
         private function _getWarningByType( $sType ) {
140
-            if ( ! isset( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
140
+            if ( !isset( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
141 141
                 return '';
142 142
             }
143 143
             if ( $this->_checkPHPVersion( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
          * @since       3.4.6
165 165
          */
166 166
         private function _checkWordPressVersion( $sWordPressVersion ) {
167
-            return version_compare( $GLOBALS['wp_version'], $sWordPressVersion, ">=" );
167
+            return version_compare( $GLOBALS[ 'wp_version' ], $sWordPressVersion, ">=" );
168 168
         }
169 169
         
170 170
         /**
@@ -230,9 +230,9 @@  discard block
 block discarded – undo
230 230
              */
231 231
             private function _getWarningsByFunctionName( $sFuncName, $aSubjects ) {
232 232
                 $_aWarnings = array();
233
-                foreach( $aSubjects as $_sSubject => $_sWarning ) {
234
-                    if ( ! call_user_func_array( $sFuncName, array( $_sSubject ) ) ) {
235
-                        $_aWarnings[] = sprintf( $_sWarning, $_sSubject );
233
+                foreach ( $aSubjects as $_sSubject => $_sWarning ) {
234
+                    if ( !call_user_func_array( $sFuncName, array( $_sSubject ) ) ) {
235
+                        $_aWarnings[ ] = sprintf( $_sWarning, $_sSubject );
236 236
                     }
237 237
                 }
238 238
                 return $_aWarnings;                
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
          */    
253 253
         public function _replyToPrintAdminNotices() {
254 254
             
255
-            $_aWarnings     = array_unique( $this->aWarnings );
255
+            $_aWarnings = array_unique( $this->aWarnings );
256 256
             if ( empty( $_aWarnings ) ) {
257 257
                 return;
258 258
             }
@@ -270,12 +270,12 @@  discard block
 block discarded – undo
270 270
              */
271 271
             private function _getWarnings() {
272 272
 
273
-                $_aWarnings     = array_unique( $this->aWarnings );            
273
+                $_aWarnings = array_unique( $this->aWarnings );            
274 274
                 if ( empty( $_aWarnings ) ) {
275 275
                     return '';
276 276
                 }        
277
-                $_sScripTitle   = $this->_sScriptName 
278
-                    ?  "<strong>" . $this->_sScriptName . "</strong>:&nbsp;" 
277
+                $_sScripTitle = $this->_sScriptName 
278
+                    ? "<strong>".$this->_sScriptName."</strong>:&nbsp;" 
279 279
                     : '';            
280 280
                 return $_sScripTitle
281 281
                    . implode( '<br />', $_aWarnings );
@@ -286,12 +286,12 @@  discard block
 block discarded – undo
286 286
      * Deactivates the plugin.
287 287
      * @since       3.4.6
288 288
      */
289
-    public function deactivatePlugin( $sPluginFilePath, $sMessage='', $bIsOnActivation=false ) {
289
+    public function deactivatePlugin( $sPluginFilePath, $sMessage = '', $bIsOnActivation = false ) {
290 290
         
291 291
         add_action( 'admin_notices', array( $this, '_replyToPrintAdminNotices' ) );
292
-        $this->aWarnings[] = '<strong>' . $sMessage . '</strong>';
293
-        if ( ! function_exists( 'deactivate_plugins' ) ) {
294
-            if ( ! @include( ABSPATH . '/wp-admin/includes/plugin.php' ) ) {
292
+        $this->aWarnings[ ] = '<strong>'.$sMessage.'</strong>';
293
+        if ( !function_exists( 'deactivate_plugins' ) ) {
294
+            if ( !@include( ABSPATH.'/wp-admin/includes/plugin.php' ) ) {
295 295
                 return;
296 296
             }
297 297
         }
@@ -301,8 +301,8 @@  discard block
 block discarded – undo
301 301
         // Before that, we can display messages to the user.
302 302
         if ( $bIsOnActivation ) {
303 303
             
304
-            $_sPluginListingPage = add_query_arg( array(), $GLOBALS['pagenow'] );
305
-            wp_die( $this->_getWarnings() . "<p><a href='$_sPluginListingPage'>Go back</a>.</p>" );
304
+            $_sPluginListingPage = add_query_arg( array(), $GLOBALS[ 'pagenow' ] );
305
+            wp_die( $this->_getWarnings()."<p><a href='$_sPluginListingPage'>Go back</a>.</p>" );
306 306
             
307 307
         }
308 308
         
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      * @since       3.4.6
101 101
      * @return      integer         The number of warnings.
102 102
      */
103
-    public function check() {      
103
+    public function check() {
104 104
         
105 105
         $_aWarnings = array();
106 106
         
Please login to merge, or discard this patch.
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -195,6 +195,7 @@  discard block
 block discarded – undo
195 195
          * Returns a php warning if present.
196 196
          * @since       3.5.3
197 197
          * @internal
198
+         * @param string $sType
198 199
          * @return      string      The warning.
199 200
          */
200 201
         private function _getWarningByType( $sType ) {
@@ -294,6 +295,7 @@  discard block
 block discarded – undo
294 295
              * if it returns non true (false), it stores the subject warning and returns the array holding the warnings.
295 296
              * 
296 297
              * @since       3.4.6
298
+             * @param string $sFuncName
297 299
              * @return      array           The warning array.
298 300
              * @internal
299 301
              */
Please login to merge, or discard this patch.
development/utility/toc/AdminPageFramework_TableOfContents.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param       integer     $iDepth     The header number to parse.
32 32
      * @param       string      $sTitle     The heading title which appears at the beginning of the output.
33 33
      */
34
-    public function __construct( $sHTML, $iDepth=4, $sTitle='' ) {
34
+    public function __construct( $sHTML, $iDepth = 4, $sTitle = '' ) {
35 35
         
36 36
         $this->sTitle   = $sTitle;
37 37
         $this->sHTML    = $sHTML;
@@ -64,26 +64,26 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getTOC() {
66 66
         
67
-        $iDepth     = $this->iDepth;
67
+        $iDepth = $this->iDepth;
68 68
         
69 69
         // get the headings down to the specified depth
70 70
         $this->sHTML = preg_replace_callback( 
71
-            '/<h[2-' . $iDepth . ']*[^>]*>.*?<\/h[2-' . $iDepth . ']>/i',
71
+            '/<h[2-'.$iDepth.']*[^>]*>.*?<\/h[2-'.$iDepth.']>/i',
72 72
             array( $this, '_replyToInsertNamedElement' ),
73 73
             $this->sHTML
74 74
         );
75 75
         
76 76
         $_aOutput = array();
77
-        foreach( $this->_aMatches as $_iIndex => $_sMatch ) {
77
+        foreach ( $this->_aMatches as $_iIndex => $_sMatch ) {
78 78
             $_sMatch = strip_tags( $_sMatch, '<h1><h2><h3><h4><h5><h6><h7><h8>' );
79
-            $_sMatch = preg_replace( '/<h([1-' . $iDepth . '])>/', '<li class="toc$1"><a href="#toc_' . $_iIndex . '">', $_sMatch );
80
-            $_sMatch = preg_replace( '/<\/h[1-' . $iDepth . ']>/', '</a></li>', $_sMatch );
81
-            $_aOutput[] = $_sMatch;
79
+            $_sMatch = preg_replace( '/<h([1-'.$iDepth.'])>/', '<li class="toc$1"><a href="#toc_'.$_iIndex.'">', $_sMatch );
80
+            $_sMatch = preg_replace( '/<\/h[1-'.$iDepth.']>/', '</a></li>', $_sMatch );
81
+            $_aOutput[ ] = $_sMatch;
82 82
         }
83 83
 
84 84
         // plug the results into appropriate HTML tags
85 85
         $this->sTitle = $this->sTitle 
86
-            ? '<p class="toc-title">' . $this->sTitle . '</p>'
86
+            ? '<p class="toc-title">'.$this->sTitle.'</p>'
87 87
             : '';
88 88
         return '<div class="toc">'
89 89
                 . $this->sTitle
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
         public function _replyToInsertNamedElement( $aMatches ) {
98 98
             static $_icount = -1;
99 99
             $_icount++;
100
-            $this->_aMatches[] = $aMatches[ 0 ];
101
-            return "<span class='toc_header_link' id='toc_{$_icount}'></span>" . PHP_EOL
100
+            $this->_aMatches[ ] = $aMatches[ 0 ];
101
+            return "<span class='toc_header_link' id='toc_{$_icount}'></span>".PHP_EOL
102 102
                 . $aMatches[ 0 ];
103 103
         }    
104 104
     
Please login to merge, or discard this patch.
development/utility/zip/AdminPageFramework_Zip.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
                         in_array( 
249 249
                             substr( $_sIterationItem, strrpos( $_sIterationItem, '/' ) + 1 ), 
250 250
                             array( '.', '..' ) 
251
-                       )
251
+                        )
252 252
                     ) {
253 253
                         return;
254 254
                     }
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
      * 
51 51
      * @since       3.6.0
52 52
      */
53
-    public $aOptions   = array(
54
-        'include_directory'             => false,   // (boolean) whether the contents should be put inside a root directory.
53
+    public $aOptions = array(
54
+        'include_directory'             => false, // (boolean) whether the contents should be put inside a root directory.
55 55
         'additional_source_directories' => array(),
56 56
         // 'ignoring_file_extensions'      => array(), // not implemented yet.
57 57
     );
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param       array|boolean       $abOptions
65 65
      * @param       callable            $aCallbacks
66 66
      */
67
-    public function __construct( $sSource, $sDestination, $abOptions=false, array $aCallbacks=array() ) {
67
+    public function __construct( $sSource, $sDestination, $abOptions = false, array $aCallbacks = array() ) {
68 68
         
69 69
         $this->sSource      = $sSource;
70 70
         $this->sDestination = $sDestination;
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     public function compress() {
97 97
 
98 98
         // Check whether it is possible to perform the task.
99
-        if ( ! $this->isFeasible( $this->sSource ) ) {
99
+        if ( !$this->isFeasible( $this->sSource ) ) {
100 100
             return false;
101 101
         }
102 102
         
@@ -106,19 +106,19 @@  discard block
 block discarded – undo
106 106
         }
107 107
 
108 108
         $_oZip = new ZipArchive();
109
-        if ( ! $_oZip->open( $this->sDestination, ZIPARCHIVE::CREATE ) ) {
109
+        if ( !$_oZip->open( $this->sDestination, ZIPARCHIVE::CREATE ) ) {
110 110
             return false;
111 111
         }
112 112
         
113 113
         $this->sSource = $this->_getSanitizedSourcePath( $this->sSource );
114 114
         // $this->sSource = str_replace( '\\', '/', realpath( $this->sSource ) );
115 115
 
116
-        $_aMethods      = array(
116
+        $_aMethods = array(
117 117
             'unknown'   => '_replyToReturnFalse',
118 118
             'directory' => '_replyToCompressDirectory',
119 119
             'file'      => '_replyToCompressFile',
120 120
         );
121
-        $_sMethodName   = $_aMethods[ $this->_getSourceType( $this->sSource ) ];
121
+        $_sMethodName = $_aMethods[ $this->_getSourceType( $this->sSource ) ];
122 122
         return call_user_func_array(
123 123
             array( $this, $_sMethodName ),
124 124
             array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
          * @since       3.6.0       Changed the name from `_compressDirectory`. Changed the scope to public to allow overriding the method in an extended class.
145 145
          * @return      boolean     True on success, false otherwise.
146 146
          */
147
-        public function _replyToCompressDirectory( ZipArchive $oZip, $sSourceDirPath, array $aCallbacks=array(), $bIncludeDir=false, array $aAdditionalSourceDirs=array() ) {
147
+        public function _replyToCompressDirectory( ZipArchive $oZip, $sSourceDirPath, array $aCallbacks = array(), $bIncludeDir = false, array $aAdditionalSourceDirs = array() ) {
148 148
             
149 149
             $_sArchiveRootDirName = '';
150 150
            
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
              * @since       3.6.0
175 175
              * @return      void
176 176
              */
177
-            private function _addArchiveItems( $oZip, $aSourceDirPaths, $aCallbacks, $sRootDirName='' ) {
177
+            private function _addArchiveItems( $oZip, $aSourceDirPaths, $aCallbacks, $sRootDirName = '' ) {
178 178
                 
179
-                $sRootDirName = $sRootDirName ? rtrim( $sRootDirName, '/' ) . '/' : '';
179
+                $sRootDirName = $sRootDirName ? rtrim( $sRootDirName, '/' ).'/' : '';
180 180
                 
181
-                foreach( $aSourceDirPaths as $_isIndexOrRelativeDirPath => $_sSourceDirPath ) {
181
+                foreach ( $aSourceDirPaths as $_isIndexOrRelativeDirPath => $_sSourceDirPath ) {
182 182
                     
183 183
                     $_sSourceDirPath   = $this->_getSanitizedSourcePath( $_sSourceDirPath );
184 184
                     $_sInsideDirPrefix = is_integer( $_isIndexOrRelativeDirPath )
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
                         : $_isIndexOrRelativeDirPath;
187 187
                         
188 188
                     // Add a directory inside the compressing directory.
189
-                    if( $_sInsideDirPrefix ) {
189
+                    if ( $_sInsideDirPrefix ) {
190 190
                         $this->_addRelativeDir(
191 191
                             $oZip,
192 192
                             $_sInsideDirPrefix,
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
                             $_sSourceDirPath,
205 205
                             $_sIterationItem, 
206 206
                             $aCallbacks,
207
-                            $sRootDirName . $_sInsideDirPrefix
207
+                            $sRootDirName.$_sInsideDirPrefix
208 208
                         );
209 209
                     }                                
210 210
                 }
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
                     $sRelativeDirPath = str_replace( '\\', '/', $sRelativeDirPath );
219 219
                     $_aPathPartsParse = array_filter( explode( '/', $sRelativeDirPath ) );
220 220
                     $_aDirPath        = array();
221
-                    foreach( $_aPathPartsParse as $_sDirName ) {
222
-                        $_aDirPath[] = $_sDirName;
221
+                    foreach ( $_aPathPartsParse as $_sDirName ) {
222
+                        $_aDirPath[ ] = $_sDirName;
223 223
                         $this->_addEmptyDir( 
224 224
                             $oZip, 
225 225
                             implode( '/', $_aDirPath ),
@@ -238,10 +238,10 @@  discard block
 block discarded – undo
238 238
                  * @param       string          $sInsidePathPrefix      The prefix to add to the inside archive directory structure. 
239 239
                  * @return      void
240 240
                  */
241
-                private function _addArchiveItem( ZipArchive $oZip, $sSource, $_sIterationItem, array $aCallbacks, $sInsidePathPrefix='' ) {
241
+                private function _addArchiveItem( ZipArchive $oZip, $sSource, $_sIterationItem, array $aCallbacks, $sInsidePathPrefix = '' ) {
242 242
                     
243 243
                     $_sIterationItem   = str_replace( '\\', '/', $_sIterationItem );
244
-                    $sInsidePathPrefix = rtrim( $sInsidePathPrefix, '/' ) . '/'; // add a trailing slash
244
+                    $sInsidePathPrefix = rtrim( $sInsidePathPrefix, '/' ).'/'; // add a trailing slash
245 245
                     
246 246
                     // Ignore "." and ".." folders
247 247
                     if ( 
@@ -259,18 +259,18 @@  discard block
 block discarded – undo
259 259
                     if ( true === is_dir( $_sIterationItem ) ) {
260 260
                         $this->_addEmptyDir( 
261 261
                             $oZip, 
262
-                            $sInsidePathPrefix . str_replace( 
263
-                                $sSource . '/', 
262
+                            $sInsidePathPrefix.str_replace( 
263
+                                $sSource.'/', 
264 264
                                 '', 
265
-                                $_sIterationItem . '/'
265
+                                $_sIterationItem.'/'
266 266
                             ), 
267 267
                             $aCallbacks[ 'directory_name' ]
268 268
                         );                    
269 269
                     } else if ( true === is_file( $_sIterationItem ) ) {
270 270
                         $this->_addFromString( 
271 271
                             $oZip, 
272
-                            $sInsidePathPrefix . str_replace(
273
-                                $sSource . '/', 
272
+                            $sInsidePathPrefix.str_replace(
273
+                                $sSource.'/', 
274 274
                                 '', 
275 275
                                 $_sIterationItem
276 276
                             ),
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
          * @since       3.6.0       Changed the name from `_compressFile`. Changed the scope from `private` to allow overriding in an extended class.
299 299
          * @return      boolean     True on success, false otherwise.
300 300
          */
301
-        public function _replyToCompressFile( ZipArchive $oZip, $sSourceFilePath, $aCallbacks=null ) {
301
+        public function _replyToCompressFile( ZipArchive $oZip, $sSourceFilePath, $aCallbacks = null ) {
302 302
             $this->_addFromString( 
303 303
                 $oZip, 
304 304
                 basename( $sSourceFilePath ), 
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
      * @return      boolean
330 330
      */
331 331
     private function isFeasible( $sSource ) {
332
-        if ( ! extension_loaded( 'zip' ) ) {
332
+        if ( !extension_loaded( 'zip' ) ) {
333 333
             return false;
334 334
         }
335 335
         return file_exists( $sSource );
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
      */
354 354
     private function _addEmptyDir( ZipArchive $oZip, $sInsidePath, $oCallable ) {
355 355
         $sInsidePath = $this->_getFilteredArchivePath( $sInsidePath, $oCallable );
356
-        if ( ! strlen( $sInsidePath ) ) {
356
+        if ( !strlen( $sInsidePath ) ) {
357 357
             return;
358 358
         }
359 359
         $oZip->addEmptyDir( $sInsidePath );        
@@ -365,10 +365,10 @@  discard block
 block discarded – undo
365 365
      * @remark      If the path is empty, it will not process.
366 366
      * @return      void
367 367
      */
368
-    private function _addFromString( ZipArchive $oZip, $sInsidePath, $sSourceContents='', array $aCallbacks=array() ) {
368
+    private function _addFromString( ZipArchive $oZip, $sInsidePath, $sSourceContents = '', array $aCallbacks = array() ) {
369 369
         
370 370
         $sInsidePath = $this->_getFilteredArchivePath( $sInsidePath, $aCallbacks[ 'file_name' ] );
371
-        if ( ! strlen( $sInsidePath ) ) {
371
+        if ( !strlen( $sInsidePath ) ) {
372 372
             return;
373 373
         }
374 374
         $oZip->addFromString(
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
             
149 149
             $_sArchiveRootDirName = '';
150 150
            
151
-            if ( $bIncludeDir ) {                
151
+            if ( $bIncludeDir ) {
152 152
                 $_sArchiveRootDirName = $this->_getMainDirectoryName( $sSourceDirPath );
153 153
                 $this->_addEmptyDir( 
154 154
                     $oZip, 
Please login to merge, or discard this patch.
development/utility/class_tester/AdminPageFramework_ClassTester.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * Creates an object instance with dynamic parameters.
44 44
      */
45
-    static public function getInstance( $sClassName, array $aParameters=array() ) {
45
+    static public function getInstance( $sClassName, array $aParameters = array() ) {
46 46
         
47 47
         $_oReflection = new ReflectionClass( $sClassName );
48 48
         return $_oReflection->newInstanceArgs( $aParameters );               
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         // For PHP 5.2.x or below
59 59
         if ( version_compare( phpversion(), '<', '5.3.0' ) ) {
60 60
             trigger_error(
61
-                'Program Name' . ': ' 
61
+                'Program Name'.': ' 
62 62
                     . sprintf( 
63 63
                         'The method cannot run with your PHP version: %1$s',
64 64
                         phpversion()
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * Creates an object instance with dynamic parameters.
46 46
      * 
47 47
      * @since       3.7.10
48
-     * @param       string      $sCalssName     The class name for testing.
48
+     * @param       string      $sClassName     The class name for testing.
49 49
      * @param       array       $aParameters    The parameters to pass to the constructor of the class set in the first parameter.
50 50
      * @return      object      An object instance of the class specified in the first parameter.
51 51
      */
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * 
62 62
      * @since       3.7.10
63 63
      * @param       object      $oClass         The subject class object.
64
-     * @param       string      $sMathodName    The subject method name.
64
+     * @param       string      $sMethodName    The subject method name.
65 65
      * @param       array       $aParameters    The parameters to pass to the method set in the second parameter.    
66 66
      * @remark      This supports private methods to be executed.
67 67
      */
@@ -87,6 +87,7 @@  discard block
 block discarded – undo
87 87
     }
88 88
         /**
89 89
          * @since       3.7.10
90
+         * @param string $sClassName
90 91
          * @return      object
91 92
          * @internal
92 93
          */
Please login to merge, or discard this patch.
development/admin-page-framework.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @package     AdminPageFramework
11 11
  */
12 12
 
13
-if ( ! class_exists( 'AdminPageFramework_Registry', false ) ) :
13
+if ( !class_exists( 'AdminPageFramework_Registry', false ) ) :
14 14
 /**
15 15
  * Facilitates WordPress plugin and theme development.
16 16
  *
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 final class AdminPageFramework_Registry extends AdminPageFramework_Registry_Base {
57 57
 
58 58
     const TEXT_DOMAIN        = 'admin-page-framework';
59
-    const TEXT_DOMAIN_PATH   = '/language';  // not used at the moment
59
+    const TEXT_DOMAIN_PATH   = '/language'; // not used at the moment
60 60
 
61 61
     /**
62 62
      * Indicates whether the framework is loaded from the minified version or not.
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
      * Sets up static properties.
99 99
      * @return      void
100 100
      */
101
-    static public function setUp( $sFilePath=__FILE__ ) {
101
+    static public function setUp( $sFilePath = __FILE__ ) {
102 102
 
103 103
         self::$sFilePath                = $sFilePath;
104 104
         self::$sDirPath                 = dirname( self::$sFilePath );
105
-        self::$sIncludeClassListPath    = self::$sDirPath . '/admin-page-framework-include-class-list.php';
105
+        self::$sIncludeClassListPath    = self::$sDirPath.'/admin-page-framework-include-class-list.php';
106 106
         self::$aClassFiles              = self::_getClassFilePathList( self::$sIncludeClassListPath );
107 107
         self::$sAutoLoaderPath          = isset( self::$aClassFiles[ 'AdminPageFramework_RegisterClasses' ] )
108 108
             ? self::$aClassFiles[ 'AdminPageFramework_RegisterClasses' ]
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
          * @return      array
118 118
          */
119 119
         static private function _getClassFilePathList( $sInclusionClassListPath ) {
120
-            $aClassFiles = array();    // this will be updated if the inclusion below is successful.
120
+            $aClassFiles = array(); // this will be updated if the inclusion below is successful.
121 121
             include( $sInclusionClassListPath );
122 122
             return $aClassFiles;
123 123
         }
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
      */
131 131
     static public function getVersion() {
132 132
 
133
-        if ( ! isset( self::$sAutoLoaderPath ) ) {
134
-            trigger_error( 'Admin Page Framework: ' . ' : ' . sprintf( __( 'The method is called too early. Perform <code>%2$s</code> earlier.', 'admin-page-framework' ), __METHOD__, 'setUp()' ), E_USER_WARNING );
133
+        if ( !isset( self::$sAutoLoaderPath ) ) {
134
+            trigger_error( 'Admin Page Framework: '.' : '.sprintf( __( 'The method is called too early. Perform <code>%2$s</code> earlier.', 'admin-page-framework' ), __METHOD__, 'setUp()' ), E_USER_WARNING );
135 135
             return self::VERSION;
136 136
         }
137
-        $_aMinifiedVesionSuffix     = array(
137
+        $_aMinifiedVesionSuffix = array(
138 138
             0 => '',
139 139
             1 => '.min',
140 140
         );
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 }
164 164
 endif;
165 165
 
166
-if ( ! class_exists( 'AdminPageFramework_Bootstrap', false ) ) :
166
+if ( !class_exists( 'AdminPageFramework_Bootstrap', false ) ) :
167 167
 /**
168 168
  * Loads the Admin Page Framework library.
169 169
  *
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function __construct( $sLibraryPath ) {
186 186
 
187
-        if ( ! $this->_isLoadable() ) {
187
+        if ( !$this->_isLoadable() ) {
188 188
             return;
189 189
         }
190 190
 
Please login to merge, or discard this patch.
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.