@@ -47,6 +47,9 @@ |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | |
50 | + /** |
|
51 | + * @param string $slug |
|
52 | + */ |
|
50 | 53 | private function get_acf_free_metaboxes( $slug ){ |
51 | 54 | |
52 | 55 | // This damn plugin. Is. A. Freaking. Nightmare. |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @subpackage Evans |
9 | 9 | * @author Old Town Media |
10 | 10 | */ |
11 | -class Metaboxes{ |
|
11 | +class Metaboxes { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Decide which cmb library to try and loop to get our metaboxes. |
@@ -22,23 +22,23 @@ discard block |
||
22 | 22 | * @param string $slug Post Type slug ID. |
23 | 23 | * @return array Fields to fill in for our post object. |
24 | 24 | */ |
25 | - public function get_metaboxes( $slug ){ |
|
25 | + public function get_metaboxes($slug) { |
|
26 | 26 | |
27 | 27 | $fields = array(); |
28 | 28 | |
29 | 29 | // CMB2 |
30 | - if ( class_exists( 'CMB2', false ) ) { |
|
31 | - $fields = $this->get_cmb2_metaboxes( $slug ); |
|
30 | + if (class_exists('CMB2', false)) { |
|
31 | + $fields = $this->get_cmb2_metaboxes($slug); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | // Custom Metaboxes and Fields (CMB1) |
35 | - if ( class_exists( 'cmb_Meta_Box', false ) ) { |
|
36 | - $fields = $this->get_cmb1_metaboxes( $slug ); |
|
35 | + if (class_exists('cmb_Meta_Box', false)) { |
|
36 | + $fields = $this->get_cmb1_metaboxes($slug); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | // Advanced Custom Fields (ACF Free) |
40 | - if ( class_exists( 'acf', false ) ) { |
|
41 | - $fields = $this->get_acf_free_metaboxes( $slug ); |
|
40 | + if (class_exists('acf', false)) { |
|
41 | + $fields = $this->get_acf_free_metaboxes($slug); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | // Return our array |
@@ -47,25 +47,25 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | |
50 | - private function get_acf_free_metaboxes( $slug ){ |
|
50 | + private function get_acf_free_metaboxes($slug) { |
|
51 | 51 | |
52 | 52 | // This damn plugin. Is. A. Freaking. Nightmare. |
53 | 53 | $fieldsets = $this->get_all_acf_field_groups(); |
54 | 54 | |
55 | - if ( empty( $fieldsets ) ){ |
|
55 | + if (empty($fieldsets)) { |
|
56 | 56 | return true; |
57 | 57 | } |
58 | 58 | |
59 | - foreach ( $fieldsets as $fieldset ){ |
|
59 | + foreach ($fieldsets as $fieldset) { |
|
60 | 60 | |
61 | - if ( $this->is_acf_field_in_post_type( $slug, $fieldset ) ){ |
|
61 | + if ($this->is_acf_field_in_post_type($slug, $fieldset)) { |
|
62 | 62 | |
63 | 63 | // If this is the first group of fields, simply set the value |
64 | 64 | // Else, merge this group with the previous one |
65 | - if ( empty( $fields ) ){ |
|
65 | + if (empty($fields)) { |
|
66 | 66 | $fields = $fieldset->fields; |
67 | 67 | } else { |
68 | - $fields = array_merge( $fields, $fieldset->fields ); |
|
68 | + $fields = array_merge($fields, $fieldset->fields); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | } |
@@ -77,14 +77,14 @@ discard block |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | |
80 | - private function is_acf_field_in_post_type( $slug, $fieldset ){ |
|
80 | + private function is_acf_field_in_post_type($slug, $fieldset) { |
|
81 | 81 | |
82 | - if ( empty( $fieldset ) ){ |
|
82 | + if (empty($fieldset)) { |
|
83 | 83 | return; |
84 | 84 | } |
85 | 85 | |
86 | - foreach ( $fieldset->rules as $rule ){ |
|
87 | - if ( $rule['param'] === 'post_type' && $rule['value'] === $slug ){ |
|
86 | + foreach ($fieldset->rules as $rule) { |
|
87 | + if ($rule['param'] === 'post_type' && $rule['value'] === $slug) { |
|
88 | 88 | return true; |
89 | 89 | } |
90 | 90 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | |
97 | - private function get_all_acf_field_groups(){ |
|
97 | + private function get_all_acf_field_groups() { |
|
98 | 98 | $info = $rules = $fields = array(); |
99 | 99 | |
100 | 100 | $args = array( |
@@ -102,20 +102,20 @@ discard block |
||
102 | 102 | 'posts_per_page'=> 500 |
103 | 103 | ); |
104 | 104 | |
105 | - $objects = new \WP_Query( $args ); |
|
105 | + $objects = new \WP_Query($args); |
|
106 | 106 | |
107 | - if ( $objects->have_posts() ) : |
|
108 | - while ( $objects->have_posts() ) : $objects->the_post(); |
|
107 | + if ($objects->have_posts()) : |
|
108 | + while ($objects->have_posts()) : $objects->the_post(); |
|
109 | 109 | |
110 | - $data = get_metadata( 'post', get_the_id() ); |
|
110 | + $data = get_metadata('post', get_the_id()); |
|
111 | 111 | |
112 | - foreach ( $data['rule'] as $rule ){ |
|
113 | - $rules[] = unserialize( $rule ); |
|
112 | + foreach ($data['rule'] as $rule) { |
|
113 | + $rules[] = unserialize($rule); |
|
114 | 114 | } |
115 | 115 | |
116 | - foreach ( $data as $key => $value ){ |
|
117 | - if ( substr( $key, 0, 6 ) == 'field_' ) : |
|
118 | - $field_detail = unserialize( $value[0] ); |
|
116 | + foreach ($data as $key => $value) { |
|
117 | + if (substr($key, 0, 6) == 'field_') : |
|
118 | + $field_detail = unserialize($value[0]); |
|
119 | 119 | $fields[] = array( |
120 | 120 | 'key' => $field_detail['key'], |
121 | 121 | 'type' => $field_detail['type'], |
@@ -153,55 +153,55 @@ discard block |
||
153 | 153 | * @param string $slug a custom post type ID. |
154 | 154 | * @return array Array of fields. |
155 | 155 | */ |
156 | - private function get_cmb2_metaboxes( $slug ){ |
|
156 | + private function get_cmb2_metaboxes($slug) { |
|
157 | 157 | |
158 | 158 | $fields = array(); |
159 | 159 | |
160 | 160 | // Get all metaboxes from CMB2 library |
161 | - $all_metaboxes = apply_filters( 'cmb2_meta_boxes', array() ); |
|
161 | + $all_metaboxes = apply_filters('cmb2_meta_boxes', array()); |
|
162 | 162 | |
163 | 163 | // Loop through all possible sets of metaboxes added the old way |
164 | - foreach ( $all_metaboxes as $metabox_array ){ |
|
164 | + foreach ($all_metaboxes as $metabox_array) { |
|
165 | 165 | |
166 | 166 | // If the custom post type ID matches this set of fields, set & stop |
167 | - if ( in_array( $slug, $metabox_array['object_types'] ) ) { |
|
167 | + if (in_array($slug, $metabox_array['object_types'])) { |
|
168 | 168 | |
169 | 169 | // If this is the first group of fields, simply set the value |
170 | 170 | // Else, merge this group with the previous one |
171 | - if ( empty( $fields ) ){ |
|
171 | + if (empty($fields)) { |
|
172 | 172 | $fields = $metabox_array['fields']; |
173 | 173 | } else { |
174 | - $fields = array_merge( $fields, $metabox_array['fields'] ); |
|
174 | + $fields = array_merge($fields, $metabox_array['fields']); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
178 | 178 | } |
179 | 179 | |
180 | 180 | // Loop through all metaboxes added the new way |
181 | - foreach ( \CMB2_Boxes::get_all() as $cmb ) { |
|
181 | + foreach (\CMB2_Boxes::get_all() as $cmb) { |
|
182 | 182 | |
183 | 183 | // Create the default |
184 | 184 | $match = false; |
185 | 185 | |
186 | 186 | // Establish correct cmb types |
187 | - if ( is_string( $cmb->meta_box['object_types'] ) ){ |
|
188 | - if ( $cmb->meta_box['object_types'] == $slug ){ |
|
187 | + if (is_string($cmb->meta_box['object_types'])) { |
|
188 | + if ($cmb->meta_box['object_types'] == $slug) { |
|
189 | 189 | $match = true; |
190 | 190 | } |
191 | 191 | } else { |
192 | - if ( in_array( $slug, $cmb->meta_box['object_types'] ) ){ |
|
192 | + if (in_array($slug, $cmb->meta_box['object_types'])) { |
|
193 | 193 | $match = true; |
194 | 194 | } |
195 | 195 | } |
196 | 196 | |
197 | - if ( $match !== true ){ |
|
197 | + if ($match !== true) { |
|
198 | 198 | continue; |
199 | 199 | } |
200 | 200 | |
201 | - if ( empty( $fields ) ){ |
|
201 | + if (empty($fields)) { |
|
202 | 202 | $fields = $cmb->meta_box['fields']; |
203 | 203 | } else { |
204 | - $fields = array_merge( $fields, $cmb->meta_box['fields'] ); |
|
204 | + $fields = array_merge($fields, $cmb->meta_box['fields']); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | } |
@@ -225,25 +225,25 @@ discard block |
||
225 | 225 | * @param string $slug a custom post type ID. |
226 | 226 | * @return array Array of fields. |
227 | 227 | */ |
228 | - private function get_cmb1_metaboxes( $slug ){ |
|
228 | + private function get_cmb1_metaboxes($slug) { |
|
229 | 229 | |
230 | 230 | $fields = array(); |
231 | 231 | |
232 | 232 | // Get all metaboxes from CMB2 library |
233 | - $all_metaboxes = apply_filters( 'cmb_meta_boxes', array() ); |
|
233 | + $all_metaboxes = apply_filters('cmb_meta_boxes', array()); |
|
234 | 234 | |
235 | 235 | // Loop through all possible sets of metaboxes |
236 | - foreach ( $all_metaboxes as $metabox_array ){ |
|
236 | + foreach ($all_metaboxes as $metabox_array) { |
|
237 | 237 | |
238 | 238 | // If the custom post type ID matches this set of fields, set & stop |
239 | - if ( in_array( $slug, $metabox_array['pages'] ) ) { |
|
239 | + if (in_array($slug, $metabox_array['pages'])) { |
|
240 | 240 | |
241 | 241 | // If this is the first group of fields, simply set the value |
242 | 242 | // Else, merge this group with the previous one |
243 | - if ( empty( $fields ) ){ |
|
243 | + if (empty($fields)) { |
|
244 | 244 | $fields = $metabox_array['fields']; |
245 | 245 | } else { |
246 | - $fields = array_merge( $fields, $metabox_array['fields'] ); |
|
246 | + $fields = array_merge($fields, $metabox_array['fields']); |
|
247 | 247 | } |
248 | 248 | } |
249 | 249 | |
@@ -266,36 +266,36 @@ discard block |
||
266 | 266 | * @param int $post_id Single post ID. |
267 | 267 | * @param array $cmb custom metabox array from CMB2. |
268 | 268 | */ |
269 | - public function random_metabox_content( $post_id, $cmb, $connected ){ |
|
269 | + public function random_metabox_content($post_id, $cmb, $connected) { |
|
270 | 270 | $value = ''; |
271 | 271 | |
272 | 272 | // First check that our post ID & cmb array aren't empty |
273 | - if ( empty( $cmb ) || empty( $post_id ) ){ |
|
273 | + if (empty($cmb) || empty($post_id)) { |
|
274 | 274 | return; |
275 | 275 | } |
276 | 276 | |
277 | 277 | // Fetch the appropriate type of data and return |
278 | - switch( $cmb['type'] ){ |
|
278 | + switch ($cmb['type']) { |
|
279 | 279 | |
280 | 280 | case 'text': |
281 | 281 | case 'text_small': |
282 | 282 | case 'text_medium': |
283 | 283 | |
284 | 284 | // If phone is in the id, fetch a phone # |
285 | - if ( stripos( $cmb['id'], 'phone' ) ){ |
|
285 | + if (stripos($cmb['id'], 'phone')) { |
|
286 | 286 | $value = TestContent::phone(); |
287 | 287 | |
288 | 288 | // If email is in the id, fetch an email address |
289 | - } elseif ( stripos( $cmb['id'], 'email' ) ){ |
|
289 | + } elseif (stripos($cmb['id'], 'email')) { |
|
290 | 290 | $value = TestContent::email(); |
291 | 291 | |
292 | 292 | // If time is in the id, fetch a time string |
293 | - } elseif ( stripos( $cmb['id'], 'time' ) ){ |
|
293 | + } elseif (stripos($cmb['id'], 'time')) { |
|
294 | 294 | $value = TestContent::time(); |
295 | 295 | |
296 | 296 | // Otherwise, just a random text string |
297 | 297 | } else { |
298 | - $value = TestContent::title( rand( 10, 50 ) ); |
|
298 | + $value = TestContent::title(rand(10, 50)); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | break; |
@@ -326,14 +326,14 @@ discard block |
||
326 | 326 | |
327 | 327 | case 'text_date': |
328 | 328 | |
329 | - $value = TestContent::date( 'm/d/Y' ); |
|
329 | + $value = TestContent::date('m/d/Y'); |
|
330 | 330 | |
331 | 331 | break; |
332 | 332 | |
333 | 333 | case 'text_date_timestamp': |
334 | 334 | case 'text_datetime_timestamp': |
335 | 335 | |
336 | - $value = TestContent::date( 'U' ); |
|
336 | + $value = TestContent::date('U'); |
|
337 | 337 | |
338 | 338 | break; |
339 | 339 | |
@@ -341,13 +341,13 @@ discard block |
||
341 | 341 | |
342 | 342 | case 'text_money': |
343 | 343 | |
344 | - $value = rand( 0, 100000 ); |
|
344 | + $value = rand(0, 100000); |
|
345 | 345 | |
346 | 346 | break; |
347 | 347 | |
348 | 348 | case 'test_colorpicker': |
349 | 349 | |
350 | - $value = '#' . str_pad( dechex( mt_rand( 0, 0xFFFFFF ) ), 6, '0', STR_PAD_LEFT ); |
|
350 | + $value = '#'.str_pad(dechex(mt_rand(0, 0xFFFFFF)), 6, '0', STR_PAD_LEFT); |
|
351 | 351 | |
352 | 352 | break; |
353 | 353 | |
@@ -364,8 +364,8 @@ discard block |
||
364 | 364 | case 'radio': |
365 | 365 | |
366 | 366 | // Grab a random item out of the array and return the key |
367 | - $new_val = array_slice( $cmb['options'], rand( 0, count( $cmb['options'] ) ), 1 ); |
|
368 | - $value = key( $new_val ); |
|
367 | + $new_val = array_slice($cmb['options'], rand(0, count($cmb['options'])), 1); |
|
368 | + $value = key($new_val); |
|
369 | 369 | |
370 | 370 | break; |
371 | 371 | |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | case 'checkbox': |
377 | 377 | |
378 | 378 | // 50/50 odds of being turned on |
379 | - if ( rand( 0, 1 ) == 1 ){ |
|
379 | + if (rand(0, 1) == 1) { |
|
380 | 380 | $value = 'on'; |
381 | 381 | } |
382 | 382 | |
@@ -387,10 +387,10 @@ discard block |
||
387 | 387 | $new_option = array(); |
388 | 388 | |
389 | 389 | // Loop through each of our options |
390 | - foreach ( $cmb['options'] as $key => $value ){ |
|
390 | + foreach ($cmb['options'] as $key => $value) { |
|
391 | 391 | |
392 | 392 | // 50/50 chance of being included |
393 | - if ( rand( 0, 1 ) ){ |
|
393 | + if (rand(0, 1)) { |
|
394 | 394 | $new_option[] = $key; |
395 | 395 | } |
396 | 396 | |
@@ -408,8 +408,8 @@ discard block |
||
408 | 408 | |
409 | 409 | case 'file': |
410 | 410 | |
411 | - if ( true == $connected ){ |
|
412 | - $value = TestContent::image( $post_id ); |
|
411 | + if (true == $connected) { |
|
412 | + $value = TestContent::image($post_id); |
|
413 | 413 | } |
414 | 414 | |
415 | 415 | break; |
@@ -425,29 +425,29 @@ discard block |
||
425 | 425 | } |
426 | 426 | |
427 | 427 | // Value must exist to attempt to insert |
428 | - if ( !empty( $value ) && !is_wp_error( $value ) ){ |
|
428 | + if (!empty($value) && !is_wp_error($value)) { |
|
429 | 429 | |
430 | 430 | $type = $cmb['type']; |
431 | - $id = $cmb['id']; |
|
432 | - $value = apply_filters( "tc_{$type}_metabox", $value ); // Filter by metabox type |
|
433 | - $value = apply_filters( "tc_{$id}_metabox", $value ); // Filter by metabox ID |
|
431 | + $id = $cmb['id']; |
|
432 | + $value = apply_filters("tc_{$type}_metabox", $value); // Filter by metabox type |
|
433 | + $value = apply_filters("tc_{$id}_metabox", $value); // Filter by metabox ID |
|
434 | 434 | |
435 | 435 | // Files must be treated separately - they use the attachment ID |
436 | 436 | // & url of media for separate cmb values |
437 | - if ( $cmb['type'] != 'file' ){ |
|
438 | - add_post_meta( $post_id, $cmb['id'], $value, true ); |
|
437 | + if ($cmb['type'] != 'file') { |
|
438 | + add_post_meta($post_id, $cmb['id'], $value, true); |
|
439 | 439 | } else { |
440 | - add_post_meta( $post_id, $cmb['id'].'_id', $value, true ); |
|
441 | - add_post_meta( $post_id, $cmb['id'], wp_get_attachment_url( $value ), true ); |
|
440 | + add_post_meta($post_id, $cmb['id'].'_id', $value, true); |
|
441 | + add_post_meta($post_id, $cmb['id'], wp_get_attachment_url($value), true); |
|
442 | 442 | } |
443 | 443 | |
444 | - if ( $cmb['source'] === 'acf' ){ |
|
445 | - add_post_meta( $post_id, '_' . $cmb['id'], $cmb['key'], true ); |
|
444 | + if ($cmb['source'] === 'acf') { |
|
445 | + add_post_meta($post_id, '_'.$cmb['id'], $cmb['key'], true); |
|
446 | 446 | } |
447 | 447 | |
448 | 448 | // If we're dealing with a WP Error object, just return the message for debugging |
449 | - } elseif ( is_wp_error( $value ) ){ |
|
450 | - error_log( $value->get_error_message() ); |
|
449 | + } elseif (is_wp_error($value)) { |
|
450 | + error_log($value->get_error_message()); |
|
451 | 451 | return $value->get_error_message(); |
452 | 452 | } |
453 | 453 |
@@ -9,11 +9,11 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -10,11 +10,11 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -10,11 +10,11 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -10,7 +10,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -28,17 +28,17 @@ discard block |
||
28 | 28 | return; |
29 | 29 | } |
30 | 30 | |
31 | - $class = str_replace( __NAMESPACE__ . '\\', '', $class ); |
|
31 | + $class = str_replace( __NAMESPACE__ . '\\', '', $class ); |
|
32 | 32 | |
33 | 33 | |
34 | 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 | - } else { |
|
39 | - $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '-\\1', $class ) ); |
|
40 | - $file = dirname( __FILE__ ) . '/includes/class-' . $class . '.php'; |
|
41 | - } |
|
35 | + $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) ); |
|
36 | + $class = str_replace( '\\', '', $class ); |
|
37 | + $file = dirname( __FILE__ ) . '/' . $class . '.php'; |
|
38 | + } else { |
|
39 | + $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '-\\1', $class ) ); |
|
40 | + $file = dirname( __FILE__ ) . '/includes/class-' . $class . '.php'; |
|
41 | + } |
|
42 | 42 | |
43 | 43 | if ( file_exists( $file ) ) { |
44 | 44 | require_once( $file ); |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | |
77 | 77 | // Register hook providers and views. |
78 | 78 | plugin()->register_hooks( new AdminPage() ) |
79 | - ->register_views( new Views\Posts() ) |
|
80 | - ->register_views( new Views\Terms() ) |
|
79 | + ->register_views( new Views\Posts() ) |
|
80 | + ->register_views( new Views\Terms() ) |
|
81 | 81 | ->register_views( new Views\Various() ); |
82 | 82 | |
83 | 83 | // Load textdomain hook |
@@ -21,30 +21,30 @@ discard block |
||
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 |
||
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 |
||
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')); |
@@ -8,7 +8,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -8,7 +8,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $post_types = get_post_types( array( 'public' => true ), 'objects' ); |
26 | 26 | foreach ( $post_types as $post_type ) : |
27 | 27 | |
28 | - $this->delete_posts( $post_type->name, $echo ); |
|
28 | + $this->delete_posts( $post_type->name, $echo ); |
|
29 | 29 | |
30 | 30 | endforeach; |
31 | 31 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $taxonomies = get_taxonomies(); |
34 | 34 | foreach ( $taxonomies as $tax ) : |
35 | 35 | |
36 | - $this->delete_terms( $tax, $echo ); |
|
36 | + $this->delete_terms( $tax, $echo ); |
|
37 | 37 | |
38 | 38 | endforeach; |
39 | 39 | |
@@ -182,14 +182,14 @@ discard block |
||
182 | 182 | |
183 | 183 | // Query for our terms |
184 | 184 | $args = array( |
185 | - 'hide_empty' => false, |
|
186 | - 'meta_query' => array( |
|
187 | - array( |
|
188 | - 'key' => 'evans_test_content', |
|
189 | - 'value' => '__test__', |
|
190 | - 'compare' => '=' |
|
191 | - ) |
|
192 | - ) |
|
185 | + 'hide_empty' => false, |
|
186 | + 'meta_query' => array( |
|
187 | + array( |
|
188 | + 'key' => 'evans_test_content', |
|
189 | + 'value' => '__test__', |
|
190 | + 'compare' => '=' |
|
191 | + ) |
|
192 | + ) |
|
193 | 193 | ); |
194 | 194 | |
195 | 195 | $terms = get_terms( $slug, $args ); |
@@ -8,32 +8,32 @@ discard block |
||
8 | 8 | * @subpackage Evans |
9 | 9 | * @author Old Town Media |
10 | 10 | */ |
11 | -class Delete{ |
|
11 | +class Delete { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Delete all test content created ever. |
15 | 15 | * |
16 | 16 | * @access private |
17 | 17 | */ |
18 | - public function delete_all_test_data( $echo = false ){ |
|
18 | + public function delete_all_test_data($echo = false) { |
|
19 | 19 | |
20 | - if ( !$this->user_can_delete() ){ |
|
20 | + if (!$this->user_can_delete()) { |
|
21 | 21 | return; |
22 | 22 | } |
23 | 23 | |
24 | 24 | // Loop through all post types and remove any test data |
25 | - $post_types = get_post_types( array( 'public' => true ), 'objects' ); |
|
26 | - foreach ( $post_types as $post_type ) : |
|
25 | + $post_types = get_post_types(array('public' => true), 'objects'); |
|
26 | + foreach ($post_types as $post_type) : |
|
27 | 27 | |
28 | - $this->delete_posts( $post_type->name, $echo ); |
|
28 | + $this->delete_posts($post_type->name, $echo); |
|
29 | 29 | |
30 | 30 | endforeach; |
31 | 31 | |
32 | 32 | // Loop through all taxonomies and remove any data |
33 | 33 | $taxonomies = get_taxonomies(); |
34 | - foreach ( $taxonomies as $tax ) : |
|
34 | + foreach ($taxonomies as $tax) : |
|
35 | 35 | |
36 | - $this->delete_terms( $tax, $echo ); |
|
36 | + $this->delete_terms($tax, $echo); |
|
37 | 37 | |
38 | 38 | endforeach; |
39 | 39 | |
@@ -52,15 +52,15 @@ discard block |
||
52 | 52 | * @param string $slug a custom post type ID. |
53 | 53 | * @param boolean $echo Whether or not to echo the result |
54 | 54 | */ |
55 | - public function delete_posts( $slug, $echo = false ){ |
|
55 | + public function delete_posts($slug, $echo = false) { |
|
56 | 56 | |
57 | 57 | // Make sure that the current user is logged in & has full permissions. |
58 | - if ( !$this->user_can_delete() ){ |
|
58 | + if (!$this->user_can_delete()) { |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | 62 | // Check that $cptslg has a string. |
63 | - if ( empty( $slug ) ){ |
|
63 | + if (empty($slug)) { |
|
64 | 64 | return; |
65 | 65 | } |
66 | 66 | |
@@ -77,39 +77,39 @@ discard block |
||
77 | 77 | ), |
78 | 78 | ); |
79 | 79 | |
80 | - $objects = new \WP_Query( $query ); |
|
80 | + $objects = new \WP_Query($query); |
|
81 | 81 | |
82 | - if ( $objects->have_posts() ){ |
|
82 | + if ($objects->have_posts()) { |
|
83 | 83 | |
84 | 84 | $events = array(); |
85 | 85 | |
86 | - while ( $objects->have_posts() ) : $objects->the_post(); |
|
86 | + while ($objects->have_posts()) : $objects->the_post(); |
|
87 | 87 | |
88 | 88 | // Find any media associated with the test post and delete it as well |
89 | - $this->delete_associated_media( get_the_id() ); |
|
89 | + $this->delete_associated_media(get_the_id()); |
|
90 | 90 | |
91 | - if ( $echo === true ){ |
|
91 | + if ($echo === true) { |
|
92 | 92 | $events[] = array( |
93 | 93 | 'type' => 'deleted', |
94 | 94 | 'pid' => get_the_id(), |
95 | - 'post_type' => get_post_type( get_the_id() ), |
|
95 | + 'post_type' => get_post_type(get_the_id()), |
|
96 | 96 | 'link' => '' |
97 | 97 | ); |
98 | 98 | } |
99 | 99 | |
100 | 100 | // Force delete the post |
101 | - wp_delete_post( get_the_id(), true ); |
|
101 | + wp_delete_post(get_the_id(), true); |
|
102 | 102 | |
103 | 103 | endwhile; |
104 | 104 | |
105 | - $obj = get_post_type_object( $slug ); |
|
105 | + $obj = get_post_type_object($slug); |
|
106 | 106 | |
107 | 107 | $events[] = array( |
108 | 108 | 'type' => 'general', |
109 | - 'message' => __( 'Deleted', 'otm-test-content' ) . ' ' . $obj->labels->all_items |
|
109 | + 'message' => __('Deleted', 'otm-test-content').' '.$obj->labels->all_items |
|
110 | 110 | ); |
111 | 111 | |
112 | - echo \json_encode( $events ); |
|
112 | + echo \json_encode($events); |
|
113 | 113 | |
114 | 114 | } |
115 | 115 | |
@@ -129,26 +129,26 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @param int $pid a custom post type ID. |
131 | 131 | */ |
132 | - private function delete_associated_media( $pid ){ |
|
132 | + private function delete_associated_media($pid) { |
|
133 | 133 | |
134 | 134 | // Make sure that the current user is logged in & has full permissions. |
135 | - if ( !$this->user_can_delete() ){ |
|
135 | + if (!$this->user_can_delete()) { |
|
136 | 136 | return; |
137 | 137 | } |
138 | 138 | |
139 | 139 | // Make sure $pid is, in fact, an ID |
140 | - if ( !is_int( $pid ) ){ |
|
140 | + if (!is_int($pid)) { |
|
141 | 141 | return; |
142 | 142 | } |
143 | 143 | |
144 | 144 | // Get our images |
145 | - $media = get_attached_media( 'image', $pid ); |
|
145 | + $media = get_attached_media('image', $pid); |
|
146 | 146 | |
147 | - if ( !empty( $media ) ){ |
|
147 | + if (!empty($media)) { |
|
148 | 148 | |
149 | 149 | // Loop through the media & delete each one |
150 | - foreach ( $media as $attachment ){ |
|
151 | - wp_delete_attachment( $attachment->ID, true ); |
|
150 | + foreach ($media as $attachment) { |
|
151 | + wp_delete_attachment($attachment->ID, true); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | } |
@@ -168,15 +168,15 @@ discard block |
||
168 | 168 | * @param string $slug a custom post type ID. |
169 | 169 | * @param boolean $echo Whether or not to echo the result |
170 | 170 | */ |
171 | - public function delete_terms( $slug, $echo = false ){ |
|
171 | + public function delete_terms($slug, $echo = false) { |
|
172 | 172 | |
173 | 173 | // Make sure that the current user is logged in & has full permissions. |
174 | - if ( !$this->user_can_delete() ){ |
|
174 | + if (!$this->user_can_delete()) { |
|
175 | 175 | return; |
176 | 176 | } |
177 | 177 | |
178 | 178 | // Check that $cptslg has a string. |
179 | - if ( empty( $slug ) ){ |
|
179 | + if (empty($slug)) { |
|
180 | 180 | return; |
181 | 181 | } |
182 | 182 | |
@@ -192,15 +192,15 @@ discard block |
||
192 | 192 | ) |
193 | 193 | ); |
194 | 194 | |
195 | - $terms = get_terms( $slug, $args ); |
|
195 | + $terms = get_terms($slug, $args); |
|
196 | 196 | |
197 | - if ( !empty( $terms ) ){ |
|
197 | + if (!empty($terms)) { |
|
198 | 198 | |
199 | 199 | $events = array(); |
200 | 200 | |
201 | - foreach ( $terms as $term ){ |
|
201 | + foreach ($terms as $term) { |
|
202 | 202 | |
203 | - if ( $echo === true ){ |
|
203 | + if ($echo === true) { |
|
204 | 204 | $events[] = array( |
205 | 205 | 'type' => 'deleted', |
206 | 206 | 'pid' => $term->term_id, |
@@ -210,18 +210,18 @@ discard block |
||
210 | 210 | } |
211 | 211 | |
212 | 212 | // Delete our term |
213 | - wp_delete_term( $term->term_id, $slug ); |
|
213 | + wp_delete_term($term->term_id, $slug); |
|
214 | 214 | |
215 | 215 | } |
216 | 216 | |
217 | - $taxonomy = get_taxonomy( $slug ); |
|
217 | + $taxonomy = get_taxonomy($slug); |
|
218 | 218 | |
219 | 219 | $events[] = array( |
220 | 220 | 'type' => 'general', |
221 | - 'message' => __( 'Deleted', 'otm-test-content' ) . ' ' . $taxonomy->labels->name |
|
221 | + 'message' => __('Deleted', 'otm-test-content').' '.$taxonomy->labels->name |
|
222 | 222 | ); |
223 | 223 | |
224 | - echo \json_encode( $events ); |
|
224 | + echo \json_encode($events); |
|
225 | 225 | |
226 | 226 | } |
227 | 227 | |
@@ -233,15 +233,15 @@ discard block |
||
233 | 233 | * |
234 | 234 | * @see is_user_logged_in, current_user_can |
235 | 235 | */ |
236 | - private function user_can_delete(){ |
|
236 | + private function user_can_delete() { |
|
237 | 237 | |
238 | 238 | // User must be logged in |
239 | - if ( !is_user_logged_in() ){ |
|
239 | + if (!is_user_logged_in()) { |
|
240 | 240 | return false; |
241 | 241 | } |
242 | 242 | |
243 | 243 | // User must have editor priveledges, at a minimum |
244 | - if ( !current_user_can( 'delete_others_posts' ) ){ |
|
244 | + if (!current_user_can('delete_others_posts')) { |
|
245 | 245 | return false; |
246 | 246 | } |
247 | 247 |