Passed
Push — master ( be91ea...c28712 )
by Nirjhar
02:27
created
lib/ajax.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@  discard block
 block discarded – undo
3 3
  * Doing AJAX the WordPress way.
4 4
  * Use this class in admin or user side
5 5
  */
6
-if ( ! defined( 'ABSPATH' ) ) exit;
6
+if ( ! defined('ABSPATH')) exit;
7 7
 
8 8
 //AJAX helper class
9
-if ( ! class_exists( 'PLUGIN_AJAX' ) ) {
9
+if ( ! class_exists('PLUGIN_AJAX')) {
10 10
 
11 11
 	final class PLUGIN_AJAX {
12 12
 
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
 		public function __construct() {
16 16
 
17 17
 			//Adding the AJAX
18
-			add_action( 'admin_footer', array( $this, 'customName_js' ) );
19
-			add_action( 'wp_ajax_customName', array( $this, 'customName' ) );
20
-			add_action( 'wp_ajax_nopriv_customName', array( $this, 'customName' ) );
18
+			add_action('admin_footer', array($this, 'customName_js'));
19
+			add_action('wp_ajax_customName', array($this, 'customName'));
20
+			add_action('wp_ajax_nopriv_customName', array($this, 'customName'));
21 21
 		}
22 22
 
23 23
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		public function form() { ?>
27 27
 
28 28
 			<form id="addByAjax" method="POST" action="">
29
-				<input type="text" name="textName" placeholder="<?php _e( 'Text', 'textdomain' ); ?>">
29
+				<input type="text" name="textName" placeholder="<?php _e('Text', 'textdomain'); ?>">
30 30
 				<input id="AjaxSubmit" type="submit" name="submit" value="Submit">
31 31
 			</form>
32 32
 			<?php
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
 
78 78
 			// DO some stuff
79 79
 			 
80
-			$response = array( 'val' => $value );
81
-			echo json_encode( $response );
80
+			$response = array('val' => $value);
81
+			echo json_encode($response);
82 82
 			wp_die();
83 83
 		}
84 84
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,9 @@
 block discarded – undo
3 3
  * Doing AJAX the WordPress way.
4 4
  * Use this class in admin or user side
5 5
  */
6
-if ( ! defined( 'ABSPATH' ) ) exit;
6
+if ( ! defined( 'ABSPATH' ) ) {
7
+	exit;
8
+}
7 9
 
8 10
 //AJAX helper class
9 11
 if ( ! class_exists( 'PLUGIN_AJAX' ) ) {
Please login to merge, or discard this patch.
lib/upload.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 
4 4
 /**
5 5
  * Plugin upload for WordPress front end or backend
6 6
  * 
7 7
  * 
8 8
  */
9
-if ( ! class_exists( 'PLUGIN_UPLOAD' ) ) {
9
+if ( ! class_exists('PLUGIN_UPLOAD')) {
10 10
 
11 11
 	final class PLUGIN_UPLOAD extends WP_WIDGET {
12 12
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 		// Add basic form
16 16
 		public function __construct() {
17 17
 
18
-			if ( isset($_POST['UploadSubmit']) ) {
18
+			if (isset($_POST['UploadSubmit'])) {
19 19
 				$this->upload_controller();
20 20
 			}
21 21
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
 			<form method="POST" action="" enctype="multipart/form-data">
31 31
 				<input name="UploadFile" type="file" multiple="false"/>
32
-				<?php submit_button( __( 'Upload', 'stv' ), 'secondary', 'UploadSubmit' ); ?>
32
+				<?php submit_button(__('Upload', 'stv'), 'secondary', 'UploadSubmit'); ?>
33 33
 			</form>
34 34
 			<?php
35 35
 		}
@@ -43,28 +43,28 @@  discard block
 block discarded – undo
43 43
 			$type = $file['type'];
44 44
 
45 45
 			// Check in your file type
46
-			if( $type != 'application/_TYPE_' ) {
47
-				add_action( 'admin_notices', array( $this, 'file_type_error_admin_notice' ) );
46
+			if ($type != 'application/_TYPE_') {
47
+				add_action('admin_notices', array($this, 'file_type_error_admin_notice'));
48 48
 			} else {
49 49
 
50
-				if (!function_exists('wp_handle_upload')){
50
+				if ( ! function_exists('wp_handle_upload')) {
51 51
 					require_once(ABSPATH . 'wp-admin/includes/image.php');
52 52
 					require_once(ABSPATH . 'wp-admin/includes/file.php');
53 53
 					require_once(ABSPATH . 'wp-admin/includes/media.php');
54 54
 				}
55 55
 
56
-				$overrides = array( 'test_form' => false);
56
+				$overrides = array('test_form' => false);
57 57
 				$attachment_id = wp_handle_upload($file, $overrides);
58 58
 
59
-				if( is_array( $attachment_id ) && array_key_exists( 'url', $attachment_id ) ) {
59
+				if (is_array($attachment_id) && array_key_exists('url', $attachment_id)) {
60 60
 					$upload_id = $attachment_id['url'];
61 61
 
62
-					add_action( 'admin_notices', array( $this, 'success_notice' ) );
62
+					add_action('admin_notices', array($this, 'success_notice'));
63 63
 
64 64
 					// Use $upload_id for any purpose. For example storing temporarily
65 65
 					//update_option('some_token', $upload_id);
66 66
 				} else {
67
-					add_action( 'admin_notices', array( $this, 'file_error_admin_notice' ) );
67
+					add_action('admin_notices', array($this, 'file_error_admin_notice'));
68 68
 					$upload_id = false;
69 69
 				}
70 70
 			}
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 		public function file_type_error_admin_notice() { ?>
76 76
 
77 77
 			<div class="notice notice-success is-dismissible">
78
-				<p><?php _e( 'Please Upload correct type of file only.', 'textdomain' ); ?></p>
78
+				<p><?php _e('Please Upload correct type of file only.', 'textdomain'); ?></p>
79 79
  			</div>
80 80
 		<?php
81 81
 		}
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 		public function file_error_admin_notice() { ?>
86 86
 
87 87
 			<div class="notice notice-success is-dismissible">
88
-				<p><?php _e( 'File Upload failed.', 'textdomain' ); ?></p>
88
+				<p><?php _e('File Upload failed.', 'textdomain'); ?></p>
89 89
  			</div>
90 90
 		<?php
91 91
 		}
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 		public function success_notice() { ?>
96 96
 
97 97
 			<div class="notice notice-success is-dismissible">
98
-				<p><?php _e( 'Successfully saved file details.', 'textdomain' ); ?></p>
98
+				<p><?php _e('Successfully saved file details.', 'textdomain'); ?></p>
99 99
  			</div>
100 100
 		<?php
101 101
 		}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 
4 6
 /**
5 7
  * Plugin upload for WordPress front end or backend
Please login to merge, or discard this patch.
lib/script.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Add scripts to the plugin. CSS and JS.
4 4
  */
5
-if ( ! defined( 'ABSPATH' ) ) exit;
5
+if ( ! defined('ABSPATH')) exit;
6 6
 
7
-if ( ! class_exists( 'PLUGIN_SCRIPT' ) ) {
7
+if ( ! class_exists('PLUGIN_SCRIPT')) {
8 8
 
9 9
 	final class PLUGIN_SCRIPT {
10 10
 
11 11
 
12 12
 		public function __construct() {
13 13
 
14
-			add_action( 'admin_head', array( $this, 'data_table_css' ) );
15
-			add_action( 'admin_enqueue_scripts', array( $this, 'backend_scripts' ) );
16
-			add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) );
14
+			add_action('admin_head', array($this, 'data_table_css'));
15
+			add_action('admin_enqueue_scripts', array($this, 'backend_scripts'));
16
+			add_action('wp_enqueue_scripts', array($this, 'frontend_scripts'));
17 17
 		}
18 18
 
19 19
 
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 			// Set condition to add script
40 40
 			// if ( ! isset( $_GET['page'] ) || $_GET['page'] != 'pageName' ) return;
41 41
 
42
-			wp_enqueue_script( 'jsName', _PLUGIN_JS . 'ui.js', array() );
43
-			wp_enqueue_style( 'cssName', _PLUGIN_CSS . 'css.css' );
42
+			wp_enqueue_script('jsName', _PLUGIN_JS . 'ui.js', array());
43
+			wp_enqueue_style('cssName', _PLUGIN_CSS . 'css.css');
44 44
 		}
45 45
 
46 46
 
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 		// Enter scripts into pages
49 49
 		public function frontend_scripts() {
50 50
 
51
-			wp_enqueue_script( 'jsName', _PLUGIN_JS . 'ui.js', array() );
52
-			wp_enqueue_style( 'cssName', _PLUGIN_CSS . 'css.css' );
51
+			wp_enqueue_script('jsName', _PLUGIN_JS . 'ui.js', array());
52
+			wp_enqueue_style('cssName', _PLUGIN_CSS . 'css.css');
53 53
 		}
54 54
 	}
55 55
 } ?>
56 56
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,9 @@
 block discarded – undo
2 2
 /**
3 3
  * Add scripts to the plugin. CSS and JS.
4 4
  */
5
-if ( ! defined( 'ABSPATH' ) ) exit;
5
+if ( ! defined( 'ABSPATH' ) ) {
6
+	exit;
7
+}
6 8
 
7 9
 if ( ! class_exists( 'PLUGIN_SCRIPT' ) ) {
8 10
 
Please login to merge, or discard this patch.
lib/cron.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 
4 4
 /**
5 5
  *
6 6
  * Add settings page with regarding options
7 7
  *
8 8
  */
9
-if ( ! class_exists( 'PLUGIN_CRON' ) ) {
9
+if ( ! class_exists('PLUGIN_CRON')) {
10 10
 
11 11
 	final class PLUGIN_CRON {
12 12
 
13 13
 		public function __construct() {
14 14
 
15
-			add_filter('cron_schedules', array( $this, 'cron_schedules' ) );
15
+			add_filter('cron_schedules', array($this, 'cron_schedules'));
16 16
 		}
17 17
 
18
-		public function cron_schedules( $schedules ) {
18
+		public function cron_schedules($schedules) {
19 19
 
20 20
 			$prefix = 'prefix_'; // Avoid conflict with other crons. Example Reference: cron_30_mins
21 21
 			// Example schedule options
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
 						);
36 36
 
37 37
 			/* Add each custom schedule into the cron job system. */
38
-			foreach($schedule_options as $schedule_key => $schedule){
38
+			foreach ($schedule_options as $schedule_key => $schedule) {
39 39
 
40
-				$schedules[$prefix.$schedule_key] = array(
40
+				$schedules[$prefix . $schedule_key] = array(
41 41
 									'interval' => $schedule['interval'],
42
-									'display' => __('Every '.$schedule['display'])
42
+									'display' => __('Every ' . $schedule['display'])
43 43
 									);
44 44
 			}
45 45
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
 		public function schedule_task($task) {
50 50
 
51
-			if( ! $task ) {
51
+			if ( ! $task) {
52 52
 				return false;
53 53
 			}
54 54
 
@@ -58,17 +58,17 @@  discard block
 block discarded – undo
58 58
 						'hook'
59 59
 					);
60 60
 			$missing_keys = array();
61
-			foreach( $required_keys as $key ){
62
-				if( ! array_key_exists( $key, $task ) ) {
61
+			foreach ($required_keys as $key) {
62
+				if ( ! array_key_exists($key, $task)) {
63 63
 					$missing_keys[] = $key;
64 64
 				}
65 65
 			}
66 66
 
67
-			if( ! empty( $missing_keys ) ){
67
+			if ( ! empty($missing_keys)) {
68 68
 				return false;
69 69
 			}
70 70
 
71
-			if( wp_next_scheduled( $task['hook'] ) ){
71
+			if (wp_next_scheduled($task['hook'])) {
72 72
 				wp_clear_scheduled_hook($task['hook']);
73 73
 			}
74 74
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 
4 6
 /**
5 7
  *
Please login to merge, or discard this patch.
lib/table.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 if ( ! class_exists( 'PLUGIN_TABLE' ) ) {
11 11
 
12 12
 if ( ! class_exists( 'WP_List_Table' ) ) {
13
-    require_once( ABSPATH . 'wp-admin/includes/screen.php' );
14
-    require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
13
+	require_once( ABSPATH . 'wp-admin/includes/screen.php' );
14
+	require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
15 15
 }
16 16
 
17 17
 	final class PLUGIN_TABLE extends WP_List_Table {
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@  discard block
 block discarded – undo
7 7
  * $myPluginNameTable->display();
8 8
  *
9 9
  */
10
-if ( ! class_exists( 'PLUGIN_TABLE' ) ) {
10
+if ( ! class_exists('PLUGIN_TABLE')) {
11 11
 
12
-if ( ! class_exists( 'WP_List_Table' ) ) {
13
-    require_once( ABSPATH . 'wp-admin/includes/screen.php' );
14
-    require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
12
+if ( ! class_exists('WP_List_Table')) {
13
+    require_once(ABSPATH . 'wp-admin/includes/screen.php');
14
+    require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
15 15
 }
16 16
 
17 17
 	final class PLUGIN_TABLE extends WP_List_Table {
@@ -20,37 +20,37 @@  discard block
 block discarded – undo
20 20
 
21 21
 		public function __construct() {
22 22
 
23
-			parent::__construct( [
24
-				'singular' => __( 'Name', 'textdomain' ),
25
-				'plural'   => __( 'Names', 'textdomain' ),
23
+			parent::__construct([
24
+				'singular' => __('Name', 'textdomain'),
25
+				'plural'   => __('Names', 'textdomain'),
26 26
 				'ajax'     => false,
27
-			] );
27
+			]);
28 28
 		}
29 29
 
30 30
 
31 31
 
32 32
 		//fetch the data using custom named method function
33
-		public static function get_Table( $per_page = 5, $page_number = 1 ) {
33
+		public static function get_Table($per_page = 5, $page_number = 1) {
34 34
 
35 35
 			global $wpdb;
36 36
 
37 37
 			//Take pivotal from URL
38
-			$link = ( isset( $_GET['link'] ) ? $_GET['link'] : 'link' );
38
+			$link = (isset($_GET['link']) ? $_GET['link'] : 'link');
39 39
 
40 40
 			//Build the db query base
41 41
 			$sql = "SELECT * FROM {$wpdb->prefix}wordpress_table";
42 42
 			$sql .= " QUERIES with $link'";
43 43
 
44 44
 			//Set filters in the query using $_REQUEST
45
-			if ( ! empty( $_REQUEST['orderby'] ) ) {
46
-				$sql .= ' ORDER BY ' . esc_sql( $_REQUEST['orderby'] );
47
-				$sql .= ! empty( $_REQUEST['order'] ) ? ' ' . esc_sql( $_REQUEST['order'] ) : ' ASC';
45
+			if ( ! empty($_REQUEST['orderby'])) {
46
+				$sql .= ' ORDER BY ' . esc_sql($_REQUEST['orderby']);
47
+				$sql .= ! empty($_REQUEST['order']) ? ' ' . esc_sql($_REQUEST['order']) : ' ASC';
48 48
 			}
49 49
 			$sql .= " LIMIT $per_page";
50
-			$sql .= ' OFFSET ' . ( $page_number - 1 ) * $per_page;
50
+			$sql .= ' OFFSET ' . ($page_number - 1) * $per_page;
51 51
 
52 52
 			//get the data from database
53
-			$result = $wpdb->get_results( $sql, 'ARRAY_A' );
53
+			$result = $wpdb->get_results($sql, 'ARRAY_A');
54 54
 
55 55
 			return $result;
56 56
 		}
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
 
59 59
 
60 60
 		//Delete individual data
61
-		public static function delete_url( $id ) {
61
+		public static function delete_url($id) {
62 62
 
63 63
 			global $wpdb;
64
-			$wpdb->delete("{$wpdb->prefix}wordpress_table", array( 'ID' => $id ), array( '%s' ) );
64
+			$wpdb->delete("{$wpdb->prefix}wordpress_table", array('ID' => $id), array('%s'));
65 65
 		}
66 66
 
67 67
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 		//If there is no data to show
70 70
 		public function no_items() {
71 71
 
72
-			_e( 'No Items Added yet.', 'myPlugintextDomain' );
72
+			_e('No Items Added yet.', 'myPlugintextDomain');
73 73
 		}
74 74
 
75 75
 
@@ -80,58 +80,58 @@  discard block
 block discarded – undo
80 80
 			global $wpdb;
81 81
 
82 82
 			//Take pivotal from URL
83
-			$link = ( isset( $_GET['link'] ) ? $_GET['link'] : 'link' );
83
+			$link = (isset($_GET['link']) ? $_GET['link'] : 'link');
84 84
 
85 85
 			//Build the db query base
86 86
 			$sql = "SELECT COUNT(*) FROM {$wpdb->prefix}wordpress_table";
87 87
 			$sql .= " QUERIES with $link'";
88 88
 
89
-			return $wpdb->get_var( $sql );
89
+			return $wpdb->get_var($sql);
90 90
 		}
91 91
 
92 92
 
93 93
 
94 94
 		//Display columns content
95
-		public function column_name( $item ) {
95
+		public function column_name($item) {
96 96
 
97
-			$delete_nonce = wp_create_nonce( 'delete_url' );
98
-			$title = sprintf( '<strong>%s</strong>', $item['item_name'] );
97
+			$delete_nonce = wp_create_nonce('delete_url');
98
+			$title = sprintf('<strong>%s</strong>', $item['item_name']);
99 99
 
100 100
 			//Change the page instruction where you want to show it
101 101
 			$actions = array(
102
-					'delete' => sprintf( '<a href="?page=%s&action=%s&instruction=%s&_wpnonce=%s">%s</a>', esc_attr( $_REQUEST['page'] ), 'delete', absint( $item['ID'] ), $delete_nonce, __( 'Delete', 'textdomain' ) )
102
+					'delete' => sprintf('<a href="?page=%s&action=%s&instruction=%s&_wpnonce=%s">%s</a>', esc_attr($_REQUEST['page']), 'delete', absint($item['ID']), $delete_nonce, __('Delete', 'textdomain'))
103 103
 					);
104
-			return $title . $this->row_actions( $actions );
104
+			return $title . $this->row_actions($actions);
105 105
 		}
106 106
 
107 107
 
108 108
 
109 109
 		//set coulmns name
110
-		public function column_default( $item, $column_name ) {
110
+		public function column_default($item, $column_name) {
111 111
 
112
-			switch ( $column_name ) {
112
+			switch ($column_name) {
113 113
 
114 114
 				case 'name':
115 115
 					//This is the first column
116
-					return $this->column_name( $item );
116
+					return $this->column_name($item);
117 117
 				case 'caseOne':
118 118
 				case 'caseTwo':
119 119
 				case 'caseThree':
120
-					return $item[ $column_name ];
120
+					return $item[$column_name];
121 121
 
122 122
 				default:
123 123
 
124 124
 					//Show the whole array for troubleshooting purposes
125
-					return print_r( $item, true );
125
+					return print_r($item, true);
126 126
 			}
127 127
 		}
128 128
 
129 129
 
130 130
 
131 131
 		//Set checkboxes to delete
132
-		public function column_cb( $item ) {
132
+		public function column_cb($item) {
133 133
 
134
-			return sprintf( '<input type="checkbox" name="bulk-select[]" value="%s" />', $item['ID'] );
134
+			return sprintf('<input type="checkbox" name="bulk-select[]" value="%s" />', $item['ID']);
135 135
 		}
136 136
 
137 137
 
@@ -141,10 +141,10 @@  discard block
 block discarded – undo
141 141
 
142 142
 			$columns = array(
143 143
 							'cb'		=> '<input type="checkbox" />',
144
-							'name'	=> __( 'Name', 'textdomain' ),
145
-							'caseOne'	=> __( 'Case One', 'textdomain' ),
146
-							'caseTwo'	=> __( 'Case Two', 'textdomain' ),
147
-							'caseThree'	=> __( 'Case Three', 'textdomain' ),
144
+							'name'	=> __('Name', 'textdomain'),
145
+							'caseOne'	=> __('Case One', 'textdomain'),
146
+							'caseTwo'	=> __('Case Two', 'textdomain'),
147
+							'caseThree'	=> __('Case Three', 'textdomain'),
148 148
 						);
149 149
 			return $columns;
150 150
 		}
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
 		public function get_sortable_columns() {
156 156
 
157 157
 			$sortable_columns = array(
158
-				'name' => array( 'name', true ),
159
-				'caseOne' => array( 'caseOne', false ),
160
-				'caseTwo' => array( 'caseTwo', false ),
158
+				'name' => array('name', true),
159
+				'caseOne' => array('caseOne', false),
160
+				'caseTwo' => array('caseTwo', false),
161 161
 			);
162 162
 			return $sortable_columns;
163 163
 		}
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 		//Determine bulk actions in the table dropdown
168 168
 		public function get_bulk_actions() {
169 169
 
170
-			$actions = array( 'bulk-delete' => 'Delete'	);
170
+			$actions = array('bulk-delete' => 'Delete');
171 171
 			return $actions;
172 172
 		}
173 173
 
@@ -180,15 +180,15 @@  discard block
 block discarded – undo
180 180
 
181 181
 			/** Process bulk action */
182 182
 			$this->process_bulk_action();
183
-			$per_page     = $this->get_items_per_page( 'option_name_per_page', 5 );
183
+			$per_page     = $this->get_items_per_page('option_name_per_page', 5);
184 184
 			$current_page = $this->get_pagenum();
185 185
 			$total_items  = self::record_count();
186
-			$this->set_pagination_args( array(
186
+			$this->set_pagination_args(array(
187 187
 				'total_items' => $total_items,
188 188
 				'per_page'    => $per_page,
189
-			) );
189
+			));
190 190
 
191
-			$this->items = self::get_Table( $per_page, $current_page );
191
+			$this->items = self::get_Table($per_page, $current_page);
192 192
 		}
193 193
 
194 194
 
@@ -197,24 +197,24 @@  discard block
 block discarded – undo
197 197
 		public function process_bulk_action() {
198 198
 
199 199
 			//Detect when a bulk action is being triggered...
200
-			if ( 'delete' === $this->current_action() ) {
200
+			if ('delete' === $this->current_action()) {
201 201
 
202 202
 				//In our file that handles the request, verify the nonce.
203
-				$nonce = esc_attr( $_REQUEST['_wpnonce'] );
203
+				$nonce = esc_attr($_REQUEST['_wpnonce']);
204 204
 
205
-				if ( ! wp_verify_nonce( $nonce, 'delete_url' ) ) {
206
-					die( 'Go get a live script kiddies' );
205
+				if ( ! wp_verify_nonce($nonce, 'delete_url')) {
206
+					die('Go get a live script kiddies');
207 207
 				} else {
208
-					self::delete_url( absint( $_GET['instruction'] ) ); //Remember the instruction param from column_name method
208
+					self::delete_url(absint($_GET['instruction'])); //Remember the instruction param from column_name method
209 209
 				}
210 210
 			}
211 211
 
212 212
 			//If the delete bulk action is triggered
213
-			if ( isset( $_POST['action'] ) ) {
214
-				if ( ( isset( $_POST['action'] ) && $_POST['action'] == 'bulk-delete' ) ) {
215
-					$delete_ids = esc_sql( $_POST['bulk-select'] );
216
-					foreach ( $delete_ids as $id ) {
217
-						self::delete_url( $id );
213
+			if (isset($_POST['action'])) {
214
+				if ((isset($_POST['action']) && $_POST['action'] == 'bulk-delete')) {
215
+					$delete_ids = esc_sql($_POST['bulk-select']);
216
+					foreach ($delete_ids as $id) {
217
+						self::delete_url($id);
218 218
 					}
219 219
 				}
220 220
 			}
Please login to merge, or discard this patch.
lib/api.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * $data = $api->parse();
14 14
  * 
15 15
  */
16
-if ( ! class_exists( 'PLUGIN_API' ) ) {
16
+if ( ! class_exists('PLUGIN_API')) {
17 17
 
18 18
 	class PLUGIN_API {
19 19
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
 			$curl = curl_init();
50 50
 
51
-			curl_setopt_array( $curl, $this->build() );
51
+			curl_setopt_array($curl, $this->build());
52 52
 
53 53
 			$result = curl_exec($curl);
54 54
 			$err = curl_error($curl);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 		//Check options and tables and output the info to check if db install is successful
68 68
 		public function parse($data) {
69 69
 
70
-			call_user_func( array( $this, $this->data_type ), $data );
70
+			call_user_func(array($this, $this->data_type), $data);
71 71
 		}
72 72
 
73 73
 
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
 		public function xml($data) {
77 77
 
78 78
 			libxml_use_internal_errors(true);
79
-			$parsed = ( ! $data || $data == '' ? false : simplexml_load_string( $data ) );
79
+			$parsed = ( ! $data || $data == '' ? false : simplexml_load_string($data));
80 80
 
81
-			if ( ! $parsed ) {
81
+			if ( ! $parsed) {
82 82
 				return false;
83 83
 				libxml_clear_errors();
84 84
 			} else {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		//Parse JSON data type
92 92
 		public function json($data) {
93 93
 
94
-			$parsed = ( ! $data || $data == '' ? false : json_decode( $data, 1 ) );
94
+			$parsed = ( ! $data || $data == '' ? false : json_decode($data, 1));
95 95
 			return $parsed;
96 96
 		}
97 97
 	}
Please login to merge, or discard this patch.
src/db.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,13 +44,13 @@
 block discarded – undo
44 44
 			global $wpdb;
45 45
 			$wpdb->hide_errors();
46 46
 			$collate = "";
47
-		    if ( $wpdb->has_cap( 'collation' ) ) {
47
+			if ( $wpdb->has_cap( 'collation' ) ) {
48 48
 				if( ! empty($wpdb->charset ) )
49 49
 					$collate .= "DEFAULT CHARACTER SET $wpdb->charset";
50 50
 				if( ! empty($wpdb->collate ) )
51 51
 					$collate .= " COLLATE $wpdb->collate";
52
-		    }
53
-    		require_once( $this->up_path );
52
+			}
53
+			require_once( $this->up_path );
54 54
 			return $collate;
55 55
 		}
56 56
 
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 
4 4
 /**
5 5
  * DB installation class
6 6
  */
7
-if ( ! class_exists( 'PLUGIN_DB' ) ) {
7
+if ( ! class_exists('PLUGIN_DB')) {
8 8
 
9 9
 	class PLUGIN_DB {
10 10
 
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
 			global $wpdb;
30 30
 			$wpdb->hide_errors();
31 31
 			$this->table_name = $wpdb->prefix . $this->table;
32
-			update_option( '_plugin_db_exist', 0 );
33
-			if ( $wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") != $this->table_name ) {
34
-				$execute_sql = $this->execute( $this->table_name, $this->collate(), $this->sql );
35
-				dbDelta( $execute_sql );
32
+			update_option('_plugin_db_exist', 0);
33
+			if ($wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") != $this->table_name) {
34
+				$execute_sql = $this->execute($this->table_name, $this->collate(), $this->sql);
35
+				dbDelta($execute_sql);
36 36
 			}
37 37
 		}
38 38
 
@@ -44,20 +44,20 @@  discard block
 block discarded – undo
44 44
 			global $wpdb;
45 45
 			$wpdb->hide_errors();
46 46
 			$collate = "";
47
-		    if ( $wpdb->has_cap( 'collation' ) ) {
48
-				if( ! empty($wpdb->charset ) )
47
+		    if ($wpdb->has_cap('collation')) {
48
+				if ( ! empty($wpdb->charset))
49 49
 					$collate .= "DEFAULT CHARACTER SET $wpdb->charset";
50
-				if( ! empty($wpdb->collate ) )
50
+				if ( ! empty($wpdb->collate))
51 51
 					$collate .= " COLLATE $wpdb->collate";
52 52
 		    }
53
-    		require_once( $this->up_path );
53
+    		require_once($this->up_path);
54 54
 			return $collate;
55 55
 		}
56 56
 
57 57
 
58 58
 
59 59
 		//SQL query to create the main plugin table.
60
-		public function execute( $table_name, $collate, $sql ) {
60
+		public function execute($table_name, $collate, $sql) {
61 61
 			return "CREATE TABLE $table_name ( $sql ) $collate;";
62 62
 		}
63 63
 
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 		public function __destruct() {
68 68
 			global $wpdb;
69 69
 			$this->table_name = $wpdb->prefix . $this->table;
70
-			if ( $wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") == $this->table_name ) {
71
-				update_option( '_plugin_db_exist', 1 );
70
+			if ($wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") == $this->table_name) {
71
+				update_option('_plugin_db_exist', 1);
72 72
 			}
73 73
 		}
74 74
 	}
Please login to merge, or discard this patch.
Braces   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 
4 6
 /**
5 7
  * DB installation class
@@ -45,10 +47,12 @@  discard block
 block discarded – undo
45 47
 			$wpdb->hide_errors();
46 48
 			$collate = "";
47 49
 		    if ( $wpdb->has_cap( 'collation' ) ) {
48
-				if( ! empty($wpdb->charset ) )
49
-					$collate .= "DEFAULT CHARACTER SET $wpdb->charset";
50
-				if( ! empty($wpdb->collate ) )
51
-					$collate .= " COLLATE $wpdb->collate";
50
+				if( ! empty($wpdb->charset ) ) {
51
+									$collate .= "DEFAULT CHARACTER SET $wpdb->charset";
52
+				}
53
+				if( ! empty($wpdb->collate ) ) {
54
+									$collate .= " COLLATE $wpdb->collate";
55
+				}
52 56
 		    }
53 57
     		require_once( $this->up_path );
54 58
 			return $collate;
Please login to merge, or discard this patch.
src/install.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 									'label' => ''
20 20
 								),
21 21
 							);
22
-		*/
22
+		 */
23 23
 		public $pluginPageLinks;
24 24
 
25 25
 
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 
4 4
 /**
5 5
  * Implimentation of WordPress inbuilt functions for plugin activation.
6 6
  */
7
-if ( ! class_exists( 'PLUGGIN_INSTALL' ) ) {
7
+if ( ! class_exists('PLUGGIN_INSTALL')) {
8 8
 
9 9
 	final class PLUGIN_INSTALL {
10 10
 
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 
26 26
 
27 27
 		public function execute() {
28
-			add_action( 'plugins_loaded', array( $this, 'text_domain_cb' ) );
29
-			add_action( 'admin_notices', array( $this, 'php_ver_incompatible' ) );
30
-			add_filter( 'plugin_action_links', array( $this, 'menu_page_link' ), 10, 2 );
28
+			add_action('plugins_loaded', array($this, 'text_domain_cb'));
29
+			add_action('admin_notices', array($this, 'php_ver_incompatible'));
30
+			add_filter('plugin_action_links', array($this, 'menu_page_link'), 10, 2);
31 31
 		}
32 32
 
33 33
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 		//Load plugin textdomain
36 36
 		public function text_domain_cb() {
37 37
 
38
-			load_plugin_textdomain( $this->textDomin, false, PLUGIN_LN );
38
+			load_plugin_textdomain($this->textDomin, false, PLUGIN_LN);
39 39
 		}
40 40
 
41 41
 
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 		//Define low php verson errors
44 44
 		public function php_ver_incompatible() {
45 45
 
46
-			if ( version_compare( phpversion(), $this->phpVerAllowed, '<' ) ) :
47
-				$text = __( 'The Plugin can\'t be activated because your PHP version', 'textdomain' );
48
-				$text_last = __( 'is less than required 5.3. See more information', 'textdomain' );
46
+			if (version_compare(phpversion(), $this->phpVerAllowed, '<')) :
47
+				$text = __('The Plugin can\'t be activated because your PHP version', 'textdomain');
48
+				$text_last = __('is less than required 5.3. See more information', 'textdomain');
49 49
 				$text_link = 'php.net/eol.php'; ?>
50 50
 
51 51
 				<div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $text . ' ' . phpversion() . ' ' . $text_last . ': '; ?><a href="http://php.net/eol.php/" target="_blank"><?php echo $text_link; ?></a></p></div>
@@ -55,20 +55,20 @@  discard block
 block discarded – undo
55 55
 
56 56
 
57 57
 		// Add settings link to plugin page
58
-		public function menu_page_link( $links, $file ) {
58
+		public function menu_page_link($links, $file) {
59 59
 
60 60
 			if ($this->pluginPageLinks) {
61 61
 				static $this_plugin;
62
-				if ( ! $this_plugin ) {
62
+				if ( ! $this_plugin) {
63 63
 					$this_plugin = PLUGIN_FILE;
64 64
 				}
65
-				if ( $file == $this_plugin ) {
65
+				if ($file == $this_plugin) {
66 66
 					$shift_link = array();
67 67
 					foreach ($this->pluginPageLinks as $value) {
68
-						$shift_link[] = '<a href="'.$value['slug'].'">'.$value['label'].'</a>';
68
+						$shift_link[] = '<a href="' . $value['slug'] . '">' . $value['label'] . '</a>';
69 69
 					}
70
-					foreach( $shift_link as $val ) {
71
-						array_unshift( $links, $val );
70
+					foreach ($shift_link as $val) {
71
+						array_unshift($links, $val);
72 72
 					}
73 73
 				}
74 74
 				return $links;
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 
4 6
 /**
5 7
  * Implimentation of WordPress inbuilt functions for plugin activation.
Please login to merge, or discard this patch.
src/shortcode.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 
4 4
 /**
5 5
  * Shortcode class for rendering in front end
6 6
  */
7
-if ( ! class_exists( 'PLUGIN_SHORTCODE' ) ) {
7
+if ( ! class_exists('PLUGIN_SHORTCODE')) {
8 8
 
9 9
 	class PLUGIN_SHORTCODE {
10 10
 
@@ -12,16 +12,16 @@  discard block
 block discarded – undo
12 12
 
13 13
 		public function __construct() {
14 14
 
15
-			add_shortcode( 'shortcode_name', array( $this, 'cb' ) );
15
+			add_shortcode('shortcode_name', array($this, 'cb'));
16 16
 		}
17 17
 
18 18
 
19 19
 
20 20
 		public function cb($atts) {
21 21
 
22
-			$data = shortcode_atts( array(
22
+			$data = shortcode_atts(array(
23 23
 										'type' => 'zip',
24
-									), $atts );
24
+									), $atts);
25 25
 
26 26
 			return $this->html();
27 27
 		}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 
4 6
 /**
5 7
  * Shortcode class for rendering in front end
Please login to merge, or discard this patch.