Test Failed
Branch dev (2230d2)
by Michael
38:39
created
_controller/AdminPageFramework_Link_network_admin_page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * Sets up hooks and properties.
24 24
      */
25
-    public function __construct( $oProp, $oMsg=null ) {
25
+    public function __construct( $oProp, $oMsg = null ) {
26 26
 
27 27
         parent::__construct( $oProp, $oMsg );
28 28
 
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 
31 31
             // This filter for non-network-admin action links is added in the parent constructor.
32 32
             remove_filter(
33
-                'plugin_action_links_' . plugin_basename( $this->oProp->aScriptInfo['sPath'] ),
33
+                'plugin_action_links_'.plugin_basename( $this->oProp->aScriptInfo[ 'sPath' ] ),
34 34
                 array( $this, '_replyToAddSettingsLinkInPluginListingPage' ),
35 35
                 20
36 36
             );
37 37
             // Add the action link filter for the multi-site network admin.
38 38
             add_filter(
39
-                'network_admin_plugin_action_links_' . plugin_basename( $this->oProp->aScriptInfo['sPath'] ),
39
+                'network_admin_plugin_action_links_'.plugin_basename( $this->oProp->aScriptInfo[ 'sPath' ] ),
40 40
                 array( $this, '_replyToAddSettingsLinkInPluginListingPage' )
41 41
             );
42 42
 
Please login to merge, or discard this patch.
_model/AdminPageFramework_Property_network_admin_page.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 $GLOBALS,
52 52
                 array( 'aAdminPageFramework', 'aPageClasses', $this->sClassName )
53 53
             ),
54
-            'options_' . $this->sClassName, // options_{instantiated class name}
54
+            'options_'.$this->sClassName, // options_{instantiated class name}
55 55
             $this->sOptionKey
56 56
                 ? get_site_option( $this->sOptionKey, array() )
57 57
                 : array()
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @since       3.1.1       Made it return a boolean value.
70 70
      * @return      boolean     True if saved; otherwise, false.
71 71
      */
72
-    public function updateOption( $aOptions=null ) {
72
+    public function updateOption( $aOptions = null ) {
73 73
 
74 74
         if ( $this->_bDisableSavingOptions ) {
75 75
             return;
Please login to merge, or discard this patch.
_view/AdminPageFramework_PageLoadInfo_network_admin_page.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public static function instantiate( $oProp, $oMsg ) {
43 43
 
44
-        if ( ! is_network_admin() ) {
44
+        if ( !is_network_admin() ) {
45 45
             return;
46 46
         }
47 47
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             return self::$_oInstance;
50 50
         }
51 51
 
52
-        self::$aClassNames[] = $oProp->sClassName;
52
+        self::$aClassNames[ ] = $oProp->sClassName;
53 53
         self::$_oInstance = new AdminPageFramework_PageLoadInfo_network_admin_page( $oProp, $oMsg );
54 54
 
55 55
         return self::$_oInstance;
Please login to merge, or discard this patch.
factory/post_type/_controller/AdminPageFramework_Link_post_type.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 array( $this, '_replyToAddPostTypeQueryInEditPostLink' ),
33 33
                 10,
34 34
                 3
35
-           );
35
+            );
36 36
         }
37 37
     }
38 38
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * Sets up hooks and properties.
22 22
      *
23 23
      */
24
-    public function __construct( $oProp, $oMsg=null ) {
24
+    public function __construct( $oProp, $oMsg = null ) {
25 25
 
26 26
         parent::__construct( $oProp, $oMsg );
27 27
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         );
60 60
 
61 61
         // If the user explicitly sets an empty string to the label key, do not insert a link.
62
-        if ( ! $_sLinkLabel ) {
62
+        if ( !$_sLinkLabel ) {
63 63
             return $aLinks;
64 64
         }
65 65
 
@@ -67,13 +67,13 @@  discard block
 block discarded – undo
67 67
         array_unshift(
68 68
             $aLinks,
69 69
             // "<a href='" . esc_url( "edit.php?post_type={$this->oProp->sPostType}" ) . "'>"
70
-            '<a ' . $this->getAttributes(
70
+            '<a '.$this->getAttributes(
71 71
                 array(
72 72
                     'href'      => esc_url( "edit.php?post_type={$this->oProp->sPostType}" ),
73 73
                     // 3.5.7+ Added for acceptance testing
74 74
                     'class'     => 'apf-plugin-title-action-link apf-admin-page',
75 75
                 )
76
-            ) . '>'
76
+            ).'>'
77 77
                 . $_sLinkLabel
78 78
             . "</a>"
79 79
         );
@@ -89,9 +89,9 @@  discard block
 block discarded – undo
89 89
     public function _replyToSetFooterInfo() {
90 90
 
91 91
         if (
92
-            ! $this->isPostDefinitionPage( $this->oProp->sPostType )
93
-            && ! $this->isPostListingPage( $this->oProp->sPostType )
94
-            && ! $this->isCustomTaxonomyPage( $this->oProp->sPostType )
92
+            !$this->isPostDefinitionPage( $this->oProp->sPostType )
93
+            && !$this->isPostListingPage( $this->oProp->sPostType )
94
+            && !$this->isCustomTaxonomyPage( $this->oProp->sPostType )
95 95
         ) {
96 96
             return;
97 97
         }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @remark      e.g. `http://.../wp-admin/post.php?post=180&action=edit` -> `http://.../wp-admin/post.php?post=180&action=edit&post_type=[...]`
110 110
      * @callback    filter      get_edit_post_link
111 111
      */
112
-    public function _replyToAddPostTypeQueryInEditPostLink( $sURL, $iPostID=null, $sContext=null ) {
112
+    public function _replyToAddPostTypeQueryInEditPostLink( $sURL, $iPostID = null, $sContext = null ) {
113 113
         return add_query_arg(
114 114
             array(
115 115
                 'post'      => $iPostID,
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
         parent::__construct( $oProp, $oMsg );
27 27
 
28 28
         // For post type posts listing table page ( edit.php )
29
-        if ( isset( $_GET[ 'post_type' ] ) && $_GET[ 'post_type' ] === $this->oProp->sPostType ) {  // sanitization unnecessary
29
+        if ( isset( $_GET[ 'post_type' ] ) && $_GET[ 'post_type' ] === $this->oProp->sPostType ) {
30
+// sanitization unnecessary
30 31
             add_action(
31 32
                 'get_edit_post_link',
32 33
                 array( $this, '_replyToAddPostTypeQueryInEditPostLink' ),
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType_Router.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function _replyToDetermineToLoadAdmin( /* $oScreen */ ) {
45 45
 
46
-        if ( ! $this->_isInThePage() ) {
46
+        if ( !$this->_isInThePage() ) {
47 47
             return;
48 48
         }
49 49
 
50 50
         $this->_load(
51 51
             array(
52 52
                 "load_{$this->oProp->sPostType}",
53
-                "load_{$this->oProp->sClassName}",  // 3.8.14+
53
+                "load_{$this->oProp->sClassName}", // 3.8.14+
54 54
             )
55 55
         );
56 56
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     protected function _isInThePage() {
109 109
 
110 110
         // If it's not in one of the post type's pages
111
-        if ( ! $this->oProp->bIsAdmin ) {
111
+        if ( !$this->oProp->bIsAdmin ) {
112 112
             return false;
113 113
         }
114 114
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
             return true;
118 118
         }
119 119
 
120
-        if ( ! in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'term.php', 'post.php', 'post-new.php' ) ) ) {
120
+        if ( !in_array( $this->oProp->sPageNow, array( 'edit.php', 'edit-tags.php', 'term.php', 'post.php', 'post-new.php' ) ) ) {
121 121
             return false;
122 122
         }
123 123
 
@@ -138,10 +138,10 @@  discard block
 block discarded – undo
138 138
      */
139 139
     protected function _isValidAjaxReferrer() {
140 140
 
141
-        if ( ! $this->oProp->bIsAdminAjax ) {
141
+        if ( !$this->oProp->bIsAdminAjax ) {
142 142
             return false;
143 143
         }
144
-        if ( ! $this->oUtil->getElement( $this->oProp->aPostTypeArgs, 'public', true ) ) {
144
+        if ( !$this->oUtil->getElement( $this->oProp->aPostTypeArgs, 'public', true ) ) {
145 145
             return false;
146 146
         }
147 147
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         parse_str( $_aReferrer[ 'query' ], $_aQuery );
150 150
 
151 151
         $_sBaseName = basename( $_aReferrer[ 'path' ] );
152
-        if ( ! in_array( $_sBaseName, array( 'edit.php', ) ) ) {
152
+        if ( !in_array( $_sBaseName, array( 'edit.php',) ) ) {
153 153
             return false;
154 154
         }
155 155
         return $this->oUtil->getElement( $_aQuery, array( 'post_type' ), '' ) === $this->oProp->sPostType;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,8 @@
 block discarded – undo
123 123
 
124 124
         // 3.7.9+  Limitation: If the `page` argument is set in the query url,
125 125
         // this factory will not be loaded to make the overall responses lighter.
126
-        if ( isset( $_GET[ 'page' ] ) ) {   // sanitization unnecessary
126
+        if ( isset( $_GET[ 'page' ] ) ) {
127
+// sanitization unnecessary
127 128
             return false;
128 129
         }
129 130
 
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType.php 2 patches
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.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     * @param        string      The text domain of the caller script.
104 104
     * @return       void
105 105
     */
106
-    public function __construct( $sPostType, $aArguments=array(), $sCallerPath=null, $sTextDomain='admin-page-framework' ) {
106
+    public function __construct( $sPostType, $aArguments = array(), $sCallerPath = null, $sTextDomain = 'admin-page-framework' ) {
107 107
 
108 108
         if ( empty( $sPostType ) ) {
109 109
             return;
@@ -111,16 +111,16 @@  discard block
 block discarded – undo
111 111
 
112 112
         $_sPropertyClassName = isset( $this->aSubClassNames[ 'oProp' ] )
113 113
             ? $this->aSubClassNames[ 'oProp' ]
114
-            : 'AdminPageFramework_Property_' . $this->_sStructureType;
114
+            : 'AdminPageFramework_Property_'.$this->_sStructureType;
115 115
         $this->oProp = new $_sPropertyClassName(
116 116
             $this,
117 117
             $this->_getCallerScriptPath( $sCallerPath ),
118
-            get_class( $this ),     // class name
119
-            'publish_posts',        // capability
120
-            $sTextDomain,           // text domain
118
+            get_class( $this ), // class name
119
+            'publish_posts', // capability
120
+            $sTextDomain, // text domain
121 121
             $this->_sStructureType  // structure type
122 122
         );
123
-        $this->oProp->sPostType     = AdminPageFramework_WPUtility::sanitizeSlug( $sPostType );
123
+        $this->oProp->sPostType = AdminPageFramework_WPUtility::sanitizeSlug( $sPostType );
124 124
 
125 125
         // Post type argument array structure
126 126
         // @see http://codex.wordpress.org/Function_Reference/register_post_type#Arguments
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
                 return $sCallerPath;
144 144
             }
145 145
 
146
-            if ( ! is_admin() ) {
146
+            if ( !is_admin() ) {
147 147
                 return null;
148 148
             }
149 149
             $_sPageNow = AdminPageFramework_Utility::getElement( $GLOBALS, 'pagenow' );
Please login to merge, or discard this patch.
development/factory/post_type/AdminPageFramework_PostType_Controller.php 2 patches
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -19,37 +19,37 @@  discard block
 block discarded – undo
19 19
 abstract class AdminPageFramework_PostType_Controller extends AdminPageFramework_PostType_View {
20 20
 
21 21
     /**
22
-    * The method for necessary set-ups.
23
-    *
24
-    * <h4>Example</h4>
25
-    * <code>public function setUp() {
26
-    *         $this->setAutoSave( false );
27
-    *         $this->setAuthorTableFilter( true );
28
-    *         $this->addTaxonomy(
29
-    *             'sample_taxonomy', // taxonomy slug
30
-    *             array( // argument - for the argument array keys, refer to : http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
31
-    *                 'labels'              => array(
32
-    *                     'name'            => 'Genre',
33
-    *                     'add_new_item'    => 'Add New Genre',
34
-    *                     'new_item_name'   => "New Genre"
35
-    *                 ),
36
-    *                 'show_ui'                 => true,
37
-    *                 'show_tagcloud'           => false,
38
-    *                 'hierarchical'            => true,
39
-    *                 'show_admin_column'       => true,
40
-    *                 'show_in_nav_menus'       => true,
41
-    *                 'show_table_filter'       => true, // framework specific key
42
-    *                 'show_in_sidebar_menus'   => false, // framework specific key
43
-    *             )
44
-    *         );
45
-    *     }</code>
46
-    *
47
-    * @abstract
48
-    * @since        2.0.0
49
-    * @remark       The user should override this method in their class definition.
50
-    * @remark       A callback for the `wp_loaded` hook.
51
-    * @callback     action      init
52
-    */
22
+     * The method for necessary set-ups.
23
+     *
24
+     * <h4>Example</h4>
25
+     * <code>public function setUp() {
26
+     *         $this->setAutoSave( false );
27
+     *         $this->setAuthorTableFilter( true );
28
+     *         $this->addTaxonomy(
29
+     *             'sample_taxonomy', // taxonomy slug
30
+     *             array( // argument - for the argument array keys, refer to : http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
31
+     *                 'labels'              => array(
32
+     *                     'name'            => 'Genre',
33
+     *                     'add_new_item'    => 'Add New Genre',
34
+     *                     'new_item_name'   => "New Genre"
35
+     *                 ),
36
+     *                 'show_ui'                 => true,
37
+     *                 'show_tagcloud'           => false,
38
+     *                 'hierarchical'            => true,
39
+     *                 'show_admin_column'       => true,
40
+     *                 'show_in_nav_menus'       => true,
41
+     *                 'show_table_filter'       => true, // framework specific key
42
+     *                 'show_in_sidebar_menus'   => false, // framework specific key
43
+     *             )
44
+     *         );
45
+     *     }</code>
46
+     *
47
+     * @abstract
48
+     * @since        2.0.0
49
+     * @remark       The user should override this method in their class definition.
50
+     * @remark       A callback for the `wp_loaded` hook.
51
+     * @callback     action      init
52
+     */
53 53
     public function setUp() {}
54 54
 
55 55
     /**
@@ -115,49 +115,49 @@  discard block
 block discarded – undo
115 115
      * Front-end methods
116 116
      */
117 117
     /**
118
-    * Enables or disables the auto-save feature in the custom post type's post submission page.
119
-    *
120
-    * <h4>Example</h4>
121
-    * <code>$this->setAutoSave( false );
122
-    * </code>
123
-    *
124
-    * @since        2.0.0
125
-    * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
126
-    * return        void
127
-    */
118
+     * Enables or disables the auto-save feature in the custom post type's post submission page.
119
+     *
120
+     * <h4>Example</h4>
121
+     * <code>$this->setAutoSave( false );
122
+     * </code>
123
+     *
124
+     * @since        2.0.0
125
+     * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
126
+     * return        void
127
+     */
128 128
     protected function setAutoSave( $bEnableAutoSave=True ) {
129 129
         $this->oProp->bEnableAutoSave = $bEnableAutoSave;
130 130
     }
131 131
 
132 132
     /**
133
-    * Adds a custom taxonomy to the class post type.
134
-    * <h4>Example</h4>
135
-    * <code>$this->addTaxonomy(
136
-    *   'sample_taxonomy', // taxonomy slug
137
-    *   array( // argument
138
-    *       'labels'        => array(
139
-    *       'name'          => 'Genre',
140
-    *       'add_new_item'  => 'Add New Genre',
141
-    *       'new_item_name' => "New Genre"
142
-    *   ),
143
-    *   'show_ui'               => true,
144
-    *   'show_tagcloud'         => false,
145
-    *   'hierarchical'          => true,
146
-    *   'show_admin_column'     => true,
147
-    *   'show_in_nav_menus'     => true,
148
-    *   'show_table_filter'     => true,  // framework specific key
149
-    *   'show_in_sidebar_menus' => false, // framework specific key
150
-    *   )
151
-    * );</code>
152
-    *
153
-    * @see      http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
154
-    * @since    2.0.0
155
-    * @since    3.1.1       Added the third parameter.
156
-    * @param    string      $sTaxonomySlug              The taxonomy slug.
157
-    * @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.
158
-    * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
159
-    * @return   void
160
-    */
133
+     * Adds a custom taxonomy to the class post type.
134
+     * <h4>Example</h4>
135
+     * <code>$this->addTaxonomy(
136
+     *   'sample_taxonomy', // taxonomy slug
137
+     *   array( // argument
138
+     *       'labels'        => array(
139
+     *       'name'          => 'Genre',
140
+     *       'add_new_item'  => 'Add New Genre',
141
+     *       'new_item_name' => "New Genre"
142
+     *   ),
143
+     *   'show_ui'               => true,
144
+     *   'show_tagcloud'         => false,
145
+     *   'hierarchical'          => true,
146
+     *   'show_admin_column'     => true,
147
+     *   'show_in_nav_menus'     => true,
148
+     *   'show_table_filter'     => true,  // framework specific key
149
+     *   'show_in_sidebar_menus' => false, // framework specific key
150
+     *   )
151
+     * );</code>
152
+     *
153
+     * @see      http://codex.wordpress.org/Function_Reference/register_taxonomy#Arguments
154
+     * @since    2.0.0
155
+     * @since    3.1.1       Added the third parameter.
156
+     * @param    string      $sTaxonomySlug              The taxonomy slug.
157
+     * @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.
158
+     * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
159
+     * @return   void
160
+     */
161 161
     protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes=array() ) {
162 162
 
163 163
         $sTaxonomySlug  = $this->oUtil->sanitizeSlug( $sTaxonomySlug );
@@ -219,16 +219,16 @@  discard block
 block discarded – undo
219 219
         }
220 220
 
221 221
     /**
222
-    * Sets whether the author drop-down filter is enabled/disabled in the post type post list table.
223
-    *
224
-    * <h4>Example</h4>
225
-    * <code>$this->setAuthorTableFilter( true );
226
-    * </code>
227
-    *
228
-    * @since        2.0.0
229
-    * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
230
-    * @return       void
231
-    */
222
+     * Sets whether the author drop-down filter is enabled/disabled in the post type post list table.
223
+     *
224
+     * <h4>Example</h4>
225
+     * <code>$this->setAuthorTableFilter( true );
226
+     * </code>
227
+     *
228
+     * @since        2.0.0
229
+     * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
230
+     * @return       void
231
+     */
232 232
     protected function setAuthorTableFilter( $bEnableAuthorTableFileter=false ) {
233 233
         $this->oProp->bEnableAuthorTableFileter = $bEnableAuthorTableFileter;
234 234
     }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     * @param        boolean         If true, it enables the auto-save; otherwise, it disables it.
154 154
     * return        void
155 155
     */
156
-    protected function setAutoSave( $bEnableAutoSave=True ) {
156
+    protected function setAutoSave( $bEnableAutoSave = True ) {
157 157
         $this->oProp->bEnableAutoSave = $bEnableAutoSave;
158 158
     }
159 159
 
@@ -186,20 +186,20 @@  discard block
 block discarded – undo
186 186
     * @param    array       $aAdditionalObjectTypes     Additional object types (post types) besides the caller post type.
187 187
     * @return   void
188 188
     */
189
-    protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes=array() ) {
189
+    protected function addTaxonomy( $sTaxonomySlug, array $aArguments, array $aAdditionalObjectTypes = array() ) {
190 190
 
191 191
         $sTaxonomySlug  = $this->oUtil->sanitizeSlug( $sTaxonomySlug );
192 192
         $aArguments     = $aArguments + array(
193 193
             'show_table_filter'     => null,
194 194
             'show_in_sidebar_menus' => null,
195
-            'submenu_order'         => 15,  // 3.7.4
196
-        ) ;
195
+            'submenu_order'         => 15, // 3.7.4
196
+        );
197 197
         $this->oProp->aTaxonomies[ $sTaxonomySlug ] = $aArguments;
198 198
 
199 199
         if ( $aArguments[ 'show_table_filter' ] ) {
200
-            $this->oProp->aTaxonomyTableFilters[] = $sTaxonomySlug;
200
+            $this->oProp->aTaxonomyTableFilters[ ] = $sTaxonomySlug;
201 201
         }
202
-        if ( ! $aArguments[ 'show_in_sidebar_menus' ] ) {
202
+        if ( !$aArguments[ 'show_in_sidebar_menus' ] ) {
203 203
             // @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` argument.
204 204
             $this->oProp->aTaxonomyRemoveSubmenuPages[ "edit-tags.php?taxonomy={$sTaxonomySlug}&amp;post_type={$this->oProp->sPostType}" ] = "edit.php?post_type={$this->oProp->sPostType}";
205 205
         }
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     * @param        boolean     $bEnableAuthorTableFileter      If true, it enables the author filter; otherwise, it disables it.
258 258
     * @return       void
259 259
     */
260
-    protected function setAuthorTableFilter( $bEnableAuthorTableFileter=false ) {
260
+    protected function setAuthorTableFilter( $bEnableAuthorTableFileter = false ) {
261 261
         $this->oProp->bEnableAuthorTableFileter = $bEnableAuthorTableFileter;
262 262
     }
263 263
 
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
      * @since       3.2.0
284 284
      * @return      void
285 285
      */
286
-    protected function setArguments( array $aArguments=array() ) {
286
+    protected function setArguments( array $aArguments = array() ) {
287 287
         $this->oProp->aPostTypeArgs = $aArguments;
288 288
     }
289 289
 
Please login to merge, or discard this patch.
post_type/_model/AdminPageFramework_PostType_Model__FlushRewriteRules.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 
93 93
     }
94 94
 
95
-       /**
95
+        /**
96 96
          * Resets the rewrite rules for custom post types.
97 97
          *
98 98
          * This must be done after the post type is registered. So the shutdown action hook is used.
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function __construct( $oFactory ) {
30 30
 
31
-        if ( ! $this->_shouldProceed( $oFactory ) ) {
31
+        if ( !$this->_shouldProceed( $oFactory ) ) {
32 32
             return;
33 33
         }
34 34
 
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
          */
54 54
         private function _shouldProceed( $oFactory ) {
55 55
 
56
-            if ( ! $oFactory->oProp->bIsAdmin ) {
56
+            if ( !$oFactory->oProp->bIsAdmin ) {
57 57
                 return false;
58 58
             }
59
-            if ( ! $oFactory->oProp->sCallerPath ) {
59
+            if ( !$oFactory->oProp->sCallerPath ) {
60 60
                 return false;
61 61
             }
62 62
             return 'plugin' === $oFactory->oProp->sScriptType;
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         }
87 87
 
88 88
         // If the execution flow in the plugin activation hook, schedule flushing rewrite rules.
89
-        if ( did_action( 'activate_' . plugin_basename( $this->oFactory->oProp->sCallerPath ) ) ) {
89
+        if ( did_action( 'activate_'.plugin_basename( $this->oFactory->oProp->sCallerPath ) ) ) {
90 90
             add_action( 'shutdown', array( $this, '_replyToFlushRewriteRules' ) );
91 91
         }
92 92
 
Please login to merge, or discard this patch.
post_type/_model/AdminPageFramework_PostType_Model__SubMenuOrder.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         $this->oFactory = $oFactory;
32 32
 
33
-        if ( ! $oFactory->oProp->bIsAdmin ) {
33
+        if ( !$oFactory->oProp->bIsAdmin ) {
34 34
             return;
35 35
         }
36 36
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         add_action(
48 48
             'admin_menu',
49
-            array( $this, 'sortAdminSubMenu' ),  // defined in the framework utility class.
49
+            array( $this, 'sortAdminSubMenu' ), // defined in the framework utility class.
50 50
             9999
51 51
         );
52 52
 
@@ -61,15 +61,15 @@  discard block
 block discarded – undo
61 61
 
62 62
         // Check the post type `show_ui` and other related UI arguments.
63 63
         $_bsShowInMeenu = $this->getShowInMenuPostTypeArgument( $this->oFactory->oProp->aPostTypeArgs );
64
-        if ( ! $_bsShowInMeenu ) {
64
+        if ( !$_bsShowInMeenu ) {
65 65
             return;
66 66
         }
67 67
 
68 68
         // If the user sets a menu slug to the 'show_in_menu' argument, use that.
69 69
         // It is used to set a custom post type sub-menu belong to another menu.
70
-        $_sSubMenuSlug  = is_string( $_bsShowInMeenu )
70
+        $_sSubMenuSlug = is_string( $_bsShowInMeenu )
71 71
             ? $_bsShowInMeenu
72
-            : 'edit.php?post_type=' . $this->oFactory->oProp->sPostType;
72
+            : 'edit.php?post_type='.$this->oFactory->oProp->sPostType;
73 73
 
74 74
         // Set the index to the framework specific global array for sorting.
75 75
         $this->_setSubMenuSlugForSorting( $_sSubMenuSlug );
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
 
131 131
                 // @remark      This is the partial link url set in the third element ( index of 2 ) in the third dimension of submenu global array element.
132 132
                 // This is not the submenu slug.
133
-                $_sLinkSlugManage = 'edit.php?post_type=' . $this->oFactory->oProp->sPostType;
133
+                $_sLinkSlugManage = 'edit.php?post_type='.$this->oFactory->oProp->sPostType;
134 134
 
135 135
                 $_aLinkSlugs = array(
136 136
                     $_sLinkSlugManage => $_nSubMenuOrderManage,
137
-                    'post-new.php?post_type=' . $this->oFactory->oProp->sPostType => $_nSubMenuOrderAddNew,
137
+                    'post-new.php?post_type='.$this->oFactory->oProp->sPostType => $_nSubMenuOrderAddNew,
138 138
                 );
139 139
 
140 140
                 // If the user does not set a custom value, unset it
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
                 }
144 144
 
145 145
                 // If the user does not want to show the Add New sub menu, no need to change the order.
146
-                if ( ! $_bShowAddNew || 10 == $_nSubMenuOrderAddNew ) {
147
-                    unset( $_aLinkSlugs[ 'post-new.php?post_type=' . $this->oFactory->oProp->sPostType ] );
146
+                if ( !$_bShowAddNew || 10 == $_nSubMenuOrderAddNew ) {
147
+                    unset( $_aLinkSlugs[ 'post-new.php?post_type='.$this->oFactory->oProp->sPostType ] );
148 148
                 }
149 149
 
150 150
                 return $_aLinkSlugs;
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
          */
165 165
         private function _setSubMenuIndexByLinksSlugs( $sSubMenuSlug, array $aLinkSlugs ) {
166 166
 
167
-            foreach( $this->getElementAsArray( $GLOBALS, array( 'submenu', $sSubMenuSlug ) ) as $_nIndex => $_aSubMenuItem ) {
167
+            foreach ( $this->getElementAsArray( $GLOBALS, array( 'submenu', $sSubMenuSlug ) ) as $_nIndex => $_aSubMenuItem ) {
168 168
 
169
-                foreach( $aLinkSlugs as $_sLinkSlug => $_nOrder ) {
169
+                foreach ( $aLinkSlugs as $_sLinkSlug => $_nOrder ) {
170 170
 
171 171
                     $_bIsSet = $this->_setSubMenuIndexByLinksSlug( $sSubMenuSlug, $_nIndex, $_aSubMenuItem, $_sLinkSlug, $_nOrder );
172 172
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
             private function _setSubMenuIndexByLinksSlug( $sSubMenuSlug, $nIndex, $aSubMenuItem, $sLinkSlug, $nOrder ) {
193 193
 
194 194
                 // The third item is the link slug.
195
-                if ( ! isset( $aSubMenuItem[ 2 ] ) ) {
195
+                if ( !isset( $aSubMenuItem[ 2 ] ) ) {
196 196
                     return false;
197 197
                 }
198 198
                 if ( $aSubMenuItem[ 2 ] !== $sLinkSlug ) {
Please login to merge, or discard this patch.