Passed
Push — master ( 8c5c54...76481b )
by Brian
05:35
created
includes/admin/class-wpinv-admin-menus.php 1 patch
Spacing   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
  * Setup menus in WP admin.
4 4
  */
5 5
 
6
-defined( 'ABSPATH' ) || exit;
6
+defined('ABSPATH') || exit;
7 7
 
8 8
 /**
9 9
  * WC_Admin_Menus Class.
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
      * Hook in tabs.
14 14
      */
15 15
     public function __construct() {
16
-        add_action( 'admin_head', array( $this, 'set_admin_menu_class' ) );
17
-        add_action( 'admin_menu', array( $this, 'admin_menu' ), 10 );
18
-        add_action( 'admin_menu', array( $this, 'add_customers_menu' ), 18 );
19
-        add_action( 'admin_menu', array( $this, 'add_subscriptions_menu' ), 40 );
20
-        add_action( 'admin_menu', array( $this, 'add_addons_menu' ), 100 );
21
-        add_action( 'admin_menu', array( $this, 'add_settings_menu' ), 60 );
22
-        add_action( 'admin_menu', array( $this, 'remove_admin_submenus' ), 10 );
23
-        add_action( 'admin_head-nav-menus.php', array( $this, 'add_nav_menu_meta_boxes' ) );
16
+        add_action('admin_head', array($this, 'set_admin_menu_class'));
17
+        add_action('admin_menu', array($this, 'admin_menu'), 10);
18
+        add_action('admin_menu', array($this, 'add_customers_menu'), 18);
19
+        add_action('admin_menu', array($this, 'add_subscriptions_menu'), 40);
20
+        add_action('admin_menu', array($this, 'add_addons_menu'), 100);
21
+        add_action('admin_menu', array($this, 'add_settings_menu'), 60);
22
+        add_action('admin_menu', array($this, 'remove_admin_submenus'), 10);
23
+        add_action('admin_head-nav-menus.php', array($this, 'add_nav_menu_meta_boxes'));
24 24
     }
25 25
 
26 26
     /**
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	public function set_admin_menu_class() {
30 30
 		global $current_screen, $parent_file, $submenu_file;
31 31
 
32
-        if ( ! empty( $current_screen->id ) && in_array( $current_screen->id , array( 'wpi_discount', 'wpi_payment_form', 'wpi_invoice' ) ) ) {
32
+        if (!empty($current_screen->id) && in_array($current_screen->id, array('wpi_discount', 'wpi_payment_form', 'wpi_invoice'))) {
33 33
 			$parent_file = 'wpinv';
34 34
 			$submenu_file = 'edit.php?post_type=' . $current_screen->id;
35 35
         }
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function admin_menu() {
40 40
 
41
-        $capability = apply_filters( 'invoicing_capability', wpinv_get_capability() );
41
+        $capability = apply_filters('invoicing_capability', wpinv_get_capability());
42 42
         add_menu_page(
43
-            __( 'GetPaid', 'invoicing' ),
44
-            __( 'GetPaid', 'invoicing' ),
43
+            __('GetPaid', 'invoicing'),
44
+            __('GetPaid', 'invoicing'),
45 45
             $capability,
46 46
             'wpinv',
47 47
             null,
48
-            'data:image/svg+xml;base64,' . base64_encode( file_get_contents( WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg' ) ),
48
+            'data:image/svg+xml;base64,' . base64_encode(file_get_contents(WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg')),
49 49
             '54.123460'
50 50
         );
51 51
 
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
     public function add_customers_menu() {
58 58
         add_submenu_page(
59 59
             'wpinv',
60
-            __( 'Customers', 'invoicing' ),
61
-            __( 'Customers', 'invoicing' ),
60
+            __('Customers', 'invoicing'),
61
+            __('Customers', 'invoicing'),
62 62
             wpinv_get_capability(),
63 63
             'wpinv-customers',
64
-            array( $this, 'customers_page' )
64
+            array($this, 'customers_page')
65 65
         );
66 66
     }
67 67
 
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
     public function add_subscriptions_menu() {
72 72
         add_submenu_page(
73 73
             'wpinv',
74
-            __( 'Subscriptions', 'invoicing' ),
75
-            __( 'Subscriptions', 'invoicing' ),
74
+            __('Subscriptions', 'invoicing'),
75
+            __('Subscriptions', 'invoicing'),
76 76
             wpinv_get_capability(),
77 77
             'wpinv-subscriptions',
78 78
             'wpinv_subscriptions_page'
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * Displays the customers page.
84 84
      */
85 85
     public function customers_page() {
86
-        require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php' );
86
+        require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php');
87 87
         ?>
88 88
         <div class="wrap wpi-customers-wrap">
89 89
             <style>
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
                     width: 30%;
92 92
                 }
