Passed
Push — master ( c28712...836585 )
by Nirjhar
02:28
created
lib/script.php 1 patch
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.
lib/cron.php 1 patch
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.
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 1 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.
src/shortcode.php 1 patch
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.
src/settings.php 1 patch
Spacing   +24 added lines, -24 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
  * Backend settings page class, can have settings fields or data table
6 6
  */
7
-if ( ! class_exists( 'PLUGIN_SETTINGS' ) ) {
7
+if ( ! class_exists('PLUGIN_SETTINGS')) {
8 8
 
9 9
 	final class PLUGIN_SETTINGS {
10 10
 
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
 		public function __construct() {
21 21
 
22 22
 			$this->capability = 'manage_options';
23
-			$this->menuPage = array( 'name' => '', 'heading' => '', 'slug' => '' );
23
+			$this->menuPage = array('name' => '', 'heading' => '', 'slug' => '');
24 24
 			$this->subMenuPage = array(
25 25
 									'name' => '',
26 26
 									'heading' => '',
27 27
 									'slug' => '',
28 28
 									'parent_slug' => '',
29
-									'help' => '',//true/false,
30
-									'screen' => '',//true/false
29
+									'help' => '', //true/false,
30
+									'screen' => '', //true/false
31 31
 								);
32 32
 			$this->helpData = array(
33 33
 								array(
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
 											'info' => array(
37 37
 														array(
38 38
 															'id' => 'helpId',
39
-															'title' => __( 'Title', 'textdomain' ),
40
-															'content' => __( 'Description', 'textdomain' ),
39
+															'title' => __('Title', 'textdomain'),
40
+															'content' => __('Description', 'textdomain'),
41 41
 														),
42 42
 													),
43
-											'link' => '<p><a href="#">' . __( 'helpLink', 'textdomain' ) . '</a></p>',
43
+											'link' => '<p><a href="#">' . __('helpLink', 'textdomain') . '</a></p>',
44 44
 											)
45 45
 								)
46 46
 							);
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 					$this->menuPage['heading'],
69 69
 					$this->capability,
70 70
 					$this->menuPage['slug'],
71
-					array( $this, 'menu_page_callback' )
71
+					array($this, 'menu_page_callback')
72 72
 				);
73 73
 			}
74 74
 		}
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
 							// For the first submenu page, slug should be same as menupage.
88 88
 							$this->subMenuPage['slug'],
89 89
 							// For the first submenu page, callback should be same as menupage.
90
-							array( $this, 'menu_page_callback' )
90
+							array($this, 'menu_page_callback')
91 91
 						);
92 92
 					if ($this->subMenuPage['help']) {
93
-						add_action( 'load-' . $hook, array( $this, 'help_tabs' ) );
93
+						add_action('load-' . $hook, array($this, 'help_tabs'));
94 94
 					}
95 95
 					if ($this->subMenuPage['screen']) {
96
-						add_action( 'load-' . $hook, array( $this, 'screen_option' ) );
96
+						add_action('load-' . $hook, array($this, 'screen_option'));
97 97
 					}
98 98
 				}
99 99
 			}
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 		//Set screen option
104 104
 		public function set_screen($status, $option, $value) {
105 105
  
106
-    		if ( 'option_name_per_page' == $option ) return $value; // Related to PLUGIN_TABLE()
106
+    		if ('option_name_per_page' == $option) return $value; // Related to PLUGIN_TABLE()
107 107
     			//return $status; 
108 108
 		}
109 109
 
@@ -114,11 +114,11 @@  discard block
 block discarded – undo
114 114
 
115 115
 			$option = 'per_page';
116 116
 			$args   = array(
117
-						'label'   => __( 'Show per page', '' ),
117
+						'label'   => __('Show per page', ''),
118 118
 						'default' => 10,
119 119
 						'option'  => 'option_name_per_page' // Related to PLUGIN_TABLE()
120 120
 						);
121
-			add_screen_option( $option, $args );
121
+			add_screen_option($option, $args);
122 122
 			$this->Table = new PLUGIN_TABLE();
123 123
 		}
124 124
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 					<form method="post" action="">
139 139
 						<?php settings_fields("addPdfsId");
140 140
 						do_settings_sections("addPdfs");
141
-						submit_button( __( 'Save', 'textdomain' ), 'primary', 'id' ); ?>
141
+						submit_button(__('Save', 'textdomain'), 'primary', 'id'); ?>
142 142
 					</form>
143 143
 
144 144
 					<?php
@@ -164,10 +164,10 @@  discard block
 block discarded – undo
