Completed
Push — master ( ef04cf...199149 )
by Mike
02:19
created
includes/class-connection-test.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @subpackage Evans
18 18
  * @author     Old Town Media
19 19
  */
20
-class ConnectionTest{
20
+class ConnectionTest {
21 21
 
22 22
 	/**
23 23
 	 * Run all of our connection tests.
@@ -26,33 +26,33 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * @return boolean Status of connection to Internet/Splashbase.
28 28
 	 */
29
-	public function test(){
29
+	public function test() {
30 30
 
31 31
 		/*
32 32
 		 * Make sure that we're looking at the correct admin page
33 33
 		 */
34
-		if ( ! $this->check_admin_page() ){
34
+		if (!$this->check_admin_page()) {
35 35
 			return;
36 36
 		}
37 37
 
38 38
 		/*
39 39
 		 * Test #1 - Check for Airplane Mode plugin status
40 40
 		 */
41
-		if ( ! $this->check_airplane_mode() ){
41
+		if (!$this->check_airplane_mode()) {
42 42
 			return false;
43 43
 		}
44 44
 
45 45
 		/*
46 46
 		 * Test #2 - Check Internet connection in general
47 47
 		 */
48
-		if ( ! $this->check_internet() ){
48
+		if (!$this->check_internet()) {
49 49
 			return false;
50 50
 		}
51 51
 
52 52
 		/*
53 53
 		 * Test #3 - Check External URL itself (Splashbase here)
54 54
 		 */
55
-		if ( ! $this->check_external_url( 'http://www.splashbase.co/api/v1/images/' ) ){
55
+		if (!$this->check_external_url('http://www.splashbase.co/api/v1/images/')) {
56 56
 			return false;
57 57
 		}
58 58
 
@@ -75,22 +75,22 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return boolean Whether or not we're in the right place.
77 77
 	 */
78
-	private function check_admin_page(){
78
+	private function check_admin_page() {
79 79
 		global $current_screen;
80 80
 
81 81
 		// Only run if we're in the admin page
82
-		if ( !is_admin() ){
82
+		if (!is_admin()) {
83 83
 			return false;
84 84
 		}
85 85
 
86 86
 		// Get the current admin screen & verify that we're on the right one
87 87
 		// before continuing.
88
-		if ( isset ( $current_screen ) && 'tools_page_create-test-data' != $current_screen->base ){
88
+		if (isset ($current_screen) && 'tools_page_create-test-data' != $current_screen->base) {
89 89
 			return false;
90 90
 		}
91 91
 
92
-		$last_uri_bit = explode( '=', $_SERVER['REQUEST_URI'] );
93
-		if ( 'create-test-data' != end( $last_uri_bit ) ){
92
+		$last_uri_bit = explode('=', $_SERVER['REQUEST_URI']);
93
+		if ('create-test-data' != end($last_uri_bit)) {
94 94
 			return false;
95 95
 		}
96 96
 
@@ -108,13 +108,13 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @return boolean Connected or not.
110 110
 	 */
111
-	private function check_airplane_mode(){
111
+	private function check_airplane_mode() {
112 112
 
113
-		if ( class_exists( 'Airplane_Mode_Core' ) ){
113
+		if (class_exists('Airplane_Mode_Core')) {
114 114
 			// Is airplane mode active?
115
-			$airplane_mode = get_site_option( 'airplane-mode' );
115
+			$airplane_mode = get_site_option('airplane-mode');
116 116
 
117
-			if ( $airplane_mode === 'on' ){
117
+			if ($airplane_mode === 'on') {
118 118
 				return false;
119 119
 			}
120 120
 		}
@@ -133,17 +133,17 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return boolean Connected or not.
135 135
 	 */
136
-	private function check_internet(){
136
+	private function check_internet() {
137 137
 
138 138
 		// Attempt to open a socket connection to Google
139
-		$connected = @fsockopen( "www.google.com", 80 );
139
+		$connected = @fsockopen("www.google.com", 80);
140 140
 
141
-		if ( !$connected ){
141
+		if (!$connected) {
142 142
 			return false;
143 143
 		}
144 144
 
145 145
 		// Close out our 1st test
146
-		fclose( $connected );
146
+		fclose($connected);
147 147
 
148 148
 		return true;
149 149
 
@@ -160,12 +160,12 @@  discard block
 block discarded – undo
160 160
 	 * @param string $url External URL to attempt to reach.
161 161
 	 * @return boolean Connected or not.
162 162
 	 */
163
-	private function check_external_url( $url ){
163
+	private function check_external_url($url) {
164 164
 
165
-		$test_url = esc_url( $url );
166
-		$response = wp_remote_get( $test_url );
165
+		$test_url = esc_url($url);
166
+		$response = wp_remote_get($test_url);
167 167
 
168
-		if ( !is_array( $response ) ){
168
+		if (!is_array($response)) {
169 169
 			return false;
170 170
 		}
171 171
 
Please login to merge, or discard this patch.
uninstall.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,16 +3,16 @@
 block discarded – undo
3 3
 use testContent as test;
4 4
 
5 5
 // If uninstall is not called from WordPress, exit
6
-if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
6
+if (!defined('WP_UNINSTALL_PLUGIN')) {
7 7
     exit();
8 8
 }
9 9
 
10 10
 // Check if the current user has priveledges to run this method
11
-if ( ! current_user_can( 'activate_plugins' ) ){
11
+if (!current_user_can('activate_plugins')) {
12 12
     return;
13 13
 }
14 14
 
15
-require dirname( __FILE__ ) . '/includes/class-delete.php';
15
+require dirname(__FILE__).'/includes/class-delete.php';
16 16
 $delete = new test\Delete;
17 17
 
18 18
 // Delete all the things
Please login to merge, or discard this patch.
views/posts.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@  discard block
 block discarded – undo
9 9
  * @subpackage Test Content
10 10
  * @author     Old Town Media
11 11
  */
12
-class Posts extends View{
12
+class Posts extends View {
13 13
 
14 14
 	protected $title	= 'Posts';
15 15
 	protected $type		= 'post';
16
-	protected $priority	= 1;
16
+	protected $priority = 1;
17 17
 
18 18
 	/**
19 19
 	 * Our sections action block - button to create and delete.
@@ -22,20 +22,20 @@  discard block
 block discarded – undo
22 22
 	 *
23 23
 	 * @return string HTML content.
24 24
 	 */
25
-	protected function actions_section(){
25
+	protected function actions_section() {
26 26
 		$html = '';
27 27
 
28 28
 		// Loop through every post type available on the site
29
-		$post_types = get_post_types( array( 'public' => true ), 'objects' );
29
+		$post_types = get_post_types(array('public' => true), 'objects');
30 30
 
31
-		foreach ( $post_types as $post_type ) :
31
+		foreach ($post_types as $post_type) :
32 32
 
33 33
 			$skipped_cpts = array(
34 34
 				'attachment'
35 35
 			);
36 36
 
37 37
 			// Skip banned cpts
38
-			if ( in_array( $post_type->name, $skipped_cpts ) ){
38
+			if (in_array($post_type->name, $skipped_cpts)) {
39 39
 				continue;
40 40
 			}
41 41
 
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 
44 44
 				$html .= "<h3>";
45 45
 
46
-					$html .= "<span class='label'>" . $post_type->labels->name . "</span>";
47
-					$html .= $this->build_button( 'create', $post_type->name, __( 'Create Test Data', 'otm-test-content' ) );
48
-					$html .= $this->build_button( 'delete', $post_type->name, __( 'Delete Test Data', 'otm-test-content' ) );
46
+					$html .= "<span class='label'>".$post_type->labels->name."</span>";
47
+					$html .= $this->build_button('create', $post_type->name, __('Create Test Data', 'otm-test-content'));
48
+					$html .= $this->build_button('delete', $post_type->name, __('Delete Test Data', 'otm-test-content'));
49 49
 
50 50
 				$html .= "</h3>";
51 51
 
Please login to merge, or discard this patch.
views/various.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
  * @subpackage Test Content
11 11
  * @author     Old Town Media
12 12
  */
13
-class Various extends View{
13
+class Various extends View {
14 14
 
15 15
 	protected $title	= 'Various';
16 16
 	protected $type		= 'all';
17
-	protected $priority	= 3;
17
+	protected $priority = 3;
18 18
 
19 19
 
20 20
 	/**
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
24 24
 	 *
25 25
 	 * @return string HTML content.
26 26
 	 */
27
-	protected function actions_section(){
27
+	protected function actions_section() {
28 28
 		$html = '';
29 29
 
30 30
 		$html .= "<div class='test-data-cpt'>";
31 31
 
32 32
 			$html .= "<h3>";
33 33
 
34
-				$html .= "<span class='label'>" . __( 'Clean Site', 'otm-test-content' ) . "</span>";
35
-				$html .= $this->build_button( 'delete', 'all', __( 'Delete All Test Data', 'otm-test-content' ) );
34
+				$html .= "<span class='label'>".__('Clean Site', 'otm-test-content')."</span>";
35
+				$html .= $this->build_button('delete', 'all', __('Delete All Test Data', 'otm-test-content'));
36 36
 
37 37
 			$html .= "</h3>";
38 38
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * @param string $html Existing HTML content.
51 51
 	 * @return string HTML section content.
52 52
 	 */
53
-	protected function options_section( $html = '' ){
53
+	protected function options_section($html = '') {
54 54
 		return $html;
55 55
 	}
56 56
 
Please login to merge, or discard this patch.
views/terms.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
  * @subpackage Test Content
11 11
  * @author     Old Town Media
12 12
  */
13
-class Terms extends View{
13
+class Terms extends View {
14 14
 
15 15
 	protected $title	= 'Terms';
16 16
 	protected $type		= 'term';
17
-	protected $priority	= 2;
17
+	protected $priority = 2;
18 18
 
19 19
 
20 20
 	/**
@@ -24,25 +24,25 @@  discard block
 block discarded – undo
24 24
 	 *
25 25
 	 * @return string HTML content.
26 26
 	 */
27
-	protected function actions_section(){
27
+	protected function actions_section() {
28 28
 		$html = '';
29 29
 
30 30
 		$taxonomies = get_taxonomies();
31 31
 
32
-		foreach ( $taxonomies as $tax ) :
32
+		foreach ($taxonomies as $tax) :
33 33
 
34 34
 			$skipped_taxonomies = array(
35
-				'post_format',				// We shouldn't be making random post format classes
36
-				'product_shipping_class',	// These aren't used visually and are therefore skipped
37
-				'nav_menu',					// Menus are handled seperately of taxonomies
35
+				'post_format', // We shouldn't be making random post format classes
36
+				'product_shipping_class', // These aren't used visually and are therefore skipped
37
+				'nav_menu', // Menus are handled seperately of taxonomies
38 38
 			);
39 39
 
40 40
 			// Skip banned taxonomies
41
-			if ( in_array( $tax, $skipped_taxonomies ) ){
41
+			if (in_array($tax, $skipped_taxonomies)) {
42 42
 				continue;
43 43
 			}
44 44
 
45
-			$taxonomy = get_taxonomy( $tax );
45
+			$taxonomy = get_taxonomy($tax);
46 46
 
47 47
 			$html .= "<div class='test-data-cpt'>";
48 48
 
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 
51 51
 				$html .= "<span class='label'>".$taxonomy->labels->name."</span>";
52 52
 
53
-				$html .= $this->build_button( 'create', $tax, __( 'Create', 'otm-test-content' )." ".$taxonomy->labels->name );
54
-				$html .= $this->build_button( 'delete', $tax, __( 'Delete', 'otm-test-content' )." ".$taxonomy->labels->name );
53
+				$html .= $this->build_button('create', $tax, __('Create', 'otm-test-content')." ".$taxonomy->labels->name);
54
+				$html .= $this->build_button('delete', $tax, __('Delete', 'otm-test-content')." ".$taxonomy->labels->name);
55 55
 
56 56
 				$html .= "</h3>";
57 57
 
Please login to merge, or discard this patch.
views/view.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @subpackage Test Content
11 11
  * @author     Old Town Media
12 12
  */
13
-abstract class View{
13
+abstract class View {
14 14
 
15 15
 	/**
16 16
 	 * title
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @see tab, view
46 46
 	 */
47
-	public function register_view(){
47
+	public function register_view() {
48 48
 
49
-		add_action( 'tc-admin-tabs', array( $this, 'tab' ), $this->priority );
50
-		add_action( 'tc-admin-sections', array( $this, 'view' ), $this->priority );
49
+		add_action('tc-admin-tabs', array($this, 'tab'), $this->priority);
50
+		add_action('tc-admin-sections', array($this, 'view'), $this->priority);
51 51
 
52 52
 	}
53 53
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * Each view has a tab and tab navigation - this function compiles our
59 59
 	 * navigation tab. Rarely extended.
60 60
 	 */
61
-	public function tab(){
61
+	public function tab() {
62 62
 		$html = "";
63 63
 
64 64
 		$html .= "<a class='nav-tab' href='javascript:void(0)'>";
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	 *
79 79
 	 * @see actions_section, options_section
80 80
 	 */
81
-	public function view(){
81
+	public function view() {
82 82
 		$html = '';
83 83
 
84 84
 		$html .= "<section class='test-content-tab'>";
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 * @return string HTML content.
100 100
 	 */
101
-	protected function actions_section(){
101
+	protected function actions_section() {
102 102
 		$html = '';
103 103
 		return $html;
104 104
 	}
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
 	 * @param string $html Existing HTML content.
116 116
 	 * @return string HTML section content.
117 117
 	 */
118
-	protected function options_section( $html = '' ){
118
+	protected function options_section($html = '') {
119 119
 		$html .= "<div class='test-data-cpt'>";
120 120
 			$html .= "<h3>";
121
-				$html .= "<span class='label'>".__( 'Quantity', 'otm-test-content' )."</span>";
122
-				$html .= "<input type='number' value='0' class='quantity-adjustment' for='".$this->type."' placeholder='".__( '', 'otm-test-content' )."'> ";
121
+				$html .= "<span class='label'>".__('Quantity', 'otm-test-content')."</span>";
122
+				$html .= "<input type='number' value='0' class='quantity-adjustment' for='".$this->type."' placeholder='".__('', 'otm-test-content')."'> ";
123 123
 			$html .= "</h3>";
124 124
 		$html .= "</div>";
125 125
 
@@ -137,22 +137,22 @@  discard block
 block discarded – undo
137 137
 	 * @param string $text Text to display in the button.
138 138
 	 * @return string HTML.
139 139
 	 */
140
-	protected function build_button( $action, $slug, $text ){
140
+	protected function build_button($action, $slug, $text) {
141 141
 		$html = $dashicon = '';
142 142
 
143
-		if ( $action == 'create' ){
143
+		if ($action == 'create') {
144 144
 			$dashicon = 'dashicons-plus';
145
-		} elseif ( $action == 'delete' ){
145
+		} elseif ($action == 'delete') {
146 146
 			$dashicon = 'dashicons-trash';
147 147
 		}
148 148
 
149 149
 		$html .= "<a href='javascript:void(0);' ";
150
-			$html .= " data-type='" . $this->type . "'";
151
-			$html .= " data-slug='" . $slug . "'";
152
-			$html .= " data-todo='" . $action . "'";
150
+			$html .= " data-type='".$this->type."'";
151
+			$html .= " data-slug='".$slug."'";
152
+			$html .= " data-todo='".$action."'";
153 153
 			$html .= " class='button-primary handle-test-data'";
154 154
 		$html .= "/>";
155
-			$html .= "<span class='dashicons " . $dashicon . "'></span>";
155
+			$html .= "<span class='dashicons ".$dashicon."'></span>";
156 156
 			$html .= $text;
157 157
 		$html .= "</a>";
158 158
 
Please login to merge, or discard this patch.
test-content.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -21,30 +21,30 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * @param string $class Class name.
23 23
  */
24
-function test_content_autoloader( $class ) {
25
-	$namespace = explode( '\\', $class );
24
+function test_content_autoloader($class) {
25
+	$namespace = explode('\\', $class);
26 26
 
27
- 	if ( __NAMESPACE__ !== $namespace[0] ){
27
+ 	if (__NAMESPACE__ !== $namespace[0]) {
28 28
  		return;
29 29
  	}
30 30
 
31
-    $class = str_replace( __NAMESPACE__ . '\\', '', $class );
31
+    $class = str_replace(__NAMESPACE__.'\\', '', $class);
32 32
 
33 33
 
34
-	if ( 'Views' === $namespace[1] ){
35
-        $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) );
36
-        $class = str_replace( '\\', '', $class );
37
-     	$file  = dirname( __FILE__ ) . '/' . $class . '.php';
34
+	if ('Views' === $namespace[1]) {
35
+        $class = strtolower(preg_replace('/(?<!^)([A-Z])/', '/\1', $class));
36
+        $class = str_replace('\\', '', $class);
37
+     	$file  = dirname(__FILE__).'/'.$class.'.php';
38 38
     } else {
39
-        $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '-\\1', $class ) );
40
-     	$file  = dirname( __FILE__ ) . '/includes/class-' . $class . '.php';
39
+        $class = strtolower(preg_replace('/(?<!^)([A-Z])/', '-\\1', $class));
40
+     	$file  = dirname(__FILE__).'/includes/class-'.$class.'.php';
41 41
     }
42 42
 
43
- 	if ( file_exists( $file ) ) {
44
- 		require_once( $file );
43
+ 	if (file_exists($file)) {
44
+ 		require_once($file);
45 45
  	}
46 46
  }
47
- spl_autoload_register( __NAMESPACE__ . '\test_content_autoloader' );
47
+ spl_autoload_register(__NAMESPACE__.'\test_content_autoloader');
48 48
 
49 49
 
50 50
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
  function plugin() {
57 57
  	static $instance;
58 58
 
59
- 	if ( null === $instance ) {
59
+ 	if (null === $instance) {
60 60
  		$instance = new Plugin();
61 61
  	}
62 62
 
@@ -66,19 +66,19 @@  discard block
 block discarded – undo
66 66
 // Set our definitions for later use
67 67
  plugin()->set_definitions(
68 68
 	(object) array(
69
-		'basename'	=> plugin_basename( __FILE__ ),
70
-		'directory'	=> plugin_dir_path( __FILE__ ),
69
+		'basename'	=> plugin_basename(__FILE__),
70
+		'directory'	=> plugin_dir_path(__FILE__),
71 71
 		'file'		=> __FILE__,
72 72
 		'slug' 		=> 'structure',
73
-		'url'		=> plugin_dir_url( __FILE__ )
73
+		'url'		=> plugin_dir_url(__FILE__)
74 74
 	)
75 75
 );
76 76
 
77 77
  // Register hook providers and views.
78
- plugin()->register_hooks( new AdminPage() )
79
-         ->register_views( new Views\Posts() )
80
-         ->register_views( new Views\Terms() )
81
-		 ->register_views( new Views\Various() );
78
+ plugin()->register_hooks(new AdminPage())
79
+         ->register_views(new Views\Posts())
80
+         ->register_views(new Views\Terms())
81
+		 ->register_views(new Views\Various());
82 82
 
83 83
 // Load textdomain hook
84
-add_action( 'plugins_loaded', array( plugin(), 'load_textdomain' ) );
84
+add_action('plugins_loaded', array(plugin(), 'load_textdomain'));
Please login to merge, or discard this patch.
includes/class-plugin.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class Plugin{
11
+class Plugin {
12 12
 
13 13
 	/**
14 14
 	 * Plugin definitions.
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 * @param  object $definitions Information about the plugin
35 35
 	 * @return object $this
36 36
 	 */
37
-	public function set_definitions( $definitions ) {
37
+	public function set_definitions($definitions) {
38 38
 
39 39
 		$this->definitions = $definitions;
40 40
 		return $this;
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
 	 * @param  object $provider Hook provider.
49 49
 	 * @return object $this
50 50
 	 */
51
-	public function register_hooks( $provider ) {
51
+	public function register_hooks($provider) {
52 52
 
53
-		if ( method_exists( $provider, 'set_plugin' ) ) {
54
-			$provider->set_plugin( $this );
53
+		if (method_exists($provider, 'set_plugin')) {
54
+			$provider->set_plugin($this);
55 55
 		}
56 56
 
57 57
 		$provider->hooks();
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 * @param  object $provider Hook provider.
67 67
 	 * @return object $this
68 68
 	 */
69
-	public function register_views( $provider ) {
69
+	public function register_views($provider) {
70 70
 
71 71
 		$provider->register_view();
72 72
 		return $this;
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 * @see load_plugin_textdomain
81 81
 	 */
82 82
 	public function load_textdomain() {
83
-	    load_plugin_textdomain( 'otm-test-content', FALSE, basename( dirname( $this->definitions->file ) ) . '/languages/' );
83
+	    load_plugin_textdomain('otm-test-content', FALSE, basename(dirname($this->definitions->file)).'/languages/');
84 84
 	}
85 85
 
86 86
 }
Please login to merge, or discard this patch.
includes/class-admin-page.php 1 patch
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class AdminPage{
11
+class AdminPage {
12 12
 
13 13
 	/**
14 14
 	 * plugin
@@ -45,16 +45,16 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @see admin_menu, wp_ajax actions
47 47
 	 */
48
-	public function hooks(){
48
+	public function hooks() {
49 49
 
50 50
 		$connection = new ConnectionTest;
51
-		$this->definitions	= $this->plugin->get_definitions();
52
-		$this->connected	= $connection->test();
51
+		$this->definitions = $this->plugin->get_definitions();
52
+		$this->connected = $connection->test();
53 53
 
54
-		add_action( 'admin_menu' , array( $this, 'add_menu_item' ) );
55
-		add_action( 'wp_ajax_handle_test_data', array( $this, 'handle_test_data_callback' ) );
56
-		add_filter( 'plugin_action_links_' . $this->definitions->basename , array( $this, 'add_settings_link' ) );
57
-		add_action( 'admin_notices', array( $this, 'internet_connected_admin_notice' ) );
54
+		add_action('admin_menu', array($this, 'add_menu_item'));
55
+		add_action('wp_ajax_handle_test_data', array($this, 'handle_test_data_callback'));
56
+		add_filter('plugin_action_links_'.$this->definitions->basename, array($this, 'add_settings_link'));
57
+		add_action('admin_notices', array($this, 'internet_connected_admin_notice'));
58 58
 
59 59
 	}
60 60
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 *
65 65
 	 * @param Plugin $plugin Main plugin instance.
66 66
 	 */
67
-	public function set_plugin( $plugin ) {
67
+	public function set_plugin($plugin) {
68 68
 
69 69
 		$this->plugin = $plugin;
70 70
 		return $this;
@@ -81,14 +81,14 @@  discard block
 block discarded – undo
81 81
 
82 82
 		$page = add_submenu_page(
83 83
 			'tools.php',
84
-			__( 'Create Test Content', 'otm-test-content' ),
85
-			__( 'Test Content', 'otm-test-content' ),
84
+			__('Create Test Content', 'otm-test-content'),
85
+			__('Test Content', 'otm-test-content'),
86 86
 			'manage_options',
87 87
 			'create-test-data',
88
-			array( $this, 'admin_page' )
88
+			array($this, 'admin_page')
89 89
 		);
90 90
 
91
-		add_action( 'admin_print_styles-' . $page, array( $this, 'load_scripts' ) );
91
+		add_action('admin_print_styles-'.$page, array($this, 'load_scripts'));
92 92
 
93 93
 	}
94 94
 
@@ -98,10 +98,10 @@  discard block
 block discarded – undo
98 98
 	 * @param  array $links Existing links
99 99
 	 * @return array 		Modified links
100 100
 	 */
101
-	public function add_settings_link( $links ) {
101
+	public function add_settings_link($links) {
102 102
 
103
-		$settings_link = '<a href="tools.php?page=create-test-data">' . __( 'Build Test Content', 'otm-test-content' ) . '</a>';
104
-  		array_push( $links, $settings_link );
103
+		$settings_link = '<a href="tools.php?page=create-test-data">'.__('Build Test Content', 'otm-test-content').'</a>';
104
+  		array_push($links, $settings_link);
105 105
   		return $links;
106 106
 
107 107
 	}
@@ -114,24 +114,24 @@  discard block
 block discarded – undo
114 114
 	 * Internet, and the test fails displays a notice informing the user that
115 115
 	 * images will not pull into test data.
116 116
 	 */
117
-	public function internet_connected_admin_notice(){
117
+	public function internet_connected_admin_notice() {
118 118
 
119 119
 		// Get the current admin screen & verify that we're on the right one
120 120
 		// before continuing.
121 121
 		$screen = get_current_screen();
122 122
 
123
-		if ( $screen->base != 'tools_page_create-test-data' ){
123
+		if ($screen->base != 'tools_page_create-test-data') {
124 124
 			return;
125 125
 		}
126 126
 
127 127
 		// Check the response
128
-		if ( $this->connected ) {
128
+		if ($this->connected) {
129 129
 			// We got a response so early return
130 130
 			return;
131 131
 		} else {
132 132
 			// We didn't get a reponse so print the notice out
133 133
 			echo '<div class="notice notice-error">';
134
-		        echo '<p>'.__( 'WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'otm-test-content' ).'</p>';
134
+		        echo '<p>'.__('WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'otm-test-content').'</p>';
135 135
 		    echo '</div>';
136 136
 		}
137 137
 
@@ -141,19 +141,19 @@  discard block
 block discarded – undo
141 141
 	/**
142 142
 	 * Load our script in the admin section and serve in data.
143 143
 	 */
144
-	public function load_scripts(){
144
+	public function load_scripts() {
145 145
 
146
-		wp_enqueue_script( 'test-content-js', plugins_url( 'assets/admin.js' , dirname( __FILE__ ) ) );
147
-		wp_enqueue_style( 'test-content-css', plugins_url( 'assets/admin.css' , dirname( __FILE__ ) ) );
146
+		wp_enqueue_script('test-content-js', plugins_url('assets/admin.js', dirname(__FILE__)));
147
+		wp_enqueue_style('test-content-css', plugins_url('assets/admin.css', dirname(__FILE__)));
148 148
 
149 149
 		$data = array(
150
-			'nonce'			=> wp_create_nonce( 'handle-test-data' ),
151
-			'createdStr'	=> __( 'Created', 'otm-test-content' ),
152
-			'deletedStr'	=> __( 'Deleting', 'otm-test-content' ),
153
-			'creatingStr'	=> __( 'Creating', 'otm-test-content' ),
150
+			'nonce'			=> wp_create_nonce('handle-test-data'),
151
+			'createdStr'	=> __('Created', 'otm-test-content'),
152
+			'deletedStr'	=> __('Deleting', 'otm-test-content'),
153
+			'creatingStr'	=> __('Creating', 'otm-test-content'),
154 154
 		);
155 155
 
156
-		wp_localize_script( 'test-content-js', 'test_content', $data );
156
+		wp_localize_script('test-content-js', 'test_content', $data);
157 157
 
158 158
 	}
159 159
 
@@ -165,21 +165,21 @@  discard block
 block discarded – undo
165 165
 	 */
166 166
 	public function handle_test_data_callback() {
167 167
 
168
-		$action		= $_REQUEST['todo'];
169
-		$nonce		= $_REQUEST['nonce'];
168
+		$action = $_REQUEST['todo'];
169
+		$nonce = $_REQUEST['nonce'];
170 170
 
171 171
 		// Verify that we have a proper logged in user and it's the right person
172
-		if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, 'handle-test-data' ) ){
172
+		if (empty($nonce) || !wp_verify_nonce($nonce, 'handle-test-data')) {
173 173
 			return;
174 174
 		}
175 175
 
176
-		if ( $action == 'delete' ){
176
+		if ($action == 'delete') {
177 177
 
178
-			$this->deletion_routing( $_REQUEST );
178
+			$this->deletion_routing($_REQUEST);
179 179
 
180
-		} elseif ( $action == 'create' ){
180
+		} elseif ($action == 'create') {
181 181
 
182
-			$this->creation_routing( $_REQUEST );
182
+			$this->creation_routing($_REQUEST);
183 183
 
184 184
 		}
185 185
 
@@ -192,17 +192,17 @@  discard block
 block discarded – undo
192 192
 	 * Choose which type of creation needs to be accomplished and route through
193 193
 	 * the correct class.
194 194
 	 */
195
-	private function creation_routing( $data ){
195
+	private function creation_routing($data) {
196 196
 
197
-		if ( $data['type'] == 'post' ){
197
+		if ($data['type'] == 'post') {
198 198
 
199 199
 			$create_content = new CreatePost;
200
-			$create_content->create_post_type_content( $data['slug'], $data['connection'], true, 1 );
200
+			$create_content->create_post_type_content($data['slug'], $data['connection'], true, 1);
201 201
 
202
-		} elseif( $data['type'] == 'term' ){
202
+		} elseif ($data['type'] == 'term') {
203 203
 
204 204
 			$create_content = new CreateTerm;
205
-			$create_content->create_terms( $data['slug'], true, 1 );
205
+			$create_content->create_terms($data['slug'], true, 1);
206 206
 
207 207
 		}
208 208
 
@@ -213,21 +213,21 @@  discard block
 block discarded – undo
213 213
 	 * Choose which type of deletion needs to be accomplished and route through
214 214
 	 * the correct method of Delete.
215 215
 	 */
216
-	private function deletion_routing( $data ){
216
+	private function deletion_routing($data) {
217 217
 
218 218
 		$delete_content = new Delete;
219 219
 
220
-		if ( $data['type'] == 'post' ){
220
+		if ($data['type'] == 'post') {
221 221
 
222
-			$delete_content->delete_posts( $data['slug'], true );
222
+			$delete_content->delete_posts($data['slug'], true);
223 223
 
224
-		} elseif ( $data['type'] == 'term' ){
224
+		} elseif ($data['type'] == 'term') {
225 225
 
226
-			$delete_content->delete_terms( $data['slug'], true );
226
+			$delete_content->delete_terms($data['slug'], true);
227 227
 
228
-		} elseif ( $data['type'] == 'all' ){
228
+		} elseif ($data['type'] == 'all') {
229 229
 
230
-			$delete_content->delete_all_test_data( true );
230
+			$delete_content->delete_all_test_data(true);
231 231
 
232 232
 		}
233 233
 
@@ -237,20 +237,20 @@  discard block
 block discarded – undo
237 237
 	/**
238 238
 	 * Print out our admin page to control test data.
239 239
 	 */
240
-	public function admin_page(){
241
-		echo '<div class="wrap" id="options_editor">' . "\n";
240
+	public function admin_page() {
241
+		echo '<div class="wrap" id="options_editor">'."\n";
242 242
 
243
-			echo '<h2>' . __( 'Create Test Data' , 'otm-test-content' ) . '</h2>' . "\n";
243
+			echo '<h2>'.__('Create Test Data', 'otm-test-content').'</h2>'."\n";
244 244
 
245 245
 			echo "<div class='nav-tab-wrapper'>";
246 246
 
247
-				do_action( 'tc-admin-tabs', '' );
247
+				do_action('tc-admin-tabs', '');
248 248
 
249 249
 			echo "</div>";
250 250
 
251 251
 			echo "";
252 252
 
253
-				do_action( 'tc-admin-sections', '' );
253
+				do_action('tc-admin-sections', '');
254 254
 
255 255
 			echo "";
256 256
 
Please login to merge, or discard this patch.