93 93
             </style>
94
-            <h1><?php echo esc_html( __( 'Customers', 'invoicing' ) ); ?></h1>
94
+            <h1><?php echo esc_html(__('Customers', 'invoicing')); ?></h1>
95 95
             <form method="post">
96 96
             <?php
97 97
                 $table = new WPInv_Customers_Table();
98 98
                 $table->prepare_items();
99
-                $table->search_box( __( 'Search Customers', 'invoicing' ), 'search-customers' );
99
+                $table->search_box(__('Search Customers', 'invoicing'), 'search-customers');
100 100
                 $table->display();
101 101
             ?>
102 102
             </form>
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
     public function add_settings_menu() {
111 111
         add_submenu_page(
112 112
             'wpinv',
113
-            __( 'Invoice Settings', 'invoicing' ),
114
-            __( 'Settings', 'invoicing' ),
115
-            apply_filters( 'invoicing_capability', wpinv_get_capability() ),
113
+            __('Invoice Settings', 'invoicing'),
114
+            __('Settings', 'invoicing'),
115
+            apply_filters('invoicing_capability', wpinv_get_capability()),
116 116
             'wpinv-settings',
117
-            array( $this, 'options_page' )
117
+            array($this, 'options_page')
118 118
         );
119 119
     }
120 120
 