164 164
 			foreach ($this->helpData as $value) {
165 165
 				if ($_GET['page'] == $value['slug']) {
166 166
 					$this->screen = get_current_screen();
167
-					foreach( $value['info'] as $key ) {
168
-						$this->screen->add_help_tab( $key );
167
+					foreach ($value['info'] as $key) {
168
+						$this->screen->add_help_tab($key);
169 169
 					}
170
-					$this->screen->set_help_sidebar( $value['link'] );
170
+					$this->screen->set_help_sidebar($value['link']);
171 171
 				}
172 172
 			}
173 173
 		}
@@ -177,9 +177,9 @@  discard block
 block discarded – undo
177 177
 		//Add different types of settings and corrosponding sections
178 178
 		public function add_settings() {
179 179
 
180
-			add_settings_section( 'SettingsId', __( 'Section Name', 'textdomain' ), array( $this,'SectionCb' ), 'SettingsName' );
181
-			register_setting( 'SettingsId', 'SettingsField' );
182
-			add_settings_field( 'SettingsFieldName', __( 'Field Name', 'textdomain' ), array( $this, 'SettingsFieldCb' ), 'SettingsName', 'SettingsId' );
180
+			add_settings_section('SettingsId', __('Section Name', 'textdomain'), array($this, 'SectionCb'), 'SettingsName');
181
+			register_setting('SettingsId', 'SettingsField');
182
+			add_settings_field('SettingsFieldName', __('Field Name', 'textdomain'), array($this, 'SettingsFieldCb'), 'SettingsName', 'SettingsId');
183 183
 		}
184 184
 
185 185
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 		//Section description
188 188
 		public function SectionCb() {
189 189
 
190
-			echo '<p class="description">' . __( 'Set up settings', 'textdomain' ) . '</p>';
190
+			echo '<p class="description">' . __('Set up settings', 'textdomain') . '</p>';
191 191
 		}
192 192
 
193 193
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 		//Field explanation
196 196
 		public function SettingsFieldCb() {
197 197
 
198
-			echo '<input type="text" class="medium-text" name="SettingsFieldName" id="SettingsFieldName" value="' . get_option('SettingsFieldName') . '" placeholder="' . __( 'Enter Value', 'textdomain' ) . '" required />';
198
+			echo '<input type="text" class="medium-text" name="SettingsFieldName" id="SettingsFieldName" value="' . get_option('SettingsFieldName') . '" placeholder="' . __('Enter Value', 'textdomain') . '" required />';
199 199
 		}
200 200
 	}
201 201
 } ?>
202 202
\ No newline at end of file
Please login to merge, or discard this patch.
src/widget.php 1 patch
Spacing   +14 added lines, -14 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
  * Widget class
6 6
  */
