Completed
Branch master (6d8b39)
by
unknown
08:25
created
development/factory/page_meta_box/AdminPageFramework_MetaBox_Page.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @since       3.0.0
25 25
      * @deprecated  DEVVER      Use     `AdminPageFramework_PageMetaBox` instead.
26 26
      */
27
-    function __construct( $sMetaBoxID, $sTitle, $asPageSlugs=array(), $sContext='normal', $sPriority='default', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
27
+    function __construct( $sMetaBoxID, $sTitle, $asPageSlugs = array(), $sContext = 'normal', $sPriority = 'default', $sCapability = 'manage_options', $sTextDomain = 'admin-page-framework' ) {
28 28
     
29 29
         trigger_error( 
30 30
             sprintf(
Please login to merge, or discard this patch.
development/factory/page_meta_box/AdminPageFramework_PageMetaBox.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,11 +67,11 @@
 block discarded – undo
67 67
      */
68 68
     function __construct( $sMetaBoxID, $sTitle, $asPageSlugs=array(), $sContext='normal', $sPriority='default', $sCapability='manage_options', $sTextDomain='admin-page-framework' ) {
69 69
         
70
-        if ( empty( $asPageSlugs ) ) { 
70
+        if ( empty( $asPageSlugs ) ) {
71 71
             return; 
72 72
         }
73 73
         
74
-        if ( ! $this->_isInstantiatable() ) { 
74
+        if ( ! $this->_isInstantiatable() ) {
75 75
             return; 
76 76
         }
77 77
                 
Please login to merge, or discard this patch.
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.
factory/page_meta_box/AdminPageFramework_PageMetaBox_Controller.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      * 
23 23
      * @since 3.0.0
24 24
      */
25
-    public function enqueueStyles( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
25
+    public function enqueueStyles( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
26 26
         if ( method_exists( $this->oResource, '_enqueueStyles' ) ) {
27 27
             return $this->oResource->_enqueueStyles( $aSRCs, $sPageSlug, $sTabSlug, $aCustomArgs );
28 28
         }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * @param array (optional) The argument array for more advanced parameters.
39 39
      * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
40 40
      */    
41
-    public function enqueueStyle( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
41
+    public function enqueueStyle( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
42 42
         if ( method_exists( $this->oResource, '_enqueueStyle' ) ) {
43 43
             return $this->oResource->_enqueueStyle( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );     
44 44
         }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * 
49 49
      * @since 2.1.5
50 50
      */
51
-    public function enqueueScripts( $aSRCs, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
51
+    public function enqueueScripts( $aSRCs, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {
52 52
         if ( method_exists( $this->oResource, '_enqueueScripts' ) ) {
53 53
             return $this->oResource->_enqueueScripts( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
54 54
         }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param             array (optional) The argument array for more advanced parameters.
65 65
      * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
66 66
      */
67
-    public function enqueueScript( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {    
67
+    public function enqueueScript( $sSRC, $sPageSlug = '', $sTabSlug = '', $aCustomArgs = array() ) {    
68 68
         if ( method_exists( $this->oResource, '_enqueueScript' ) ) {
69 69
             return $this->oResource->_enqueueScript( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
70 70
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * @param             array (optional) The argument array for more advanced parameters.
65 65
      * @return string The script handle ID. If the passed url is not a valid url string, an empty string will be returned.
66 66
      */
67
-    public function enqueueScript( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {    
67
+    public function enqueueScript( $sSRC, $sPageSlug='', $sTabSlug='', $aCustomArgs=array() ) {
68 68
         if ( method_exists( $this->oResource, '_enqueueScript' ) ) {
69 69
             return $this->oResource->_enqueueScript( $sSRC, $sPageSlug, $sTabSlug, $aCustomArgs );
70 70
         }
Please login to merge, or discard this patch.
development/factory/page_meta_box/AdminPageFramework_PageMetaBox_Model.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
         );        
278 278
     }    
279 279
     
280
-       /**
280
+        /**
281 281
          * Extracts meta box form fields options array from the given options array of an admin page.
282 282
          * 
283 283
          * @since       3.5.6
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
     public function _replyToSetUpValidationHooks( $oScreen ) {
47 47
 
48 48
         // Validation hooks
49
-        foreach( $this->oProp->aPageSlugs as $_sIndexOrPageSlug => $_asTabArrayOrPageSlug ) {
49
+        foreach ( $this->oProp->aPageSlugs as $_sIndexOrPageSlug => $_asTabArrayOrPageSlug ) {
50 50
             
51 51
             if ( is_scalar( $_asTabArrayOrPageSlug ) ) {
52 52
                 $_sPageSlug = $_asTabArrayOrPageSlug;
53
-                add_filter( "validation_saved_options_without_dynamic_elements_{$_sPageSlug}", array( $this, '_replyToFilterPageOptionsWODynamicElements' ), 10, 2 );  // 3.4.1+
53
+                add_filter( "validation_saved_options_without_dynamic_elements_{$_sPageSlug}", array( $this, '_replyToFilterPageOptionsWODynamicElements' ), 10, 2 ); // 3.4.1+
54 54
                 add_filter( "validation_{$_sPageSlug}", array( $this, '_replyToValidateOptions' ), 10, 4 );
55 55
                 add_filter( "options_update_status_{$_sPageSlug}", array( $this, '_replyToModifyOptionsUpdateStatus' ) );
56 56
                 continue;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
             // At this point, the array key is the page slug. It means the user specified the tab(s).
60 60
             $_sPageSlug = $_sIndexOrPageSlug;
61 61
             $_aTabs     = $_asTabArrayOrPageSlug;
62
-            foreach( $_aTabs as $_sTabSlug ) {
62
+            foreach ( $_aTabs as $_sTabSlug ) {
63 63
                 add_filter( "validation_{$_sPageSlug}_{$_sTabSlug}", array( $this, '_replyToValidateOptions' ), 10, 4 );
64 64
                 add_filter( "validation_saved_options_without_dynamic_elements_{$_sPageSlug}_{$_sTabSlug}", array( $this, '_replyToFilterPageOptionsWODynamicElements' ), 10, 2 ); // 3.4.1+
65 65
                 add_filter( "options_update_status_{$_sPageSlug}_{$_sTabSlug}", array( $this, '_replyToModifyOptionsUpdateStatus' ) );
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
      * @return      void
80 80
      * @callback    action      add_meta_boxes
81 81
      */ 
82
-    public function _replyToRegisterMetaBoxes( $sPageHook='' ) {
83
-        foreach( $this->oProp->aPageSlugs as $_sKey => $_asPage ) {
84
-            if ( is_string( $_asPage ) )  {
82
+    public function _replyToRegisterMetaBoxes( $sPageHook = '' ) {
83
+        foreach ( $this->oProp->aPageSlugs as $_sKey => $_asPage ) {
84
+            if ( is_string( $_asPage ) ) {
85 85
                 $this->_registerMetaBox( $_asPage );
86 86
                 continue;
87 87
             }            
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
          * @return      void
98 98
          */
99 99
         private function _registerMetaBoxes( $sPageSlug, $asPage ) {
100
-            foreach( $this->oUtil->getAsArray( $asPage ) as $_sTabSlug ) {
101
-                if ( ! $this->oProp->isCurrentTab( $_sTabSlug ) ) { 
100
+            foreach ( $this->oUtil->getAsArray( $asPage ) as $_sTabSlug ) {
101
+                if ( !$this->oProp->isCurrentTab( $_sTabSlug ) ) { 
102 102
                     continue; 
103 103
                 }
104 104
                 $this->_registerMetaBox( $sPageSlug );
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
          */
116 116
         private function _registerMetaBox( $sPageSlug ) {
117 117
             add_meta_box( 
118
-                $this->oProp->sMetaBoxID,                       // id
119
-                $this->oProp->sTitle,                           // title
118
+                $this->oProp->sMetaBoxID, // id
119
+                $this->oProp->sTitle, // title
120 120
                 array( $this, '_replyToPrintMetaBoxContents' ), // callback
121 121
                 $this->oProp->_getScreenIDOfPage( $sPageSlug ), // screen ID
122
-                $this->oProp->sContext,                         // context
123
-                $this->oProp->sPriority,                        // priority
122
+                $this->oProp->sContext, // context
123
+                $this->oProp->sPriority, // priority
124 124
                 null                                            // argument (deprecated)
125 125
             );
126 126
         }
@@ -168,17 +168,17 @@  discard block
 block discarded – undo
168 168
         
169 169
         $_aNewMetaBoxInputs      = $this->oForm->getSubmittedData( $_POST );
170 170
         $_aOldMetaBoxInputs      = $this->oUtil->castArrayContents( 
171
-            $this->oForm->getDataStructureFromAddedFieldsets(),   // model
171
+            $this->oForm->getDataStructureFromAddedFieldsets(), // model
172 172
             $aOldPageOptions        // data source
173 173
         );
174 174
 
175 175
         // Apply filters - third party scripts will have access to the input.
176 176
         $_aNewMetaBoxInputsRaw   = $_aNewMetaBoxInputs; // copy one for validation errors.
177 177
         $_aNewMetaBoxInputs      = call_user_func_array( 
178
-            array( $this, 'validate' ),     // triggers __call()
178
+            array( $this, 'validate' ), // triggers __call()
179 179
             array( $_aNewMetaBoxInputs, $_aOldMetaBoxInputs, $this, $aSubmitInfo ) 
180 180
         ); // 3.5.3+
181
-        $_aNewMetaBoxInputs      = $this->oUtil->addAndApplyFilters( 
181
+        $_aNewMetaBoxInputs = $this->oUtil->addAndApplyFilters( 
182 182
             $this, 
183 183
             "validation_{$this->oProp->sClassName}", 
184 184
             $_aNewMetaBoxInputs, 
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      */
214 214
     public function _replyToModifyOptionsUpdateStatus( $aStatus ) {
215 215
         
216
-        if ( ! $this->hasFieldError() ) {
216
+        if ( !$this->hasFieldError() ) {
217 217
             return $aStatus;
218 218
         }
219 219
         return array( 
@@ -236,11 +236,11 @@  discard block
 block discarded – undo
236 236
     public function _replyToGetSavedFormData() {
237 237
         $_aPageOptions = $this->oUtil->addAndApplyFilter(
238 238
             $this, // the caller factory object
239
-            'options_' . $this->oProp->sClassName,
239
+            'options_'.$this->oProp->sClassName,
240 240
             $this->oProp->oAdminPage->oProp->aOptions  
241 241
         );
242 242
         return $this->oUtil->castArrayContents( 
243
-            $this->oForm->getDataStructureFromAddedFieldsets(),   // model
243
+            $this->oForm->getDataStructureFromAddedFieldsets(), // model
244 244
             $_aPageOptions        // data source
245 245
         );        
246 246
     }    
@@ -256,9 +256,9 @@  discard block
 block discarded – undo
256 256
         private function _getPageMetaBoxOptionsFromPageOptions( array $aPageOptions, array $aFieldsets ) {
257 257
      
258 258
             $_aOptions = array();
259
-            foreach( $aFieldsets as $_sSectionID => $_aFieldsets ) {
260
-                if ( '_default' === $_sSectionID  ) {
261
-                    foreach( $_aFieldsets as $_aField ) {
259
+            foreach ( $aFieldsets as $_sSectionID => $_aFieldsets ) {
260
+                if ( '_default' === $_sSectionID ) {
261
+                    foreach ( $_aFieldsets as $_aField ) {
262 262
                         if ( array_key_exists( $_aField[ 'field_id' ], $aPageOptions ) ) {
263 263
                             $_aOptions[ $_aField[ 'field_id' ] ] = $aPageOptions[ $_aField[ 'field_id' ] ];
264 264
                         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */ 
82 82
     public function _replyToRegisterMetaBoxes( $sPageHook='' ) {
83 83
         foreach( $this->oProp->aPageSlugs as $_sKey => $_asPage ) {
84
-            if ( is_string( $_asPage ) )  {
84
+            if ( is_string( $_asPage ) ) {
85 85
                 $this->_registerMetaBox( $_asPage );
86 86
                 continue;
87 87
             }            
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
          */
99 99
         private function _registerMetaBoxes( $sPageSlug, $asPage ) {
100 100
             foreach( $this->oUtil->getAsArray( $asPage ) as $_sTabSlug ) {
101
-                if ( ! $this->oProp->isCurrentTab( $_sTabSlug ) ) { 
101
+                if ( ! $this->oProp->isCurrentTab( $_sTabSlug ) ) {
102 102
                     continue; 
103 103
                 }
104 104
                 $this->_registerMetaBox( $sPageSlug );
Please login to merge, or discard this patch.
factory/page_meta_box/form/AdminPageFramework_Form_page_meta_box.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function construct() {
31 31
         
32 32
         add_filter(
33
-            'options_' . $this->aArguments[ 'caller_id' ],
33
+            'options_'.$this->aArguments[ 'caller_id' ],
34 34
             array( $this, '_replyToSanitizeSavedFormData' ),
35 35
             5   //  high priority as it must be done eariler
36 36
         );
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         
55 55
         // Extract the meta box field form data (options) from the page form data (options).
56 56
         return $this->castArrayContents( 
57
-            $this->getDataStructureFromAddedFieldsets(),    // form data structure generate from fieldsets
57
+            $this->getDataStructureFromAddedFieldsets(), // form data structure generate from fieldsets
58 58
             $aSavedFormData
59 59
         );
60 60
         
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @package         AdminPageFramework
16 16
  * @subpackage      PostType
17 17
  */
18
-abstract class AdminPageFramework_PostType extends AdminPageFramework_PostType_Controller {    
18
+abstract class AdminPageFramework_PostType extends AdminPageFramework_PostType_Controller {
19 19
         
20 20
     /**
21 21
     * The constructor of the class object.
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     */
92 92
     public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
93 93
         
94
-        if ( empty( $sPostType ) ) { 
94
+        if ( empty( $sPostType ) ) {
95 95
             return; 
96 96
         }
97 97
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 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,14 +144,14 @@  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' );
151 151
             if ( 
152 152
                 in_array( 
153 153
                     $_sPageNow, 
154
-                    array( 'edit.php', 'post.php', 'post-new.php', 'plugins.php', 'tags.php', 'edit-tags.php', )
154
+                    array( 'edit.php', 'post.php', 'post-new.php', 'plugins.php', 'tags.php', 'edit-tags.php',)
155 155
                 )
156 156
             ) {
157 157
                 return AdminPageFramework_Utility::getCallerScriptPath( __FILE__ );
Please login to merge, or discard this patch.
Indentation   +83 added lines, -84 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Admin Page Framework
4
- * 
5
- * http://en.michaeluno.jp/admin-page-framework/
6
- * Copyright (c) 2013-2016 Michael Uno; Licensed MIT
7
- * 
8
- */
3
+     * Admin Page Framework
4
+     * 
5
+     * http://en.michaeluno.jp/admin-page-framework/
6
+     * Copyright (c) 2013-2016 Michael Uno; Licensed MIT
7
+     * 
8
+     */
9 9
 
10 10
 /**
11 11
  * Provides methods for registering custom post types.
@@ -26,84 +26,83 @@  discard block
 block discarded – undo
26 26
     protected $_sStructureType = 'post_type';
27 27
     
28 28
     /**
29
-    * The constructor of the class object.
30
-    * 
31
-    * Registers necessary hooks and sets up internal properties.
32
-    * 
33
-    * <h4>Example</h4>
34
-    * <code>new APF_PostType( 
35
-    *     'apf_posts',     // post type slug
36
-    *       array( 
37
-    *           'labels' => array(
38
-    *               'name'               => 'Demo',
39
-    *               'all_items'          => __( 'Sample Posts', 'admin-page-framework-demo' ),
40
-    *               'singular_name'      => 'Demo',
41
-    *               'add_new'            => __( 'Add New', 'admin-page-framework-demo' ),
42
-    *               'add_new_item'       => __( 'Add New APF Post', 'admin-page-framework-demo' ),
43
-    *               'edit'               => __( 'Edit', 'admin-page-framework-demo' ),
44
-    *               'edit_item'          => __( 'Edit APF Post', 'admin-page-framework-demo' ),
45
-    *               'new_item'           => __( 'New APF Post', 'admin-page-framework-demo' ),
46
-    *               'view'               => __( 'View', 'admin-page-framework-demo' ),
47
-    *               'view_item'          => __( 'View APF Post', 'admin-page-framework-demo' ),
48
-    *               'search_items'       => __( 'Search APF Post', 'admin-page-framework-demo' ),
49
-    *               'not_found'          => __( 'No APF Post found', 'admin-page-framework-demo' ),
50
-    *               'not_found_in_trash' => __( 'No APF Post found in Trash', 'admin-page-framework-demo' ),
51
-    *               'parent'             => __( 'Parent APF Post', 'admin-page-framework-demo' ),
52
-    *               
53
-    *               // (framework specific)
54
-    *               'plugin_action_link' => __( 'APF Posts', 'admin-page-framework-demo' ), // framework specific key. [3.7.3+]
55
-    *           ),
56
-    *           'public'            => true,
57
-    *           'menu_position'     => 110,
58
-    *           'supports'          => array( 'title' ), // e.g. array( 'title', 'editor', 'comments', 'thumbnail', 'excerpt' ),    
59
-    *           'taxonomies'        => array( '' ),
60
-    *           'has_archive'       => true,
61
-    *           'show_admin_column' => true, // [3.5+ core] this is for custom taxonomies to automatically add the column in the listing table.
62
-    *           'menu_icon'         => $this->oProp->bIsAdmin 
63
-    *               ? ( 
64
-    *                   version_compare( $GLOBALS['wp_version'], '3.8', '>=' ) 
65
-    *                       ? 'dashicons-wordpress' 
66
-    *                       : plugins_url( 'asset/image/wp-logo_16x16.png', APFDEMO_FILE ) 
67
-    *               )
68
-    *               : null, // do not call the function in the front-end.
69
-    *               
70
-    *           // (framework specific) this sets the screen icon for the post type for WordPress v3.7.1 or below.
71
-    *           // a file path can be passed instead of a url, plugins_url( 'asset/image/wp-logo_32x32.png', APFDEMO_FILE )
72
-    *           'screen_icon' => dirname( APFDEMO_FILE  ) . '/asset/image/wp-logo_32x32.png', 
73
-    *           
74
-    *           // [3.5.10+] (framework specific) default: true
75
-    *           'show_submenu_add_new'  => true, 
76
-    *           
77
-    *           // [3.7.4+] (framework specific) default: 10
78
-    *           'submenu_order_manage'  => 20,
79
-    *           'submenu_order_addnew'  => 21,
80
-    * 
81
-    *       )     
82
-    * );</code>
83
-    * 
84
-    * <h4>Framework Specific Post Type Arguments</h4>
85
-    * In addition to the post type argument structure defined by the WordPress core, there are arguments defined by the framework.
86
-    * 
87
-    * - 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.
88
-    * - show_submenu_add_new - [3.5.10+]    (boolean) Whether the sub-menu item of `Add New` should be displayed.
89
-    * - 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`
90
-    * - 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`
91
-    *
92
-    * <h4>Framework Specific Post Type Label Arguments</h4>
93
-    * - plugin_listing_table_title_cell_link' - [3.0.6+] Deprecated [3.7.3] use the `plugin_action_link` argument instead.
94
-    * - 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).
95
-    * To disable the action link, set an empty string `''`. 
96
-
97
-    * 
98
-    * @since        2.0.0
99
-    * @since        2.1.6       Added the $sTextDomain parameter.
100
-    * @see          http://codex.wordpress.org/Function_Reference/register_post_type#Arguments
101
-    * @param        string      The post type slug.
102
-    * @param        array       The <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Arguments">argument array</a> passed to register_post_type().
103
-    * @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.
104
-    * @param        string      The text domain of the caller script.
105
-    * @return       void
106
-    */
29
+     * The constructor of the class object.
30
+     * 
31
+     * Registers necessary hooks and sets up internal properties.
32
+     * 
33
+     * <h4>Example</h4>
34
+     * <code>new APF_PostType( 
35
+     *     'apf_posts',     // post type slug
36
+     *       array( 
37
+     *           'labels' => array(
38
+     *               'name'               => 'Demo',
39
+     *               'all_items'          => __( 'Sample Posts', 'admin-page-framework-demo' ),
40
+     *               'singular_name'      => 'Demo',
41
+     *               'add_new'            => __( 'Add New', 'admin-page-framework-demo' ),
42
+     *               'add_new_item'       => __( 'Add New APF Post', 'admin-page-framework-demo' ),
43
+     *               'edit'               => __( 'Edit', 'admin-page-framework-demo' ),
44
+     *               'edit_item'          => __( 'Edit APF Post', 'admin-page-framework-demo' ),
45
+     *               'new_item'           => __( 'New APF Post', 'admin-page-framework-demo' ),
46
+     *               'view'               => __( 'View', 'admin-page-framework-demo' ),
47
+     *               'view_item'          => __( 'View APF Post', 'admin-page-framework-demo' ),
48
+     *               'search_items'       => __( 'Search APF Post', 'admin-page-framework-demo' ),
49
+     *               'not_found'          => __( 'No APF Post found', 'admin-page-framework-demo' ),
50
+     *               'not_found_in_trash' => __( 'No APF Post found in Trash', 'admin-page-framework-demo' ),
51
+     *               'parent'             => __( 'Parent APF Post', 'admin-page-framework-demo' ),
52
+     *               
53
+     *               // (framework specific)
54
+     *               'plugin_action_link' => __( 'APF Posts', 'admin-page-framework-demo' ), // framework specific key. [3.7.3+]
55
+     *           ),
56
+     *           'public'            => true,
57
+     *           'menu_position'     => 110,
58
+     *           'supports'          => array( 'title' ), // e.g. array( 'title', 'editor', 'comments', 'thumbnail', 'excerpt' ),    
59
+     *           'taxonomies'        => array( '' ),
60
+     *           'has_archive'       => true,
61
+     *           'show_admin_column' => true, // [3.5+ core] this is for custom taxonomies to automatically add the column in the listing table.
62
+     *           'menu_icon'         => $this->oProp->bIsAdmin 
63
+     *               ? ( 
64
+     *                   version_compare( $GLOBALS['wp_version'], '3.8', '>=' ) 
65
+     *                       ? 'dashicons-wordpress' 
66
+     *                       : plugins_url( 'asset/image/wp-logo_16x16.png', APFDEMO_FILE ) 
67
+     *               )
68
+     *               : null, // do not call the function in the front-end.
69
+     *               
70
+     *           // (framework specific) this sets the screen icon for the post type for WordPress v3.7.1 or below.
71
+     *           // a file path can be passed instead of a url, plugins_url( 'asset/image/wp-logo_32x32.png', APFDEMO_FILE )
72
+     *           'screen_icon' => dirname( APFDEMO_FILE  ) . '/asset/image/wp-logo_32x32.png', 
73
+     *           
74
+     *           // [3.5.10+] (framework specific) default: true
75
+     *           'show_submenu_add_new'  => true, 
76
+     *           
77
+     *           // [3.7.4+] (framework specific) default: 10
78
+     *           'submenu_order_manage'  => 20,
79
+     *           'submenu_order_addnew'  => 21,
80
+     * 
81
+     *       )     
82
+     * );</code>
83
+     * 
84
+     * <h4>Framework Specific Post Type Arguments</h4>
85
+     * In addition to the post type argument structure defined by the WordPress core, there are arguments defined by the framework.
86
+     * 
87
+     * - 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.
88
+     * - show_submenu_add_new - [3.5.10+]    (boolean) Whether the sub-menu item of `Add New` should be displayed.
89
+     * - 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`
90
+     * - 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`
91
+     *
92
+     * <h4>Framework Specific Post Type Label Arguments</h4>
93
+     * - plugin_listing_table_title_cell_link' - [3.0.6+] Deprecated [3.7.3] use the `plugin_action_link` argument instead.
94
+     * - 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).
95
+     * To disable the action link, set an empty string `''`. 
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
+     */
107 106
     public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
108 107
         
109 108
         if ( empty( $sPostType ) ) { 
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType_Controller.php 3 patches
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @package     AdminPageFramework
18 18
  * @subpackage  PostType
19 19
  */
20
-abstract class AdminPageFramework_PostType_Controller extends AdminPageFramework_PostType_View {    
20
+abstract class AdminPageFramework_PostType_Controller extends AdminPageFramework_PostType_View {
21 21
 
22 22
     /**
23 23
      * Sets up hooks and properties.
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * @since       3.0.0
80 80
      * @return      array       An array holding the handle IDs of queued items.
81 81
      */
82
-    public function enqueueStyles( $aSRCs, $aCustomArgs=array() ) {     
82
+    public function enqueueStyles( $aSRCs, $aCustomArgs=array() ) {
83 83
         if ( method_exists( $this->oResource, '_enqueueStyles' ) ) {
84 84
             return $this->oResource->_enqueueStyles( $aSRCs, array( $this->oProp->sPostType ), $aCustomArgs );
85 85
         }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      *  
115 115
      * @since       3.0.0
116 116
      */
117
-    public function enqueueScript( $sSRC, $aCustomArgs=array() ) {    
117
+    public function enqueueScript( $sSRC, $aCustomArgs=array() ) {
118 118
         if ( method_exists( $this->oResource, '_enqueueScript' ) ) {
119 119
             return $this->oResource->_enqueueScript( $sSRC, array( $this->oProp->sPostType ), $aCustomArgs );
120 120
         }
Please login to merge, or discard this patch.
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -20,37 +20,37 @@  discard block
 block discarded – undo
20 20
 abstract class AdminPageFramework_PostType_Controller extends AdminPageFramework_PostType_View {    
21 21
 
22 22
     /**
23
-    * The method for necessary set-ups.
24
-    * 
25
-    * <h4>Example</h4>
26
-    * <code>public function setUp() {
27
-    *         $this->setAutoSave( false );
28
-    *         $this->setAuthorTableFilter( true );
29
-    *         $this->addTaxonomy( 
30
-    *             'sample_taxonomy', // taxonomy slug
31
-    *             array( // argument - for the argument array keys, refer to : http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
32
-    *                 'labels'              => array(
33
-    *                     'name'            => 'Genre',
34
-    *                     'add_new_item'    => 'Add New Genre',
35
-    *                     'new_item_name'   => "New Genre"
36
-    *                 ),
37
-    *                 'show_ui'                 => true,
38
-    *                 'show_tagcloud'           => false,
39
-    *                 'hierarchical'            => true,
40
-    *                 'show_admin_column'       => true,
41
-    *                 'show_in_nav_menus'       => true,
42
-    *                 'show_table_filter'       => true, // framework specific key
43
-    *                 'show_in_sidebar_menus'   => false, // framework specific key
44
-    *             )
45
-    *         );
46
-    *     }</code>
47
-    * 
48
-    * @abstract
49
-    * @since        2.0.0
50
-    * @remark       The user should override this method in their class definition.
51
-    * @remark       A callback for the `wp_loaded` hook.
52
-    * @callback     action      init
53
-    */
23
+     * The method for necessary set-ups.
24
+     * 
25
+     * <h4>Example</h4>
26
+     * <code>public function setUp() {
27
+     *         $this->setAutoSave( false );
28
+     *         $this->setAuthorTableFilter( true );
29
+     *         $this->addTaxonomy( 
30
+     *             'sample_taxonomy', // taxonomy slug
31
+     *             array( // argument - for the argument array keys, refer to : http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
32
+     *                 'labels'              => array(
33
+     *                     'name'            => 'Genre',
34
+     *                     'add_new_item'    => 'Add New Genre',
35
+     *                     'new_item_name'   => "New Genre"
36
+     *                 ),
37
+     *                 'show_ui'                 => true,
38
+     *                 'show_tagcloud'           => false,
39
+     *                 'hierarchical'            => true,
40
+     *                 'show_admin_column'       => true,
41
+     *                 'show_in_nav_menus'       => true,
42
+     *                 'show_table_filter'       => true, // framework specific key
43
+     *                 'show_in_sidebar_menus'   => false, // framework specific key
44
+     *             )
45
+     *         );
46
+     *     }</code>
47
+     * 
48
+     * @abstract
49
+     * @since        2.0.0
50
+     * @remark       The user should override this method in their class definition.
51
+     * @remark       A callback for the `wp_loaded` hook.
52
+     * @callback     action      init
53
+     */
54 54
     public function setUp() {}
55 55
     
56 56
     /**
@@ -116,49 +116,49 @@  discard block
 block discarded – undo
116 116
      * Front-end methods
117 117
      */
118 118
     /**
119
-    * Enables or disables the auto-save feature in the custom post type's post submission page.
120
-    * 
121
-    * <h4>Example</h4>
122
-    * <code>$this->setAutoSave( false );
123
-    * </code>
124
-    * 
125
-    * @since        2.0.0
126
-    * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
127
-    * return        void
128
-    */ 
119
+     * Enables or disables the auto-save feature in the custom post type's post submission page.
120
+     * 
121
+     * <h4>Example</h4>
122
+     * <code>$this->setAutoSave( false );
123
+     * </code>
124
+     * 
125
+     * @since        2.0.0
126
+     * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
127
+     * return        void
128
+     */ 
129 129
     protected function setAutoSave( $bEnableAutoSave=True ) {
130 130
         $this->oProp->bEnableAutoSave = $bEnableAutoSave;     
131 131
     }
132 132
     
133 133
     /**
134
-    * Adds a custom taxonomy to the class post type.
135
-    * <h4>Example</h4>
136
-    * <code>$this->addTaxonomy( 
137
-    *   'sample_taxonomy', // taxonomy slug
138
-    *   array( // argument
139
-    *       'labels'        => array(
140
-    *       'name'          => 'Genre',
141
-    *       'add_new_item'  => 'Add New Genre',
142
-    *       'new_item_name' => "New Genre"
143
-    *   ),
144
-    *   'show_ui'               => true,
145
-    *   'show_tagcloud'         => false,
146
-    *   'hierarchical'          => true,
147
-    *   'show_admin_column'     => true,
148
-    *   'show_in_nav_menus'     => true,
149
-    *   'show_table_filter'     => true,  // framework specific key
150
-    *   'show_in_sidebar_menus' => false, // framework specific key
151
-    *   )
152
-    * );</code>
153
-    * 
154
-    * @see      http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
155
-    * @since    2.0.0
156
-    * @since    3.1.1       Added the third parameter.
157
-    * @param    string      $sTaxonomySlug              The taxonomy slug.
158
-    * @param    array       $aArguments                      The taxonomy argument array passed to the second parameter of the <a href="http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments">register_taxonomy()</a> function.
159
-    * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
160
-    * @return   void
161
-    */ 
134
+     * Adds a custom taxonomy to the class post type.
135
+     * <h4>Example</h4>
136
+     * <code>$this->addTaxonomy( 
137
+     *   'sample_taxonomy', // taxonomy slug
138
+     *   array( // argument
139
+     *       'labels'        => array(
140
+     *       'name'          => 'Genre',
141
+     *       'add_new_item'  => 'Add New Genre',
142
+     *       'new_item_name' => "New Genre"
143
+     *   ),
144
+     *   'show_ui'               => true,
145
+     *   'show_tagcloud'         => false,
146
+     *   'hierarchical'          => true,
147
+     *   'show_admin_column'     => true,
148
+     *   'show_in_nav_menus'     => true,
149
+     *   'show_table_filter'     => true,  // framework specific key
150
+     *   'show_in_sidebar_menus' => false, // framework specific key
151
+     *   )
152
+     * );</code>
153
+     * 
154
+     * @see      http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
155
+     * @since    2.0.0
156
+     * @since    3.1.1       Added the third parameter.
157
+     * @param    string      $sTaxonomySlug              The taxonomy slug.
158
+     * @param    array       $aArguments                      The taxonomy argument array passed to the second parameter of the <a href="http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments">register_taxonomy()</a> function.
159
+     * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
160
+     * @return   void
161
+     */ 
162 162
     protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes=array() ) {
163 163
 
164 164
         $sTaxonomySlug  = $this->oUtil->sanitizeSlug( $sTaxonomySlug );
@@ -220,16 +220,16 @@  discard block
 block discarded – undo
220 220
         }
221 221
 
222 222
     /**
223
-    * Sets whether the author drop-down filter is enabled/disabled in the post type post list table.
224
-    * 
225
-    * <h4>Example</h4>
226
-    * <code>$this->setAuthorTableFilter( true );
227
-    * </code>
228
-    * 
229
-    * @since        2.0.0
230
-    * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
231
-    * @return       void
232
-    */ 
223
+     * Sets whether the author drop-down filter is enabled/disabled in the post type post list table.
224
+     * 
225
+     * <h4>Example</h4>
226
+     * <code>$this->setAuthorTableFilter( true );
227
+     * </code>
228
+     * 
229
+     * @since        2.0.0
230
+     * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
231
+     * @return       void
232
+     */ 
233 233
     protected function setAuthorTableFilter( $bEnableAuthorTableFileter=false ) {
234 234
         $this->oProp->bEnableAuthorTableFileter = $bEnableAuthorTableFileter;
235 235
     }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * @since       3.0.0
72 72
      * @return      array       An array holding the handle IDs of queued items.
73 73
      */
74
-    public function enqueueStyles( $aSRCs, $aCustomArgs=array() ) {     
74
+    public function enqueueStyles( $aSRCs, $aCustomArgs = array() ) {     
75 75
         if ( method_exists( $this->oResource, '_enqueueStyles' ) ) {
76 76
             return $this->oResource->_enqueueStyles( $aSRCs, array( $this->oProp->sPostType ), $aCustomArgs );
77 77
         }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * {@inheritdoc}
83 83
      * 
84 84
      */    
85
-    public function enqueueStyle( $sSRC, $aCustomArgs=array() ) {
85
+    public function enqueueStyle( $sSRC, $aCustomArgs = array() ) {
86 86
         if ( method_exists( $this->oResource, '_enqueueStyle' ) ) {
87 87
             return $this->oResource->_enqueueStyle( $sSRC, array( $this->oProp->sPostType ), $aCustomArgs );     
88 88
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * 
95 95
      * @return      array       An array holding the handle IDs of queued items.
96 96
      */
97
-    public function enqueueScripts( $aSRCs, $aCustomArgs=array() ) {
97
+    public function enqueueScripts( $aSRCs, $aCustomArgs = array() ) {
98 98
         if ( method_exists( $this->oResource, '_enqueueScripts' ) ) {
99 99
             return $this->oResource->_enqueueScripts( $aSRCs, array( $this->oProp->sPostType ), $aCustomArgs );
100 100
         }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      *  
107 107
      * @since       3.0.0
108 108
      */
109
-    public function enqueueScript( $sSRC, $aCustomArgs=array() ) {    
109
+    public function enqueueScript( $sSRC, $aCustomArgs = array() ) {    
110 110
         if ( method_exists( $this->oResource, '_enqueueScript' ) ) {
111 111
             return $this->oResource->_enqueueScript( $sSRC, array( $this->oProp->sPostType ), $aCustomArgs );
112 112
         }
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
127 127
     * return        void
128 128
     */ 
129
-    protected function setAutoSave( $bEnableAutoSave=True ) {
129
+    protected function setAutoSave( $bEnableAutoSave = True ) {
130 130
         $this->oProp->bEnableAutoSave = $bEnableAutoSave;     
131 131
     }
132 132
     
@@ -159,20 +159,20 @@  discard block
 block discarded – undo
159 159
     * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
160 160
     * @return   void
161 161
     */ 
162
-    protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes=array() ) {
162
+    protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes = array() ) {
163 163
 
164 164
         $sTaxonomySlug  = $this->oUtil->sanitizeSlug( $sTaxonomySlug );
165 165
         $aArguments     = $aArguments + array(
166 166
             'show_table_filter'     => null,
167 167
             'show_in_sidebar_menus' => null,
168
-            'submenu_order'         => 15,  // 3.7.4
169
-        ) ;
168
+            'submenu_order'         => 15, // 3.7.4
169
+        );
170 170
         $this->oProp->aTaxonomies[ $sTaxonomySlug ] = $aArguments;
171 171
         
172 172
         if ( $aArguments[ 'show_table_filter' ] ) {
173
-            $this->oProp->aTaxonomyTableFilters[] = $sTaxonomySlug;
173
+            $this->oProp->aTaxonomyTableFilters[ ] = $sTaxonomySlug;
174 174
         }
175
-        if ( ! $aArguments[ 'show_in_sidebar_menus' ] ) {
175
+        if ( !$aArguments[ 'show_in_sidebar_menus' ] ) {
176 176
             // @todo investigate the best handling method of taxonomy sub-menu items of a custom post type added to another custom post type menu with the `show_in_menu` arugment.
177 177
             $this->oProp->aTaxonomyRemoveSubmenuPages[ "edit-tags.php?taxonomy={$sTaxonomySlug}&amp;post_type={$this->oProp->sPostType}" ] = "edit.php?post_type={$this->oProp->sPostType}";
178 178
         }
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
231 231
     * @return       void
232 232
     */ 
233
-    protected function setAuthorTableFilter( $bEnableAuthorTableFileter=false ) {
233
+    protected function setAuthorTableFilter( $bEnableAuthorTableFileter = false ) {
234 234
         $this->oProp->bEnableAuthorTableFileter = $bEnableAuthorTableFileter;
235 235
     }
236 236
     
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
      * @param       array       $aArguments     The <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Arguments">array of arguments</a> to be passed to the second parameter of the `register_post_type()` function.
256 256
      * @since       3.2.0
257 257
      */
258
-    protected function setArguments( array $aArguments=array() ) {
258
+    protected function setArguments( array $aArguments = array() ) {
259 259
         $this->oProp->aPostTypeArgs = $aArguments;
260 260
     }
261 261
 
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType_Model.php 2 patches
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @subpackage      PostType
19 19
  * @internal
20 20
  */
21
-abstract class AdminPageFramework_PostType_Model extends AdminPageFramework_PostType_Router {    
21
+abstract class AdminPageFramework_PostType_Model extends AdminPageFramework_PostType_Router {
22 22
 
23 23
     /**
24 24
      * Sets up hooks and properties.
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @callback    filter      manage_{post type slug}_posts_custom_column
112 112
      * @return      string
113 113
      */
114
-    public function _replyToPrintColumnCell( $sColumnKey, $iPostID ) {                 
114
+    public function _replyToPrintColumnCell( $sColumnKey, $iPostID ) {
115 115
         echo $this->oUtil->addAndApplyFilter( 
116 116
             $this, 
117 117
             "cell_{$this->oProp->sPostType}_{$sColumnKey}", 
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function _replyToDisableAutoSave() {
129 129
         
130
-        if ( $this->oProp->bEnableAutoSave ) { 
130
+        if ( $this->oProp->bEnableAutoSave ) {
131 131
             return; 
132 132
         }
133
-        if ( $this->oProp->sPostType != get_post_type() ) { 
133
+        if ( $this->oProp->sPostType != get_post_type() ) {
134 134
             return; 
135 135
         }
136 136
         wp_dequeue_script( 'autosave' );
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         
39 39
         if ( $this->oProp->bIsAdmin ) {
40 40
             
41
-            add_action( 'load_' . $this->oProp->sPostType, array( $this, '_replyToSetUpHooksForModel' ) );
41
+            add_action( 'load_'.$this->oProp->sPostType, array( $this, '_replyToSetUpHooksForModel' ) );
42 42
             
43 43
             if ( $this->oProp->sCallerPath ) {
44 44
                 new AdminPageFramework_PostType_Model__FlushRewriteRules( $this );
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
     
66 66
         // Properties - sets translatable labels.
67 67
         $this->oProp->aColumnHeaders = array(
68
-            'cb'        => '<input type="checkbox" />',     // Checkbox for bulk actions. 
69
-            'title'     => $this->oMsg->get( 'title' ),     // Post title. Includes "edit", "quick edit", "trash" and "view" links. If $mode (set from $_REQUEST['mode']) is 'excerpt', a post excerpt is included between the title and links.
70
-            'author'    => $this->oMsg->get( 'author' ),    // Post author.
68
+            'cb'        => '<input type="checkbox" />', // Checkbox for bulk actions. 
69
+            'title'     => $this->oMsg->get( 'title' ), // Post title. Includes "edit", "quick edit", "trash" and "view" links. If $mode (set from $_REQUEST['mode']) is 'excerpt', a post excerpt is included between the title and links.
70
+            'author'    => $this->oMsg->get( 'author' ), // Post author.
71 71
             'comments'  => '<div class="comment-grey-bubble"></div>', // Number of pending comments. 
72
-            'date'      => $this->oMsg->get( 'date' ),      // The date and publish status of the post. 
72
+            'date'      => $this->oMsg->get( 'date' ), // The date and publish status of the post. 
73 73
         );
74 74
         
75 75
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         echo $this->oUtil->addAndApplyFilter( 
132 132
             $this, 
133 133
             "cell_{$this->oProp->sPostType}_{$sColumnKey}", 
134
-            '',  // value to be filtered - cell output
134
+            '', // value to be filtered - cell output
135 135
             $iPostID 
136 136
         );
137 137
     }    
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * @internal
181 181
      */
182 182
     public function _replyToRegisterTaxonomies() {
183
-        foreach( $this->oProp->aTaxonomies as $_sTaxonomySlug => $_aArguments ) {
183
+        foreach ( $this->oProp->aTaxonomies as $_sTaxonomySlug => $_aArguments ) {
184 184
             $this->_registerTaxonomy( 
185 185
                 $_sTaxonomySlug,  
186 186
                 $this->oUtil->getAsArray( $this->oProp->aTaxonomyObjectTypes[ $_sTaxonomySlug ] ), // object types 
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
      */
197 197
     public function _registerTaxonomy( $sTaxonomySlug, array $aObjectTypes, array $aArguments ) {
198 198
         
199
-        if ( ! in_array( $this->oProp->sPostType, $aObjectTypes ) ) {
200
-            $aObjectTypes[] = $this->oProp->sPostType;
199
+        if ( !in_array( $this->oProp->sPostType, $aObjectTypes ) ) {
200
+            $aObjectTypes[ ] = $this->oProp->sPostType;
201 201
         }
202 202
         register_taxonomy(
203 203
             $sTaxonomySlug,
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      */
236 236
     public function _replyToRemoveTexonomySubmenuPages() {
237 237
     
238
-        foreach( $this->oProp->aTaxonomyRemoveSubmenuPages as $sSubmenuPageSlug => $sTopLevelPageSlug ) {
238
+        foreach ( $this->oProp->aTaxonomyRemoveSubmenuPages as $sSubmenuPageSlug => $sTopLevelPageSlug ) {
239 239
             
240 240
             remove_submenu_page( $sTopLevelPageSlug, $sSubmenuPageSlug );
241 241
             
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType_Router.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * @subpackage      PostType
17 17
  * @internal
18 18
  */
19
-abstract class AdminPageFramework_PostType_Router extends AdminPageFramework_Factory {    
19
+abstract class AdminPageFramework_PostType_Router extends AdminPageFramework_Factory {
20 20
   
21 21
     /**
22 22
      * Determines whether the currently loaded page is of the post type page.
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function _replyToDetermineToLoadAdmin( /* $oScreen */ ) {
46 46
 
47
-        if ( ! $this->_isInThePage() ) {
47
+        if ( !$this->_isInThePage() ) {
48 48
             return;
49 49
         }
50 50
         
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     public function _isInThePage() {
116 116
         
117 117
         // If it's not in one of the post type's pages
118
-        if ( ! $this->oProp->bIsAdmin ) {
118
+        if ( !$this->oProp->bIsAdmin ) {
119 119
             return false;
120 120
         }
121 121
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             return true;
125 125
         }        
126 126
         
127
-        if ( ! in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'post.php', 'post-new.php' ) ) ) {
127
+        if ( !in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'post.php', 'post-new.php' ) ) ) {
128 128
             return false;
129 129
         }
130 130
                 
Please login to merge, or discard this patch.