121
-    public function add_addons_menu(){
122
-        if ( !apply_filters( 'wpi_show_addons_page', true ) ) {
121
+    public function add_addons_menu() {
122
+        if (!apply_filters('wpi_show_addons_page', true)) {
123 123
             return;
124 124
         }
125 125
 
@@ -129,78 +129,78 @@  discard block
 block discarded – undo
129 129
             __('Extensions', 'invoicing'),
130 130
             'manage_options',
131 131
             'wpi-addons',
132
-            array( $this, 'addons_page' )
132
+            array($this, 'addons_page')
133 133
         );
134 134
     }
135 135
 
136
-    public function addons_page(){
136
+    public function addons_page() {
137 137
         $addon_obj = new WPInv_Admin_Addons();
138 138
         $addon_obj->output();
139 139
     }
140 140
 
141 141
     function options_page() {
142
-        $page       = isset( $_GET['page'] )                ? strtolower( $_GET['page'] )               : false;
142
+        $page = isset($_GET['page']) ? strtolower($_GET['page']) : false;
143 143
 
144
-        if ( $page !== 'wpinv-settings' ) {
144
+        if ($page !== 'wpinv-settings') {
145 145
             return;
146 146
         }
147 147
 
148 148
         $settings_tabs = wpinv_get_settings_tabs();
149 149
         $settings_tabs = empty($settings_tabs) ? array() : $settings_tabs;
150
-        $active_tab    = isset( $_GET['tab'] ) && array_key_exists( $_GET['tab'], $settings_tabs ) ? sanitize_text_field( $_GET['tab'] ) : 'general';
151
-        $sections      = wpinv_get_settings_tab_sections( $active_tab );
150
+        $active_tab    = isset($_GET['tab']) && array_key_exists($_GET['tab'], $settings_tabs) ? sanitize_text_field($_GET['tab']) : 'general';
151
+        $sections      = wpinv_get_settings_tab_sections($active_tab);
152 152
         $key           = 'main';
153 153
 
154
-        if ( is_array( $sections ) ) {
155
-            $key = key( $sections );
154
+        if (is_array($sections)) {
155
+            $key = key($sections);
156 156
         }
157 157
 
158
-        $registered_sections = wpinv_get_settings_tab_sections( $active_tab );
159
-        $section             = isset( $_GET['section'] ) && ! empty( $registered_sections ) && array_key_exists( $_GET['section'], $registered_sections ) ? $_GET['section'] : $key;
158
+        $registered_sections = wpinv_get_settings_tab_sections($active_tab);
159
+        $section             = isset($_GET['section']) && !empty($registered_sections) && array_key_exists($_GET['section'], $registered_sections) ? $_GET['section'] : $key;
160 160
         ob_start();
161 161
         ?>
162 162
         <div class="wrap">
163 163
             <h1 class="nav-tab-wrapper">
164 164
                 <?php
165
-                foreach( wpinv_get_settings_tabs() as $tab_id => $tab_name ) {
166
-                    $tab_url = add_query_arg( array(
165
+                foreach (wpinv_get_settings_tabs() as $tab_id => $tab_name) {
166
+                    $tab_url = add_query_arg(array(
167 167
                         'settings-updated' => false,
168 168
                         'tab' => $tab_id,
169
-                    ) );
169
+                    ));
170 170
 
171 171
                     // Remove the section from the tabs so we always end up at the main section
172
-                    $tab_url = remove_query_arg( 'section', $tab_url );
173
-                    $tab_url = remove_query_arg( 'wpi_sub', $tab_url );
172
+                    $tab_url = remove_query_arg('section', $tab_url);
173
+                    $tab_url = remove_query_arg('wpi_sub', $tab_url);
174 174
 
175 175
                     $active = $active_tab == $tab_id ? ' nav-tab-active' : '';
176 176
 
177
-                    echo '<a href="' . esc_url( $tab_url ) . '" title="' . esc_attr( $tab_name ) . '" class="nav-tab' . $active . '">';
178
-                    echo esc_html( $tab_name );
177
+                    echo '<a href="' . esc_url($tab_url) . '" title="' . esc_attr($tab_name) . '" class="nav-tab' . $active . '">';
178
+                    echo esc_html($tab_name);
179 179
                     echo '</a>';
180 180
                 }
181 181
                 ?>
182 182
             </h1>
183 183
             <?php
184
-            $number_of_sections = count( $sections );
184
+            $number_of_sections = count($sections);
185 185
             $number = 0;
186
-            if ( $number_of_sections > 1 ) {
186
+            if ($number_of_sections > 1) {
187 187
                 echo '<div><ul class="subsubsub">';
188
-                foreach( $sections as $section_id => $section_name ) {
188
+                foreach ($sections as $section_id => $section_name) {
189 189
                     echo '<li>';
190 190
                     $number++;
191
-                    $tab_url = add_query_arg( array(
191
+                    $tab_url = add_query_arg(array(
192 192
                         'settings-updated' => false,
193 193
                         'tab' => $active_tab,
194 194
                         'section' => $section_id
195
-                    ) );
196
-                    $tab_url = remove_query_arg( 'wpi_sub', $tab_url );
195
+                    ));
196
+                    $tab_url = remove_query_arg('wpi_sub', $tab_url);
197 197
                     $class = '';
198
-                    if ( $section == $section_id ) {
198
+                    if ($section == $section_id) {
199 199
                         $class = 'current';
200 200
                     }
201
-                    echo '<a class="' . $class . '" href="' . esc_url( $tab_url ) . '">' . $section_name . '</a>';
201
+                    echo '<a class="' . $class . '" href="' . esc_url($tab_url) . '">' . $section_name . '</a>';
202 202
 
203
-                    if ( $number != $number_of_sections ) {
203
+                    if ($number != $number_of_sections) {
204 204
                         echo ' | ';
205 205
                     }
206 206
                     echo '</li>';
@@ -212,20 +212,20 @@  discard block
 block discarded – undo
212 212
                 <form method="post" action="options.php">
213 213
                     <table class="form-table">
214 214
                         <?php
215
-                        settings_fields( 'wpinv_settings' );
215
+                        settings_fields('wpinv_settings');
216 216
 
217
-                        if ( 'main' === $section ) {
218
-                            do_action( 'wpinv_settings_tab_top', $active_tab );
217
+                        if ('main' === $section) {
218
+                            do_action('wpinv_settings_tab_top', $active_tab);
219 219
                         }
220 220
 
221
-                        do_action( 'wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section );
222
-                        do_settings_sections( 'wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section );
223
-                        do_action( 'wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section );
224
-                        do_action( 'getpaid_settings_tab_bottom', $active_tab, $section );
221
+                        do_action('wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section);
222
+                        do_settings_sections('wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section);
223
+                        do_action('wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section);
224
+                        do_action('getpaid_settings_tab_bottom', $active_tab, $section);
225 225
 
226 226
                         // For backwards compatibility
227
-                        if ( 'main' === $section ) {
228
-                            do_action( 'wpinv_settings_tab_bottom', $active_tab );
227
+                        if ('main' === $section) {
228
+                            do_action('wpinv_settings_tab_bottom', $active_tab);
229 229
                         }
230 230
                         ?>
231 231
                     </table>
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     }
240 240
 
241 241
     public function remove_admin_submenus() {
242
-        remove_submenu_page( 'edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice' );
242
+        remove_submenu_page('edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice');
243 243
     }
244 244
 
245 245
     /**
@@ -249,8 +249,8 @@  discard block
 block discarded – undo
249 249
 
250 250
         add_meta_box(
251 251
             'wpinv_endpoints_nav_link',
252
-            __( 'GetPaid endpoints', 'invoicing' ),
253
-            array( $this, 'nav_menu_links' ),
252
+            __('GetPaid endpoints', 'invoicing'),
253
+            array($this, 'nav_menu_links'),
254 254
             'nav-menus',
255 255
             'side',
256 256
             'low'
@@ -265,12 +265,12 @@  discard block
 block discarded – undo
265 265
         $endpoints = $this->get_menu_items();
266 266
         ?>
267 267
         <div id="invoicing-endpoints" class="posttypediv">
268
-            <?php if ( ! empty( $endpoints['pages'] ) ) : ?>
268
+            <?php if (!empty($endpoints['pages'])) : ?>
269 269
                 <div id="tabs-panel-invoicing-endpoints" class="tabs-panel tabs-panel-active">
270 270
                     <ul id="invoicing-endpoints-checklist" class="categorychecklist form-no-clear">
271 271
                         <?php
272
-                            $walker = new Walker_Nav_Menu_Checklist( array() );
273
-                            echo walk_nav_menu_tree( array_map( 'wp_setup_nav_menu_item', $endpoints['pages'] ), 0, (object) array( 'walker' => $walker ) );
272
+                            $walker = new Walker_Nav_Menu_Checklist(array());
273
+                            echo walk_nav_menu_tree(array_map('wp_setup_nav_menu_item', $endpoints['pages']), 0, (object) array('walker' => $walker));
274 274
                         ?>
275 275
                     </ul>
276 276
                 </div>
@@ -279,11 +279,11 @@  discard block
 block discarded – undo
279 279
             <p class="button-controls wp-clearfix" data-items-type="invoicing-endpoints">
280 280
                 <span class="list-controls hide-if-no-js">
281 281
                     <input type="checkbox" id="invoicing-endpoints-tab" class="select-all">
282
-                    <label for="invoicing-endpoints-tab"><?php _e( 'Select all', 'invoicing' ); ?></label>
282
+                    <label for="invoicing-endpoints-tab"><?php _e('Select all', 'invoicing'); ?></label>
283 283
                 </span>
284 284
 
285 285
                 <span class="add-to-menu">
286
-                    <input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'invoicing' ); ?>" name="add-invoicing-endpoints-item" id="submit-invoicing-endpoints">
286
+                    <input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e('Add to menu', 'invoicing'); ?>" name="add-invoicing-endpoints-item" id="submit-invoicing-endpoints">
287 287
                     <span class="spinner"></span>
288 288
                 </span>
289 289
             </p>
@@ -296,35 +296,35 @@  discard block
 block discarded – undo
296 296
      *
297 297
      * @return array.
298 298
      */
299
-    public function get_menu_items(){
299
+    public function get_menu_items() {
300 300
         $items = array();
301 301
 
302 302
         $pages = array(
303 303
             array(
304
-                'id'    => wpinv_get_option( 'invoice_history_page' ),
305
-                'label' => __( 'My Invoices', 'invoicing' ),
304
+                'id'    => wpinv_get_option('invoice_history_page'),
305
+                'label' => __('My Invoices', 'invoicing'),
306 306
             ),
307 307
             array(
308
-                'id'    => wpinv_get_option( 'invoice_subscription_page' ),
309
-                'label' => __( 'My Subscriptions', 'invoicing' ),
308
+                'id'    => wpinv_get_option('invoice_subscription_page'),
309
+                'label' => __('My Subscriptions', 'invoicing'),
310 310
             )
311 311
         );
312 312
 
313
-        foreach ( apply_filters( 'getpaid_menu_pages', $pages ) as $page ) {
313
+        foreach (apply_filters('getpaid_menu_pages', $pages) as $page) {
314 314
 
315
-            if ( (int) $page['id'] > 0 ) {
315
+            if ((int) $page['id'] > 0) {
316 316
 
317 317
                 $item                   = new stdClass();
318 318
                 $item->object_id        = (int) $page['id'];
319 319
                 $item->db_id            = 0;
320
-                $item->object           =  'page';
320
+                $item->object           = 'page';
321 321
                 $item->menu_item_parent = 0;
322 322
                 $item->type             = 'post_type';
323
-                $item->title            = sanitize_text_field( $page['label'] );
324
-                $item->url              = get_permalink( (int) $page['id'] );
323
+                $item->title            = sanitize_text_field($page['label']);
324
+                $item->url              = get_permalink((int) $page['id']);
325 325
                 $item->target           = '';
326 326
                 $item->attr_title       = '';
327
-                $item->classes          = array( 'wpinv-menu-item' );
327
+                $item->classes          = array('wpinv-menu-item');
328 328
                 $item->xfn              = '';
329 329
 
330 330
                 $items['pages'][]       = $item;
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
 
334 334
         }
335 335
 
336
-        return apply_filters( 'wpinv_menu_items', $items );
336
+        return apply_filters('wpinv_menu_items', $items);
337 337
     }
338 338
 
339 339
 }
Please login to merge, or discard this patch.