7
-if ( ! class_exists( 'PLUGIN_WIDGET' ) ) {
7
+if ( ! class_exists('PLUGIN_WIDGET')) {
8 8
 
9 9
 	final class PLUGIN_WIDGET extends WP_WIDGET {
10 10
 
@@ -15,33 +15,33 @@  discard block
 block discarded – undo
15 15
 
16 16
 			$widget_ops = array( 
17 17
 							'classname' => 'plugin_widget',
18
-							'description' => __( 'Plugin widget', 'textdomain' ),
18
+							'description' => __('Plugin widget', 'textdomain'),
19 19
 							);
20
-			parent::__construct( 'my_widget_id', __( 'Plugin widget', 'textdomain' ), $widget_ops );
20
+			parent::__construct('my_widget_id', __('Plugin widget', 'textdomain'), $widget_ops);
21 21
 		}
22 22
 
23 23
 
24 24
 
25 25
 		//Outputs the content of the widget
26
-		public function widget( $args, $instance ) {
26
+		public function widget($args, $instance) {
27 27
 
28 28
 			echo $args['before_widget'];
29
-			if ( ! empty( $instance['title'] ) ) {
30
-				echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
29
+			if ( ! empty($instance['title'])) {
30
+				echo $args['before_title'] . apply_filters('widget_title', $instance['title']) . $args['after_title'];
31 31
 			}
32
-			echo esc_html__( 'Hello, World!', 'textdomain' );
32
+			echo esc_html__('Hello, World!', 'textdomain');
33 33
 			echo $args['after_widget'];
34 34
 		}
35 35
 
36 36
 
37 37
 
38 38
 		//Outputs the options form on admin
39
-		public function form( $instance ) {
39
+		public function form($instance) {
40 40
 
41
-			$title = ! empty( $instance['title'] ) ? $instance['title'] : esc_html__( 'Internal Link Master', 'textdomain' ); ?>
41
+			$title = ! empty($instance['title']) ? $instance['title'] : esc_html__('Internal Link Master', 'textdomain'); ?>
42 42
 			<p>
43
-				<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_attr_e( 'Title:', 'textdomain' ); ?></label> 
44
-				<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>">
43
+				<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_attr_e('Title:', 'textdomain'); ?></label> 
44
+				<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>">
45 45
 			</p>
46 46
 		<?php 
47 47
 		}
@@ -49,10 +49,10 @@  discard block
 block discarded – undo
49 49
 
50 50
 
51 51
 		//Processing widget options on save
52
-		public function update( $new_instance, $old_instance ) {
52
+		public function update($new_instance, $old_instance) {
53 53
 			
54 54
 			$instance = array();
55
-			$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
55
+			$instance['title'] = ( ! empty($new_instance['title'])) ? strip_tags($new_instance['title']) : '';
56 56
 			return $instance;
57 57
 		}
58 58
 	}
Please login to merge, or discard this patch.
src/metabox.php 1 patch
Spacing   +21 added lines, -21 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
  * Build a sample metabox in editor screen
6 6
  */
7
-if ( ! class_exists( 'PLUGIN_METABOX' ) ) {
7
+if ( ! class_exists('PLUGIN_METABOX')) {
8 8
 
9 9
 	final class PLUGIN_METABOX {
10 10
 
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 		public function __construct() {
14 14
 
15 15
 			//Adding the metabox. For custom post type use "add_meta_boxes_posttype" action
16
-			add_action( 'add_meta_boxes', array( $this, 'register' ) );
17
-			add_action( 'save_post', array( $this, 'save' ), 10, 2 );
16
+			add_action('add_meta_boxes', array($this, 'register'));
17
+			add_action('save_post', array($this, 'save'), 10, 2);
18 18
 		}
19 19
 
20 20
 
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
 
24 24
 			add_meta_box(
25 25
 				'meta-box-id',
26
-				esc_html__( 'MetaBox Title', 'textdomain' ),
27
-				array( $this, 'render' ),
26
+				esc_html__('MetaBox Title', 'textdomain'),
27
+				array($this, 'render'),
28 28
 				// Declare the post type to show meta box
29 29
 				'post_type',
30 30
 				'normal',
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
 
37 37
 		public function render() {
38 38
 
39
-			wp_nonce_field( basename( __FILE__ ), 'metaBoxName_nonce' ); ?>
39
+			wp_nonce_field(basename(__FILE__), 'metaBoxName_nonce'); ?>
40 40
 
41 41
 			<p>
42
-				<label for="metaBoxName"><?php _e( "Custom Text", 'myPlugintextDomain' ); ?></label>
42
+				<label for="metaBoxName"><?php _e("Custom Text", 'myPlugintextDomain'); ?></label>
43 43
     			<br />
44
-    			<input class="widefat" type="text" name="metaBoxFieldName" id="metaBoxFieldName" value="<?php echo esc_attr( get_post_meta( $object->ID, 'metaBoxName', true ) ); ?>" />
44
+    			<input class="widefat" type="text" name="metaBoxFieldName" id="metaBoxFieldName" value="<?php echo esc_attr(get_post_meta($object->ID, 'metaBoxName', true)); ?>" />
45 45
   			</p>
46 46
   			<?php
47 47
 		}
@@ -49,35 +49,35 @@  discard block
 block discarded – undo
49 49
 
50 50
 
51 51
 		//Save the post data
52
-		function save( $post_id, $post ) {
52
+		function save($post_id, $post) {
53 53
 
54 54
 			//Verify the nonce before proceeding.
55
-			if ( !isset( $_POST['metaBoxName_nonce'] ) || !wp_verify_nonce( $_POST['metaBoxName_nonce'], basename( __FILE__ ) ) )
55
+			if ( ! isset($_POST['metaBoxName_nonce']) || ! wp_verify_nonce($_POST['metaBoxName_nonce'], basename(__FILE__)))
56 56
 				return $post_id;
57 57
 
58 58
 			//Get the post type object.
59
-			$post_type = get_post_type_object( $post->post_type );
59
+			$post_type = get_post_type_object($post->post_type);
60 60
 
61 61
 			//Check if the current user has permission to edit the post.
62
-			if ( !current_user_can( $post_type->cap->edit_post, $post_id ) )
62
+			if ( ! current_user_can($post_type->cap->edit_post, $post_id))
63 63
 				return $post_id;
64 64
 
65 65
 			//Get the posted data and sanitize it for use as an HTML class.
66
-			$new_meta_value = ( isset( $_POST['metaBoxName'] ) ? sanitize_html_class( $_POST['metaBoxName'] ) : '' );
66
+			$new_meta_value = (isset($_POST['metaBoxName']) ? sanitize_html_class($_POST['metaBoxName']) : '');
67 67
 
68 68
 			//Get the meta key.
69 69
 			$meta_key = 'metaBoxName';
70 70
 
71 71
 			//Get the meta value of the custom field key.
72
-			$meta_value = get_post_meta( $post_id, $meta_key, true );
72
+			$meta_value = get_post_meta($post_id, $meta_key, true);
73 73
 
74 74
 			//If a new meta value was added and there was no previous value, add it.
75
-			if ( $new_meta_value && '' == $meta_value ) {
76
-				add_post_meta( $post_id, $meta_key, $new_meta_value, true );
77
-			} elseif ( $new_meta_value && $new_meta_value != $meta_value ) {
78
-				update_post_meta( $post_id, $meta_key, $new_meta_value );
79
-			} elseif ( '' == $new_meta_value && $meta_value ) {
80
-				delete_post_meta( $post_id, $meta_key, $meta_value );
75
+			if ($new_meta_value && '' == $meta_value) {
76
+				add_post_meta($post_id, $meta_key, $new_meta_value, true);
77
+			} elseif ($new_meta_value && $new_meta_value != $meta_value) {
78
+				update_post_meta($post_id, $meta_key, $new_meta_value);
79
+			} elseif ('' == $new_meta_value && $meta_value) {
80
+				delete_post_meta($post_id, $meta_key, $meta_value);
81 81
 			}
82 82
 		}
83 83
 	}
Please login to merge, or discard this patch.
wp-plugin-framework.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  License: GPLv2
12 12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
13 13
  */
14
-if (!defined('ABSPATH')) exit;
14
+if ( ! defined('ABSPATH')) exit;
15 15
 
16 16
 
17 17
 //Define basic names
@@ -21,16 +21,16 @@  discard block
 block discarded – undo
21 21
 defined('PLUGIN_PATH') or define('PLUGIN_PATH', plugin_dir_path(__FILE__));
22 22
 defined('PLUGIN_FILE') or define('PLUGIN_FILE', plugin_basename(__FILE__));
23 23
 
24
-defined('PLUGIN_EXECUTE') or define('PLUGIN_EXECUTE', plugin_dir_path(__FILE__).'src/');
25
-defined('PLUGIN_HELPER') or define('PLUGIN_HELPER', plugin_dir_path(__FILE__).'helper/');
26
-defined('PLUGIN_TRANSLATE') or define('PLUGIN_TRANSLATE', plugin_basename( plugin_dir_path(__FILE__).'asset/ln/'));
24
+defined('PLUGIN_EXECUTE') or define('PLUGIN_EXECUTE', plugin_dir_path(__FILE__) . 'src/');
25
+defined('PLUGIN_HELPER') or define('PLUGIN_HELPER', plugin_dir_path(__FILE__) . 'helper/');
26
+defined('PLUGIN_TRANSLATE') or define('PLUGIN_TRANSLATE', plugin_basename(plugin_dir_path(__FILE__) . 'asset/ln/'));
27 27
 
28 28
 //change /wp-plugin-framework/ with your /plugin-name/
29
-defined('PLUGIN_JS') or define('PLUGIN_JS', plugins_url().'/wp-plugin-framework/asset/js/');
30
-defined('PLUGIN_CSS') or define('PLUGIN_CSS', plugins_url().'/wp-plugin-framework/asset/css/');
31
-defined('PLUGIN_IMAGE') or define('PLUGIN_IMAGE', plugins_url().'/wp-plugin-framework/asset/img/');
29
+defined('PLUGIN_JS') or define('PLUGIN_JS', plugins_url() . '/wp-plugin-framework/asset/js/');
30
+defined('PLUGIN_CSS') or define('PLUGIN_CSS', plugins_url() . '/wp-plugin-framework/asset/css/');
31
+defined('PLUGIN_IMAGE') or define('PLUGIN_IMAGE', plugins_url() . '/wp-plugin-framework/asset/img/');
32 32
 
33 33
 
34 34
 //The Plugin
35 35
 require_once('autoload.php');
36
-if ( class_exists( 'PLUGIN_BUILD' ) ) new PLUGIN_BUILD(); ?>
37 36
\ No newline at end of file
37
+if (class_exists('PLUGIN_BUILD')) new PLUGIN_BUILD(); ?>
38 38
\ No newline at end of file
Please login to merge, or discard this patch.