Completed
Branch dev (0ae946)
by
unknown
04:08 queued 23s
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.
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.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -135,12 +135,12 @@  discard block
 block discarded – undo
135 135
      * </ul>
136 136
      * @param       string      $sScriptName        The script name.      
137 137
      */ 
138
-    public function __construct( array $aRequirements=array(), $sScriptName='' ) {
138
+    public function __construct( array $aRequirements = array(), $sScriptName = '' ) {
139 139
         
140 140
         // Avoid undefined index warnings.
141 141
         $aRequirements          = $aRequirements + $this->_aDefaultRequirements;    
142 142
         $aRequirements          = array_filter( $aRequirements, 'is_array' );
143
-        foreach( array( 'php', 'mysql', 'wordpress' ) as $_iIndex => $_sName ) {
143
+        foreach ( array( 'php', 'mysql', 'wordpress' ) as $_iIndex => $_sName ) {
144 144
             if ( isset( $aRequirements[ $_sName ] ) ) {
145 145
                 $aRequirements[ $_sName ] = $aRequirements[ $_sName ] + $this->_aDefaultRequirements[ $_sName ];
146 146
             }
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
         $_aWarnings = array();
166 166
         
167 167
         // PHP, WordPress, MySQL
168
-        $_aWarnings[] = $this->_getWarningByType( 'php' );
169
-        $_aWarnings[] = $this->_getWarningByType( 'wordpress' );
170
-        $_aWarnings[] = $this->_getWarningByType( 'mysql' );
168
+        $_aWarnings[ ] = $this->_getWarningByType( 'php' );
169
+        $_aWarnings[ ] = $this->_getWarningByType( 'wordpress' );
170
+        $_aWarnings[ ] = $this->_getWarningByType( 'mysql' );
171 171
         
172 172
         // Ensure necessary array elements.
173 173
         $this->_aRequirements = $this->_aRequirements + array(
@@ -180,10 +180,10 @@  discard block
 block discarded – undo
180 180
         // Check the rest.
181 181
         $_aWarnings = array_merge(
182 182
             $_aWarnings,
183
-            $this->_checkFunctions( $this->_aRequirements['functions'] ),
184
-            $this->_checkClasses( $this->_aRequirements['classes'] ),
185
-            $this->_checkConstants( $this->_aRequirements['constants'] ),
186
-            $this->_checkFiles( $this->_aRequirements['files'] )
183
+            $this->_checkFunctions( $this->_aRequirements[ 'functions' ] ),
184
+            $this->_checkClasses( $this->_aRequirements[ 'classes' ] ),
185
+            $this->_checkConstants( $this->_aRequirements[ 'constants' ] ),
186
+            $this->_checkFiles( $this->_aRequirements[ 'files' ] )
187 187
         );
188 188
         
189 189
         $this->aWarnings = array_filter( $_aWarnings ); // drop empty elements.
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
          * @return      string      The warning.
198 198
          */
199 199
         private function _getWarningByType( $sType ) {
200
-            if ( ! isset( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
200
+            if ( !isset( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
201 201
                 return '';
202 202
             }
203 203
             if ( $this->_checkPHPVersion( $this->_aRequirements[ $sType ][ 'version' ] ) ) {
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
          * @internal
227 227
          */
228 228
         private function _checkWordPressVersion( $sWordPressVersion ) {
229
-            return version_compare( $GLOBALS['wp_version'], $sWordPressVersion, ">=" );
229
+            return version_compare( $GLOBALS[ 'wp_version' ], $sWordPressVersion, ">=" );
230 230
         }
231 231
         
232 232
         /**
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
              */
299 299
             private function _getWarningsByFunctionName( $sFuncName, $aSubjects ) {
300 300
                 $_aWarnings = array();
301
-                foreach( $aSubjects as $_sSubject => $_sWarning ) {
302
-                    if ( ! call_user_func_array( $sFuncName, array( $_sSubject ) ) ) {
303
-                        $_aWarnings[] = sprintf( $_sWarning, $_sSubject );
301
+                foreach ( $aSubjects as $_sSubject => $_sWarning ) {
302
+                    if ( !call_user_func_array( $sFuncName, array( $_sSubject ) ) ) {
303
+                        $_aWarnings[ ] = sprintf( $_sWarning, $_sSubject );
304 304
                     }
305 305
                 }
306 306
                 return $_aWarnings;                
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
          */    
323 323
         public function _replyToPrintAdminNotices() {
324 324
             
325
-            $_aWarnings     = array_unique( $this->aWarnings );
325
+            $_aWarnings = array_unique( $this->aWarnings );
326 326
             if ( empty( $_aWarnings ) ) {
327 327
                 return;
328 328
             }
@@ -341,12 +341,12 @@  discard block
 block discarded – undo
341 341
              */
342 342
             private function _getWarnings() {
343 343
 
344
-                $_aWarnings     = array_unique( $this->aWarnings );            
344
+                $_aWarnings = array_unique( $this->aWarnings );            
345 345
                 if ( empty( $_aWarnings ) ) {
346 346
                     return '';
347 347
                 }        
348
-                $_sScripTitle   = $this->_sScriptName 
349
-                    ?  "<strong>" . $this->_sScriptName . "</strong>:&nbsp;" 
348
+                $_sScripTitle = $this->_sScriptName 
349
+                    ? "<strong>".$this->_sScriptName."</strong>:&nbsp;" 
350 350
                     : '';            
351 351
                 return $_sScripTitle
352 352
                    . implode( '<br />', $_aWarnings );
@@ -361,12 +361,12 @@  discard block
 block discarded – undo
361 361
      * @param       boolean     $bIsOnActivation    Whether it is called upon plugin activation hook. 
362 362
      * @return      void
363 363
      */
364
-    public function deactivatePlugin( $sPluginFilePath, $sMessage='', $bIsOnActivation=false ) {
364
+    public function deactivatePlugin( $sPluginFilePath, $sMessage = '', $bIsOnActivation = false ) {
365 365
         
366 366
         add_action( 'admin_notices', array( $this, '_replyToPrintAdminNotices' ) );
367
-        $this->aWarnings[] = '<strong>' . $sMessage . '</strong>';
368
-        if ( ! function_exists( 'deactivate_plugins' ) ) {
369
-            if ( ! @include( ABSPATH . '/wp-admin/includes/plugin.php' ) ) {
367
+        $this->aWarnings[ ] = '<strong>'.$sMessage.'</strong>';
368
+        if ( !function_exists( 'deactivate_plugins' ) ) {
369
+            if ( !@include( ABSPATH.'/wp-admin/includes/plugin.php' ) ) {
370 370
                 return;
371 371
             }
372 372
         }
@@ -376,8 +376,8 @@  discard block
 block discarded – undo
376 376
         // Before that, we can display messages to the user.
377 377
         if ( $bIsOnActivation ) {
378 378
             
379
-            $_sPluginListingPage = add_query_arg( array(), $GLOBALS['pagenow'] );
380
-            wp_die( $this->_getWarnings() . "<p><a href='$_sPluginListingPage'>Go back</a>.</p>" );
379
+            $_sPluginListingPage = add_query_arg( array(), $GLOBALS[ 'pagenow' ] );
380
+            wp_die( $this->_getWarnings()."<p><a href='$_sPluginListingPage'>Go back</a>.</p>" );
381 381
             
382 382
         }
383 383
         
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.
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.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
      * 
56 56
      * @since       3.6.0
57 57
      */
58
-    public $aOptions   = array(
59
-        'include_directory'             => false,   // (boolean) whether the contents should be put inside a root directory.
58
+    public $aOptions = array(
59
+        'include_directory'             => false, // (boolean) whether the contents should be put inside a root directory.
60 60
         'additional_source_directories' => array(),
61 61
         // 'ignoring_file_extensions'      => array(), // not implemented yet.
62 62
     );
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @param       array|boolean       $abOptions
71 71
      * @param       callable            $aCallbacks
72 72
      */
73
-    public function __construct( $sSource, $sDestination, $abOptions=false, array $aCallbacks=array() ) {
73
+    public function __construct( $sSource, $sDestination, $abOptions = false, array $aCallbacks = array() ) {
74 74
         
75 75
         $this->sSource      = $sSource;
76 76
         $this->sDestination = $sDestination;
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     public function compress() {
104 104
 
105 105
         // Check whether it is possible to perform the task.
106
-        if ( ! $this->isFeasible( $this->sSource ) ) {
106
+        if ( !$this->isFeasible( $this->sSource ) ) {
107 107
             return false;
108 108
         }
109 109
         
@@ -113,19 +113,19 @@  discard block
 block discarded – undo
113 113
         }
114 114
 
115 115
         $_oZip = new ZipArchive();
116
-        if ( ! $_oZip->open( $this->sDestination, ZIPARCHIVE::CREATE ) ) {
116
+        if ( !$_oZip->open( $this->sDestination, ZIPARCHIVE::CREATE ) ) {
117 117
             return false;
118 118
         }
119 119
         
120 120
         $this->sSource = $this->_getSanitizedSourcePath( $this->sSource );
121 121
         // $this->sSource = str_replace( '\\', '/', realpath( $this->sSource ) );
122 122
 
123
-        $_aMethods      = array(
123
+        $_aMethods = array(
124 124
             'unknown'   => '_replyToReturnFalse',
125 125
             'directory' => '_replyToCompressDirectory',
126 126
             'file'      => '_replyToCompressFile',
127 127
         );
128
-        $_sMethodName   = $_aMethods[ $this->_getSourceType( $this->sSource ) ];
128
+        $_sMethodName = $_aMethods[ $this->_getSourceType( $this->sSource ) ];
129 129
         return call_user_func_array(
130 130
             array( $this, $_sMethodName ),
131 131
             array(
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
          * @return      boolean     True on success, false otherwise.
154 154
          * @internal
155 155
          */
156
-        public function _replyToCompressDirectory( ZipArchive $oZip, $sSourceDirPath, array $aCallbacks=array(), $bIncludeDir=false, array $aAdditionalSourceDirs=array() ) {
156
+        public function _replyToCompressDirectory( ZipArchive $oZip, $sSourceDirPath, array $aCallbacks = array(), $bIncludeDir = false, array $aAdditionalSourceDirs = array() ) {
157 157
             
158 158
             $_sArchiveRootDirName = '';
159 159
            
@@ -184,11 +184,11 @@  discard block
 block discarded – undo
184 184
              * @return      void
185 185
              * @internal
186 186
              */
187
-            private function _addArchiveItems( $oZip, $aSourceDirPaths, $aCallbacks, $sRootDirName='' ) {
187
+            private function _addArchiveItems( $oZip, $aSourceDirPaths, $aCallbacks, $sRootDirName = '' ) {
188 188
                 
189
-                $sRootDirName = $sRootDirName ? rtrim( $sRootDirName, '/' ) . '/' : '';
189
+                $sRootDirName = $sRootDirName ? rtrim( $sRootDirName, '/' ).'/' : '';
190 190
                 
191
-                foreach( $aSourceDirPaths as $_isIndexOrRelativeDirPath => $_sSourceDirPath ) {
191
+                foreach ( $aSourceDirPaths as $_isIndexOrRelativeDirPath => $_sSourceDirPath ) {
192 192
                     
193 193
                     $_sSourceDirPath   = $this->_getSanitizedSourcePath( $_sSourceDirPath );
194 194
                     $_sInsideDirPrefix = is_integer( $_isIndexOrRelativeDirPath )
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
                         : $_isIndexOrRelativeDirPath;
197 197
                         
198 198
                     // Add a directory inside the compressing directory.
199
-                    if( $_sInsideDirPrefix ) {
199
+                    if ( $_sInsideDirPrefix ) {
200 200
                         $this->_addRelativeDir(
201 201
                             $oZip,
202 202
                             $_sInsideDirPrefix,
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                             $_sSourceDirPath,
215 215
                             $_sIterationItem, 
216 216
                             $aCallbacks,
217
-                            $sRootDirName . $_sInsideDirPrefix
217
+                            $sRootDirName.$_sInsideDirPrefix
218 218
                         );
219 219
                     }                                
220 220
                 }
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
                     $sRelativeDirPath = str_replace( '\\', '/', $sRelativeDirPath );
230 230
                     $_aPathPartsParse = array_filter( explode( '/', $sRelativeDirPath ) );
231 231
                     $_aDirPath        = array();
232
-                    foreach( $_aPathPartsParse as $_sDirName ) {
233
-                        $_aDirPath[] = $_sDirName;
232
+                    foreach ( $_aPathPartsParse as $_sDirName ) {
233
+                        $_aDirPath[ ] = $_sDirName;
234 234
                         $this->_addEmptyDir( 
235 235
                             $oZip, 
236 236
                             implode( '/', $_aDirPath ),
@@ -250,10 +250,10 @@  discard block
 block discarded – undo
250 250
                  * @return      void
251 251
                  * @internal
252 252
                  */
253
-                private function _addArchiveItem( ZipArchive $oZip, $sSource, $_sIterationItem, array $aCallbacks, $sInsidePathPrefix='' ) {
253
+                private function _addArchiveItem( ZipArchive $oZip, $sSource, $_sIterationItem, array $aCallbacks, $sInsidePathPrefix = '' ) {
254 254
                     
255 255
                     $_sIterationItem   = str_replace( '\\', '/', $_sIterationItem );
256
-                    $sInsidePathPrefix = rtrim( $sInsidePathPrefix, '/' ) . '/'; // add a trailing slash
256
+                    $sInsidePathPrefix = rtrim( $sInsidePathPrefix, '/' ).'/'; // add a trailing slash
257 257
                     
258 258
                     // Ignore "." and ".." folders
259 259
                     if ( 
@@ -271,18 +271,18 @@  discard block
 block discarded – undo
271 271
                     if ( true === is_dir( $_sIterationItem ) ) {
272 272
                         $this->_addEmptyDir( 
273 273
                             $oZip, 
274
-                            $sInsidePathPrefix . str_replace( 
275
-                                $sSource . '/', 
274
+                            $sInsidePathPrefix.str_replace( 
275
+                                $sSource.'/', 
276 276
                                 '', 
277
-                                $_sIterationItem . '/'
277
+                                $_sIterationItem.'/'
278 278
                             ), 
279 279
                             $aCallbacks[ 'directory_name' ]
280 280
                         );                    
281 281
                     } else if ( true === is_file( $_sIterationItem ) ) {
282 282
                         $this->_addFromString( 
283 283
                             $oZip, 
284
-                            $sInsidePathPrefix . str_replace(
285
-                                $sSource . '/', 
284
+                            $sInsidePathPrefix.str_replace(
285
+                                $sSource.'/', 
286 286
                                 '', 
287 287
                                 $_sIterationItem
288 288
                             ),
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
          * @return      boolean     True on success, false otherwise.
313 313
          * @internal
314 314
          */
315
-        public function _replyToCompressFile( ZipArchive $oZip, $sSourceFilePath, $aCallbacks=null ) {
315
+        public function _replyToCompressFile( ZipArchive $oZip, $sSourceFilePath, $aCallbacks = null ) {
316 316
             $this->_addFromString( 
317 317
                 $oZip, 
318 318
                 basename( $sSourceFilePath ), 
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
      * @internal
346 346
      */
347 347
     private function isFeasible( $sSource ) {
348
-        if ( ! extension_loaded( 'zip' ) ) {
348
+        if ( !extension_loaded( 'zip' ) ) {
349 349
             return false;
350 350
         }
351 351
         return file_exists( $sSource );
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
      */
372 372
     private function _addEmptyDir( ZipArchive $oZip, $sInsidePath, $oCallable ) {
373 373
         $sInsidePath = $this->_getFilteredArchivePath( $sInsidePath, $oCallable );
374
-        if ( ! strlen( $sInsidePath ) ) {
374
+        if ( !strlen( $sInsidePath ) ) {
375 375
             return;
376 376
         }
377 377
         $oZip->addEmptyDir( ltrim( $sInsidePath, '/' ) );        
@@ -384,10 +384,10 @@  discard block
 block discarded – undo
384 384
      * @return      void
385 385
      * @internal
386 386
      */
387
-    private function _addFromString( ZipArchive $oZip, $sInsidePath, $sSourceContents='', array $aCallbacks=array() ) {
387
+    private function _addFromString( ZipArchive $oZip, $sInsidePath, $sSourceContents = '', array $aCallbacks = array() ) {
388 388
         
389 389
         $sInsidePath = $this->_getFilteredArchivePath( $sInsidePath, $aCallbacks[ 'file_name' ] );
390
-        if ( ! strlen( $sInsidePath ) ) {
390
+        if ( !strlen( $sInsidePath ) ) {
391 391
             return;
392 392
         }
393 393
         $oZip->addFromString(
Please login to merge, or discard this patch.
development/factory/page_meta_box/AdminPageFramework_PageMetaBox.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,21 +77,21 @@
 block discarded – undo
77 77
      * @param       string          $sPriority      The priority, either `high`, `core`, `default` or `low`.
78 78
      * @param       string          $sCapability    The capability. See <a href="https://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Roles and Capabilities</a>.
79 79
      */
80
-    public function __construct( $sMetaBoxID, $sTitle, $asPageSlugs=array(), $sContext='normal', $sPriority='default', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
80
+    public function __construct( $sMetaBoxID, $sTitle, $asPageSlugs = array(), $sContext = 'normal', $sPriority = 'default', $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) {
81 81
         
82 82
         if ( empty( $asPageSlugs ) ) { 
83 83
             return; 
84 84
         }
85 85
         
86
-        if ( ! $this->_isInstantiatable() ) { 
86
+        if ( !$this->_isInstantiatable() ) { 
87 87
             return; 
88 88
         }
89 89
                 
90 90
         // The property object needs to be done first before the parent constructor.
91 91
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
92 92
             ? $this->aSubClassNames[ 'oProp' ]
93
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
94
-        $this->oProp             = new $_sProprtyClassName( 
93
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
94
+        $this->oProp = new $_sProprtyClassName( 
95 95
             $this, 
96 96
             get_class( $this ), 
97 97
             $sCapability, 
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,11 +78,11 @@
 block discarded – undo
78 78
      */
79 79
     public function __construct( $sMetaBoxID, $sTitle, $asPageSlugs=array(), $sContext='normal', $sPriority='default', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
80 80
         
81
-        if ( empty( $asPageSlugs ) ) { 
81
+        if ( empty( $asPageSlugs ) ) {
82 82
             return; 
83 83
         }
84 84
         
85
-        if ( ! $this->_isInstantiatable() ) { 
85
+        if ( ! $this->_isInstantiatable() ) {
86 86
             return; 
87 87
         }
88 88
                 
Please login to merge, or discard this patch.
development/factory/taxonomy_field/AdminPageFramework_TaxonomyField.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @param       string          The text domain. Default: `admin-page-framework`.
47 47
      * @return      void
48 48
      */ 
49
-    function __construct( $asTaxonomySlug, $sOptionKey='', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
49
+    function __construct( $asTaxonomySlug, $sOptionKey = '', $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) {
50 50
         
51 51
         if ( empty( $asTaxonomySlug ) ) { 
52 52
             return; 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         // Properties 
56 56
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
57 57
             ? $this->aSubClassNames[ 'oProp' ]
58
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
58
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
59 59
         $this->oProp        = new $_sProprtyClassName( 
60 60
             $this, 
61 61
             get_class( $this ), 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */ 
48 48
     function __construct( $asTaxonomySlug, $sOptionKey='', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
49 49
         
50
-        if ( empty( $asTaxonomySlug ) ) { 
50
+        if ( empty( $asTaxonomySlug ) ) {
51 51
             return; 
52 52
         }
53 53
         
Please login to merge, or discard this patch.
development/factory/user_meta/AdminPageFramework_UserMeta.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,16 +39,16 @@
 block discarded – undo
39 39
      * @since       3.7.4       Changed the default capability value to `read`.
40 40
      * @todo        Examine the appropriate default capability level.
41 41
      */
42
-    public function __construct( $sCapability='read', $sTextDomain='admin-page-framework' ) {
42
+    public function __construct( $sCapability = 'read', $sTextDomain = 'admin-page-framework' ) {
43 43
         
44 44
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
45 45
             ? $this->aSubClassNames[ 'oProp' ]
46
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;        
46
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;        
47 47
         $this->oProp = new $_sProprtyClassName( 
48
-            $this,                  // the caller object
49
-            get_class( $this ),     // the caller class name    
50
-            $sCapability,           // the capability level
51
-            $sTextDomain,           // the text domain
48
+            $this, // the caller object
49
+            get_class( $this ), // the caller class name    
50
+            $sCapability, // the capability level
51
+            $sTextDomain, // the text domain
52 52
             $this->_sStructureType  // the structure type
53 53
         );     
54 54
         
Please login to merge, or discard this patch.
factory/_common/form/field_type/AdminPageFramework_FieldType_media.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Defines the field type slugs used for this field type.
23 23
      */
24
-    public $aFieldTypeSlugs = array( 'media', );
24
+    public $aFieldTypeSlugs = array( 'media',);
25 25
     
26 26
     /**
27 27
      * Defines the default key-values of this field type. 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         return 
54 54
             $this->_getScript_MediaUploader(
55 55
                 "admin_page_framework"
56
-            ) . PHP_EOL
56
+            ).PHP_EOL
57 57
             . $this->_getScript_RegisterCallbacks();
58 58
     }    
59 59
     
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
             $_sInsertFromURL         = esc_js( $this->oMsg->get( 'insert_from_url' ) );
149 149
             
150 150
             // If the WordPress version is 3.4.x or below
151
-            if ( ! function_exists( 'wp_enqueue_media' ) ) {
151
+            if ( !function_exists( 'wp_enqueue_media' ) ) {
152 152
                 return <<<JAVASCRIPTS
153 153
                     /**
154 154
                      * Bind/rebinds the thickbox script the given selector element.
@@ -388,10 +388,10 @@  discard block
 block discarded – undo
388 388
             // Do not include the escaping character (backslash) in the heredoc variable declaration 
389 389
             // because the minifier script will parse it and the <<<JAVASCRIPTS and JAVASCRIPTS; parts are converted to double quotes (")
390 390
             // which causes the PHP syntax error.
391
-            $_sButtonHTML       = '"' . $this->_getUploaderButtonHTML_Media( $sInputID, $aButtonAttributes, $bExternalSource ) . '"';
392
-            $_sRpeatable        = $this->getAOrB( ! empty( $abRepeatable ), 'true', 'false' );
391
+            $_sButtonHTML       = '"'.$this->_getUploaderButtonHTML_Media( $sInputID, $aButtonAttributes, $bExternalSource ).'"';
392
+            $_sRpeatable        = $this->getAOrB( !empty( $abRepeatable ), 'true', 'false' );
393 393
             $_sExternalSource   = $this->getAOrB( $bExternalSource, 'true', 'false' );
394
-            $_sScript                = <<<JAVASCRIPTS
394
+            $_sScript = <<<JAVASCRIPTS
395 395
 if ( jQuery( 'a#select_media_{$sInputID}' ).length == 0 ) {
396 396
     jQuery( 'input#{$sInputID}' ).after( $_sButtonHTML );
397 397
 }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
                     . '/* <![CDATA[ */'
405 405
                     . $_sScript 
406 406
                     . '/* ]]> */'
407
-                . "</script>". PHP_EOL;
407
+                . "</script>".PHP_EOL;
408 408
 
409 409
         }
410 410
             /**
@@ -414,19 +414,19 @@  discard block
 block discarded – undo
414 414
              */
415 415
             private function _getUploaderButtonHTML_Media( $sInputID, array $aButtonAttributes, $bExternalSource ) {
416 416
                     
417
-                $_bIsLabelSet = isset( $aButtonAttributes['data-label'] ) && $aButtonAttributes['data-label'];
417
+                $_bIsLabelSet = isset( $aButtonAttributes[ 'data-label' ] ) && $aButtonAttributes[ 'data-label' ];
418 418
                 $_aAttributes = $this->_getFormattedUploadButtonAttributes_Media( 
419 419
                     $sInputID, 
420 420
                     $aButtonAttributes, 
421 421
                     $_bIsLabelSet, 
422 422
                     $bExternalSource 
423 423
                 );
424
-                return "<a " . $this->getAttributes( $_aAttributes ) . ">"
424
+                return "<a ".$this->getAttributes( $_aAttributes ).">"
425 425
                         . $this->getAOrB( 
426 426
                             $_bIsLabelSet,
427
-                            $_aAttributes['data-label'],
427
+                            $_aAttributes[ 'data-label' ],
428 428
                             $this->getAOrB(
429
-                                strrpos( $_aAttributes['class'], 'dashicons' ),
429
+                                strrpos( $_aAttributes[ 'class' ], 'dashicons' ),
430 430
                                 '',
431 431
                                 $this->oMsg->get( 'select_file' )
432 432
                             )
@@ -441,26 +441,26 @@  discard block
 block discarded – undo
441 441
                  */
442 442
                 private function _getFormattedUploadButtonAttributes_Media( $sInputID, array $aButtonAttributes, $_bIsLabelSet, $bExternalSource ) {
443 443
                    
444
-                    $_aAttributes           = array(
444
+                    $_aAttributes = array(
445 445
                             'id'        => "select_media_{$sInputID}",
446 446
                             'href'      => '#',            
447
-                            'data-uploader_type'            => ( string ) function_exists( 'wp_enqueue_media' ),    //  ? 1 : 0,
448
-                            'data-enable_external_source'   => ( string ) ( bool ) $bExternalSource,    //  ? 1 : 0, 
447
+                            'data-uploader_type'            => ( string ) function_exists( 'wp_enqueue_media' ), //  ? 1 : 0,
448
+                            'data-enable_external_source'   => ( string ) ( bool ) $bExternalSource, //  ? 1 : 0, 
449 449
                         ) 
450 450
                         + $aButtonAttributes
451 451
                         + array(
452 452
                             'title'     => $_bIsLabelSet 
453
-                                ? $aButtonAttributes['data-label'] 
453
+                                ? $aButtonAttributes[ 'data-label' ] 
454 454
                                 : $this->oMsg->get( 'select_file' ),
455 455
                             'data-label' => null,
456 456
                         );
457
-                    $_aAttributes['class']  = $this->getClassAttribute( 
457
+                    $_aAttributes[ 'class' ] = $this->getClassAttribute( 
458 458
                         'select_media button button-small ',
459 459
                         $this->getAOrB(
460
-                            trim( $aButtonAttributes['class'] ),
461
-                            $aButtonAttributes['class'],
460
+                            trim( $aButtonAttributes[ 'class' ] ),
461
+                            $aButtonAttributes[ 'class' ],
462 462
                             $this->getAOrB( 
463
-                                ! $_bIsLabelSet && version_compare( $GLOBALS['wp_version'], '3.8', '>=' ),
463
+                                !$_bIsLabelSet && version_compare( $GLOBALS[ 'wp_version' ], '3.8', '>=' ),
464 464
                                 'dashicons dashicons-portfolio',
465 465
                                 ''
466 466
                             )
Please login to merge, or discard this patch.
admin-page-framework-loader.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
      * @return      void
191 191
      */ 
192 192
     static public function setAdminNotice( $sMessage, $sClassAttribute='error' ) {
193
-        if ( ! is_admin() ) {  
193
+        if ( ! is_admin() ) {
194 194
             return; 
195 195
         }
196 196
         self::$_aAdminNotices[] = array(
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
  */
17 17
 class AdminPageFrameworkLoader_Registry_Base {
18 18
 
19
-    const VERSION        = '3.8.17b01';    // <--- DON'T FORGET TO CHANGE THIS AS WELL!!
19
+    const VERSION        = '3.8.17b01'; // <--- DON'T FORGET TO CHANGE THIS AS WELL!!
20 20
     const NAME           = 'Admin Page Framework - Loader'; // the name is not 'Admin Page Framework' because warning messages gets confusing.
21
-    const SHORTNAME      = 'Admin Page Framework';  // used for a menu title etc.
21
+    const SHORTNAME      = 'Admin Page Framework'; // used for a menu title etc.
22 22
     const DESCRIPTION    = 'Loads Admin Page Framework which facilitates WordPress plugin and theme development.';
23 23
     const URI            = 'http://admin-page-framework.michaeluno.jp/';
24 24
     const AUTHOR         = 'miunosoft (Michael Uno)';
@@ -55,14 +55,14 @@  discard block
 block discarded – undo
55 55
      * @remark      This is also accessed from `uninstall.php` so do not remove.
56 56
      * @remark      Do not exceed 8 characters as a transient name allows 45 characters or less ( 40 for site transients ) so that md5 (32 characters) can be added.
57 57
      */
58
-    const TRANSIENT_PREFIX         = 'APFL_';
58
+    const TRANSIENT_PREFIX = 'APFL_';
59 59
 
60 60
     /**
61 61
      * The hook slug used for the prefix of action and filter hook names.
62 62
      * 
63 63
      * @remark      The ending underscore is not necessary.
64 64
      */
65
-    const HOOK_SLUG                = 'admin_page_framework_loader';
65
+    const HOOK_SLUG = 'admin_page_framework_loader';
66 66
 
67 67
     /**
68 68
      * The text domain slug and its path.
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     static public $aAdminPages = array(
118 118
         // key => 'page slug'
119
-        'about'     => 'apfl_about',        // the welcome page
119
+        'about'     => 'apfl_about', // the welcome page
120 120
         'addon'     => 'apfl_addons',
121 121
         'tool'      => 'apfl_tools',
122 122
         'help'      => 'apfl_contact',
@@ -154,12 +154,12 @@  discard block
 block discarded – undo
154 154
      * @since       3.5.0
155 155
      * @return      string
156 156
      */
157
-    public static function getPluginURL( $sRelativePath='' ) {
157
+    public static function getPluginURL( $sRelativePath = '' ) {
158 158
         if ( isset( self::$_sPluginURLCache ) ) {
159
-            return self::$_sPluginURLCache . $sRelativePath;
159
+            return self::$_sPluginURLCache.$sRelativePath;
160 160
         }
161 161
         self::$_sPluginURLCache = trailingslashit( plugins_url( '', self::$sFilePath ) );
162
-        return self::$_sPluginURLCache . $sRelativePath;
162
+        return self::$_sPluginURLCache.$sRelativePath;
163 163
     }
164 164
         /**
165 165
          * @since       3.7.9
@@ -189,13 +189,13 @@  discard block
 block discarded – undo
189 189
      * @since       3.5.0
190 190
      * @return      void
191 191
      */ 
192
-    static public function setAdminNotice( $sMessage, $sClassAttribute='error' ) {
193
-        if ( ! is_admin() ) {  
192
+    static public function setAdminNotice( $sMessage, $sClassAttribute = 'error' ) {
193
+        if ( !is_admin() ) {  
194 194
             return; 
195 195
         }
196
-        self::$_aAdminNotices[] = array(
196
+        self::$_aAdminNotices[ ] = array(
197 197
             'message'           => $sMessage,
198
-            'class_attribute'   => trim( $sClassAttribute ) . ' notice is-dismissible',
198
+            'class_attribute'   => trim( $sClassAttribute ).' notice is-dismissible',
199 199
         );
200 200
         add_action( 'admin_notices', array( __CLASS__, '_replyToSetAdminNotice' ) );
201 201
     }
@@ -205,12 +205,12 @@  discard block
 block discarded – undo
205 205
          * @return      void
206 206
          */
207 207
         static public function _replyToSetAdminNotice() {
208
-            foreach( self::$_aAdminNotices as $_aAdminNotice ) {
209
-                echo "<div class='" . esc_attr( $_aAdminNotice['class_attribute'] ) . " notice is-dismissible'>"
208
+            foreach ( self::$_aAdminNotices as $_aAdminNotice ) {
209
+                echo "<div class='".esc_attr( $_aAdminNotice[ 'class_attribute' ] )." notice is-dismissible'>"
210 210
                         ."<p>"
211 211
                             . sprintf(
212
-                                '<strong>%1$s</strong>: ' . $_aAdminNotice['message'],
213
-                                self::NAME . ' ' . self::VERSION
212
+                                '<strong>%1$s</strong>: '.$_aAdminNotice[ 'message' ],
213
+                                self::NAME.' '.self::VERSION
214 214
                             )
215 215
                         . "</p>"
216 216
                     . "</div>";
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 AdminPageFrameworkLoader_Registry::setUp( __FILE__ );
223 223
 
224 224
 // Initial checks. - Do no load if accessed directly, not exiting because the 'uninstall.php' and inclusion list generator will load this file.
225
-if ( ! defined( 'ABSPATH' ) ) {
225
+if ( !defined( 'ABSPATH' ) ) {
226 226
     return;
227 227
 }
228 228
 if ( defined( 'DOING_UNINSTALL' ) && DOING_UNINSTALL ) {
@@ -234,8 +234,8 @@  discard block
 block discarded – undo
234 234
 
235 235
     $_bFrameworkLoaded = class_exists( 'AdminPageFramework_Registry', false );
236 236
     if (
237
-        ! $_bFrameworkLoaded
238
-        || ! defined( 'AdminPageFramework_Registry::VERSION' ) // backward compatibility
237
+        !$_bFrameworkLoaded
238
+        || !defined( 'AdminPageFramework_Registry::VERSION' ) // backward compatibility
239 239
         || version_compare( AdminPageFramework_Registry::VERSION, AdminPageFrameworkLoader_Registry::VERSION, '<' )
240 240
     ) {
241 241
         AdminPageFrameworkLoader_Registry::setAdminNotice(
@@ -253,18 +253,18 @@  discard block
 block discarded – undo
253 253
 add_action( 'admin_init', 'AdminPageFrameworkLoader_Warning' );
254 254
 
255 255
 // Include the library file - the development version will be available if you cloned the GitHub repository.
256
-$_sDevelopmentVersionPath = AdminPageFrameworkLoader_Registry::$sDirPath . '/development/admin-page-framework.php';
256
+$_sDevelopmentVersionPath = AdminPageFrameworkLoader_Registry::$sDirPath.'/development/admin-page-framework.php';
257 257
 $_bDebugMode              = defined( 'WP_DEBUG' ) && WP_DEBUG;
258 258
 $_bLoadDevelopmentVersion = $_bDebugMode && file_exists( $_sDevelopmentVersionPath );
259 259
 include(
260 260
     $_bLoadDevelopmentVersion
261 261
         ? $_sDevelopmentVersionPath
262
-        : AdminPageFrameworkLoader_Registry::$sDirPath . '/library/apf/admin-page-framework.php'
262
+        : AdminPageFrameworkLoader_Registry::$sDirPath.'/library/apf/admin-page-framework.php'
263 263
 );
264 264
 
265 265
 // Include the framework loader plugin components.
266 266
 include( AdminPageFramework_Registry::$aClassFiles[ 'AdminPageFramework_PluginBootstrap' ] );
267
-include( AdminPageFrameworkLoader_Registry::$sDirPath . '/include/class/AdminPageFrameworkLoader_Bootstrap.php' );
267
+include( AdminPageFrameworkLoader_Registry::$sDirPath.'/include/class/AdminPageFrameworkLoader_Bootstrap.php' );
268 268
 new AdminPageFrameworkLoader_Bootstrap(
269 269
     AdminPageFrameworkLoader_Registry::$sFilePath,
270 270
     AdminPageFrameworkLoader_Registry::HOOK_SLUG    // hook prefix
Please login to merge, or discard this patch.
factory/taxonomy_field/AdminPageFramework_TaxonomyField_Router.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     public function _replyToSetUpHooks( $oFactory ) {
82 82
         
83
-        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
83
+        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {
84 84
             
85 85
             // Validation callbacks need to be set regardless of whether the current page is edit-tags.php or not.
86 86
             add_action( "created_{$_sTaxonomySlug}", array( $this, '_replyToValidateOptions' ), 10, 2 );
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
                 
27 27
         parent::__construct( $oProp );
28 28
 
29
-        if ( ! $this->oProp->bIsAdmin ) {
29
+        if ( !$this->oProp->bIsAdmin ) {
30 30
             return;
31 31
         }
32 32
         
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         );
38 38
         
39 39
         add_action( 
40
-            'set_up_' . $this->oProp->sClassName,
40
+            'set_up_'.$this->oProp->sClassName,
41 41
             array( $this, '_replyToSetUpHooks' )
42 42
         );
43 43
         
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
             return true;
59 59
         }
60 60
         
61
-        if ( ! in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) {
61
+        if ( !in_array( $this->oProp->sPageNow, array( 'edit-tags.php', 'term.php' ) ) ) {
62 62
             return false;
63 63
         }
64 64
         
65
-        if ( isset( $_GET[ 'taxonomy' ] ) && ! in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) {
65
+        if ( isset( $_GET[ 'taxonomy' ] ) && !in_array( $_GET[ 'taxonomy' ], $this->oProp->aTaxonomySlugs ) ) {
66 66
             return false;
67 67
         }        
68 68
         
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function _replyToSetUpHooks( $oFactory ) {
81 81
         
82
-        foreach( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
82
+        foreach ( $this->oProp->aTaxonomySlugs as $_sTaxonomySlug ) {     
83 83
             
84 84
             // Validation callbacks need to be set regardless of whether the current page is edit-tags.php or not.
85 85
             add_action( "created_{$_sTaxonomySlug}", array( $this, '_replyToValidateOptions' ), 10, 2 );
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType.php 3 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     * @param        string      The text domain of the caller script.
105 105
     * @return       void
106 106
     */
107
-    public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
107
+    public function __construct( $sPostType, $aArguments = array(), $sCallerPath = null, $sTextDomain = 'admin-page-framework' ) {
108 108
         
109 109
         if ( empty( $sPostType ) ) { 
110 110
             return; 
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
 
113 113
         $_sProprtyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
114 114
             ? $this->aSubClassNames[ 'oProp' ]
115
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;           
115
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;           
116 116
         $this->oProp = new $_sProprtyClassName( 
117 117
             $this, 
118 118
             $this->_getCallerScriptPath( $sCallerPath ),
119
-            get_class( $this ),     // class name
120
-            'publish_posts',        // capability
121
-            $sTextDomain,           // text domain
119
+            get_class( $this ), // class name
120
+            'publish_posts', // capability
121
+            $sTextDomain, // text domain
122 122
             $this->_sStructureType  // structure type
123 123
         );
124
-        $this->oProp->sPostType     = AdminPageFramework_WPUtility::sanitizeSlug( $sPostType );
124
+        $this->oProp->sPostType = AdminPageFramework_WPUtility::sanitizeSlug( $sPostType );
125 125
         
126 126
         // Post type argument array structure
127 127
         // @see http://codex.wordpress.org/Function_Reference/register_post_type#Arguments
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 return $sCallerPath;
145 145
             }
146 146
             
147
-            if ( ! is_admin() ) {
147
+            if ( !is_admin() ) {
148 148
                 return null;
149 149
             }
150 150
             $_sPageNow = AdminPageFramework_Utility::getElement( $GLOBALS, 'pagenow' );
Please login to merge, or discard this patch.
Indentation   +77 added lines, -78 removed lines patch added patch discarded remove patch
@@ -25,84 +25,83 @@
 block discarded – undo
25 25
     protected $_sStructureType = 'post_type';
26 26
     
27 27
     /**
28
-    * The constructor of the class object.
29
-    * 
30
-    * Registers necessary hooks and sets up internal properties.
31
-    * 
32
-    * <h4>Example</h4>
33
-    * <code>new APF_PostType( 
34
-    *     'apf_posts',     // post type slug
35
-    *       array( 
36
-    *           'labels' => array(
37
-    *               'name'               => 'Demo',
38
-    *               'all_items'          => __( 'Sample Posts', 'admin-page-framework-demo' ),
39
-    *               'singular_name'      => 'Demo',
40
-    *               'add_new'            => __( 'Add New', 'admin-page-framework-demo' ),
41
-    *               'add_new_item'       => __( 'Add New APF Post', 'admin-page-framework-demo' ),
42
-    *               'edit'               => __( 'Edit', 'admin-page-framework-demo' ),
43
-    *               'edit_item'          => __( 'Edit APF Post', 'admin-page-framework-demo' ),
44
-    *               'new_item'           => __( 'New APF Post', 'admin-page-framework-demo' ),
45
-    *               'view'               => __( 'View', 'admin-page-framework-demo' ),
46
-    *               'view_item'          => __( 'View APF Post', 'admin-page-framework-demo' ),
47
-    *               'search_items'       => __( 'Search APF Post', 'admin-page-framework-demo' ),
48
-    *               'not_found'          => __( 'No APF Post found', 'admin-page-framework-demo' ),
49
-    *               'not_found_in_trash' => __( 'No APF Post found in Trash', 'admin-page-framework-demo' ),
50
-    *               'parent'             => __( 'Parent APF Post', 'admin-page-framework-demo' ),
51
-    *               
52
-    *               // (framework specific)
53
-    *               'plugin_action_link' => __( 'APF Posts', 'admin-page-framework-demo' ), // framework specific key. [3.7.3+]
54
-    *           ),
55
-    *           'public'            => true,
56
-    *           'menu_position'     => 110,
57
-    *           'supports'          => array( 'title' ), // e.g. array( 'title', 'editor', 'comments', 'thumbnail', 'excerpt' ),    
58
-    *           'taxonomies'        => array( '' ),
59
-    *           'has_archive'       => true,
60
-    *           'show_admin_column' => true, // [3.5+ core] this is for custom taxonomies to automatically add the column in the listing table.
61
-    *           'menu_icon'         => $this->oProp->bIsAdmin 
62
-    *               ? ( 
63
-    *                   version_compare( $GLOBALS['wp_version'], '3.8', '>=' ) 
64
-    *                       ? 'dashicons-wordpress' 
65
-    *                       : plugins_url( 'asset/image/wp-logo_16x16.png', APFDEMO_FILE ) 
66
-    *               )
67
-    *               : null, // do not call the function in the front-end.
68
-    *               
69
-    *           // (framework specific) this sets the screen icon for the post type for WordPress v3.7.1 or below.
70
-    *           // a file path can be passed instead of a url, plugins_url( 'asset/image/wp-logo_32x32.png', APFDEMO_FILE )
71
-    *           'screen_icon' => dirname( APFDEMO_FILE  ) . '/asset/image/wp-logo_32x32.png', 
72
-    *           
73
-    *           // [3.5.10+] (framework specific) default: true
74
-    *           'show_submenu_add_new'  => true, 
75
-    *           
76
-    *           // [3.7.4+] (framework specific) default: 10
77
-    *           'submenu_order_manage'  => 20,
78
-    *           'submenu_order_addnew'  => 21,
79
-    * 
80
-    *       )     
81
-    * );</code>
82
-    * 
83
-    * <h4>Framework Specific Post Type Arguments</h4>
84
-    * In addition to the post type argument structure defined by the WordPress core, there are arguments defined by the framework.
85
-    * 
86
-    * - screen_icon - For WordPress 3.7.x or below, set an icon url or path for the 32x32 screen icon displayed in the post listing page.
87
-    * - show_submenu_add_new - [3.5.10+]    (boolean) Whether the sub-menu item of `Add New` should be displayed.
88
-    * - submenu_order_manage - [3.7.4+]     (numeric) The menu position of the `Manage` sub-menu item which gets automatically crated by the system when the admin ui is enabled. Default: `5`
89
-    * - submenu_order_addnew - [3.7.4+]     (numeric) The menu position of the `Manage` sub-menu item which gets automatically crated by the system when the admin ui is enabled. Default: `10`
90
-    *
91
-    * <h4>Framework Specific Post Type Label Arguments</h4>
92
-    * - plugin_listing_table_title_cell_link' - [3.0.6+] Deprecated [3.7.3] use the `plugin_action_link` argument instead.
93
-    * - plugin_action_link' - [3.7.3+] If the caller script is a plugin, this determines the label of the action link embedded in the plugin listing page (plugins.php).
94
-    * To disable the action link, set an empty string `''`. 
95
-
96
-    * 
97
-    * @since        2.0.0
98
-    * @since        2.1.6       Added the $sTextDomain parameter.
99
-    * @see          http://codex.wordpress.org/Function_Reference/register_post_type#Arguments
100
-    * @param        string      The post type slug.
101
-    * @param        array       The <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Arguments">argument array</a> passed to register_post_type().
102
-    * @param        string      The path of the caller script. This is used to retrieve the script information to insert it into the footer. If not set, the framework tries to detect it.
103
-    * @param        string      The text domain of the caller script.
104
-    * @return       void
105
-    */
28
+     * The constructor of the class object.
29
+     * 
30
+     * Registers necessary hooks and sets up internal properties.
31
+     * 
32
+     * <h4>Example</h4>
33
+     * <code>new APF_PostType( 
34
+     *     'apf_posts',     // post type slug
35
+     *       array( 
36
+     *           'labels' => array(
37
+     *               'name'               => 'Demo',
38
+     *               'all_items'          => __( 'Sample Posts', 'admin-page-framework-demo' ),
39
+     *               'singular_name'      => 'Demo',
40
+     *               'add_new'            => __( 'Add New', 'admin-page-framework-demo' ),
41
+     *               'add_new_item'       => __( 'Add New APF Post', 'admin-page-framework-demo' ),
42
+     *               'edit'               => __( 'Edit', 'admin-page-framework-demo' ),
43
+     *               'edit_item'          => __( 'Edit APF Post', 'admin-page-framework-demo' ),
44
+     *               'new_item'           => __( 'New APF Post', 'admin-page-framework-demo' ),
45
+     *               'view'               => __( 'View', 'admin-page-framework-demo' ),
46
+     *               'view_item'          => __( 'View APF Post', 'admin-page-framework-demo' ),
47
+     *               'search_items'       => __( 'Search APF Post', 'admin-page-framework-demo' ),
48
+     *               'not_found'          => __( 'No APF Post found', 'admin-page-framework-demo' ),
49
+     *               'not_found_in_trash' => __( 'No APF Post found in Trash', 'admin-page-framework-demo' ),
50
+     *               'parent'             => __( 'Parent APF Post', 'admin-page-framework-demo' ),
51
+     *               
52
+     *               // (framework specific)
53
+     *               'plugin_action_link' => __( 'APF Posts', 'admin-page-framework-demo' ), // framework specific key. [3.7.3+]
54
+     *           ),
55
+     *           'public'            => true,
56
+     *           'menu_position'     => 110,
57
+     *           'supports'          => array( 'title' ), // e.g. array( 'title', 'editor', 'comments', 'thumbnail', 'excerpt' ),    
58
+     *           'taxonomies'        => array( '' ),
59
+     *           'has_archive'       => true,
60
+     *           'show_admin_column' => true, // [3.5+ core] this is for custom taxonomies to automatically add the column in the listing table.
61
+     *           'menu_icon'         => $this->oProp->bIsAdmin 
62
+     *               ? ( 
63
+     *                   version_compare( $GLOBALS['wp_version'], '3.8', '>=' ) 
64
+     *                       ? 'dashicons-wordpress' 
65
+     *                       : plugins_url( 'asset/image/wp-logo_16x16.png', APFDEMO_FILE ) 
66
+     *               )
67
+     *               : null, // do not call the function in the front-end.
68
+     *               
69
+     *           // (framework specific) this sets the screen icon for the post type for WordPress v3.7.1 or below.
70
+     *           // a file path can be passed instead of a url, plugins_url( 'asset/image/wp-logo_32x32.png', APFDEMO_FILE )
71
+     *           'screen_icon' => dirname( APFDEMO_FILE  ) . '/asset/image/wp-logo_32x32.png', 
72
+     *           
73
+     *           // [3.5.10+] (framework specific) default: true
74
+     *           'show_submenu_add_new'  => true, 
75
+     *           
76
+     *           // [3.7.4+] (framework specific) default: 10
77
+     *           'submenu_order_manage'  => 20,
78
+     *           'submenu_order_addnew'  => 21,
79
+     * 
80
+     *       )     
81
+     * );</code>
82
+     * 
83
+     * <h4>Framework Specific Post Type Arguments</h4>
84
+     * In addition to the post type argument structure defined by the WordPress core, there are arguments defined by the framework.
85
+     * 
86
+     * - screen_icon - For WordPress 3.7.x or below, set an icon url or path for the 32x32 screen icon displayed in the post listing page.
87
+     * - show_submenu_add_new - [3.5.10+]    (boolean) Whether the sub-menu item of `Add New` should be displayed.
88
+     * - submenu_order_manage - [3.7.4+]     (numeric) The menu position of the `Manage` sub-menu item which gets automatically crated by the system when the admin ui is enabled. Default: `5`
89
+     * - submenu_order_addnew - [3.7.4+]     (numeric) The menu position of the `Manage` sub-menu item which gets automatically crated by the system when the admin ui is enabled. Default: `10`
90
+     *
91
+     * <h4>Framework Specific Post Type Label Arguments</h4>
92
+     * - plugin_listing_table_title_cell_link' - [3.0.6+] Deprecated [3.7.3] use the `plugin_action_link` argument instead.
93
+     * - plugin_action_link' - [3.7.3+] If the caller script is a plugin, this determines the label of the action link embedded in the plugin listing page (plugins.php).
94
+     * To disable the action link, set an empty string `''`. 
95
+     * 
96
+     * @since        2.0.0
97
+     * @since        2.1.6       Added the $sTextDomain parameter.
98
+     * @see          http://codex.wordpress.org/Function_Reference/register_post_type#Arguments
99
+     * @param        string      The post type slug.
100
+     * @param        array       The <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Arguments">argument array</a> passed to register_post_type().
101
+     * @param        string      The path of the caller script. This is used to retrieve the script information to insert it into the footer. If not set, the framework tries to detect it.
102
+     * @param        string      The text domain of the caller script.
103
+     * @return       void
104
+     */
106 105
     public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
107 106
         
108 107
         if ( empty( $sPostType ) ) { 
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  * @since           2.0.0
15 15
  * @package         AdminPageFramework/Factory/PostType
16 16
  */
17
-abstract class AdminPageFramework_PostType extends AdminPageFramework_PostType_Controller {    
17
+abstract class AdminPageFramework_PostType extends AdminPageFramework_PostType_Controller {
18 18
       
19 19
     /**
20 20
      * Defines the class object structure type.
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     */
106 106
     public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
107 107
         
108
-        if ( empty( $sPostType ) ) { 
108
+        if ( empty( $sPostType ) ) {
109 109
             return; 
110 110
         }
111 111
 
Please login to merge, or discard this patch.