@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | |
24 | 24 | $request = ClassyHierarchy::get_current_request(); |
25 | 25 | |
26 | - $file = ClassyHierarchy::get_available_file( 'view', $request ); |
|
26 | + $file = ClassyHierarchy::get_available_file('view', $request); |
|
27 | 27 | |
28 | - $view = self::get_blade_view( $file ); |
|
28 | + $view = self::get_blade_view($file); |
|
29 | 29 | |
30 | 30 | return $view; |
31 | 31 | |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | * @param string $view |
39 | 39 | * @return string |
40 | 40 | */ |
41 | - public static function get_blade_view( $view ) { |
|
41 | + public static function get_blade_view($view) { |
|
42 | 42 | |
43 | - return str_replace( '/', '.', $view ); |
|
43 | + return str_replace('/', '.', $view); |
|
44 | 44 | |
45 | 45 | } |
46 | 46 | |
@@ -54,21 +54,21 @@ discard block |
||
54 | 54 | |
55 | 55 | $templates = array(); |
56 | 56 | |
57 | - $files = (array) glob( THEME_PATH . '/' . self::$folder . '/*/*.blade.php' ); |
|
57 | + $files = (array) glob(THEME_PATH.'/'.self::$folder.'/*/*.blade.php'); |
|
58 | 58 | |
59 | - foreach ( $files as $filename ) { |
|
59 | + foreach ($files as $filename) { |
|
60 | 60 | |
61 | - if ( ! empty( $filename ) ) { |
|
61 | + if (!empty($filename)) { |
|
62 | 62 | |
63 | - if ( ! preg_match( '/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents( $filename ), $header ) ) { continue; } |
|
63 | + if (!preg_match('/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents($filename), $header)) { continue; } |
|
64 | 64 | |
65 | - $template_name = trim( $header[1] ); |
|
65 | + $template_name = trim($header[1]); |
|
66 | 66 | |
67 | - preg_match( '/\/([^\/]*)\.blade.php$/is', $filename, $filename_match ); |
|
67 | + preg_match('/\/([^\/]*)\.blade.php$/is', $filename, $filename_match); |
|
68 | 68 | |
69 | - $template_file = 'classy-' . $filename_match[1]; |
|
69 | + $template_file = 'classy-'.$filename_match[1]; |
|
70 | 70 | |
71 | - $templates[ $template_file ] = $template_name; |
|
71 | + $templates[$template_file] = $template_name; |
|
72 | 72 | |
73 | 73 | } |
74 | 74 | } |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | * |
42 | 42 | * @param WP_Post $item |
43 | 43 | */ |
44 | - public function __construct( $item ) { |
|
44 | + public function __construct($item) { |
|
45 | 45 | |
46 | - if ( is_a( $item, 'WP_Post' ) ) { |
|
46 | + if (is_a($item, 'WP_Post')) { |
|
47 | 47 | |
48 | - $this->import( $item ); |
|
48 | + $this->import($item); |
|
49 | 49 | $this->filter_classes(); |
50 | 50 | |
51 | 51 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function get_classes() { |
104 | 104 | |
105 | - return implode( ' ', $this->classes ); |
|
105 | + return implode(' ', $this->classes); |
|
106 | 106 | |
107 | 107 | } |
108 | 108 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @param string $class_name |
113 | 113 | */ |
114 | - public function add_class( $class_name ) { |
|
114 | + public function add_class($class_name) { |
|
115 | 115 | |
116 | 116 | $this->classes[] = $class_name; |
117 | 117 | |
@@ -122,17 +122,17 @@ discard block |
||
122 | 122 | * |
123 | 123 | * @param ClassyMenuItem $item |
124 | 124 | */ |
125 | - public function add_child( $item ) { |
|
125 | + public function add_child($item) { |
|
126 | 126 | |
127 | - if ( ! $this->has_child ) { |
|
128 | - $this->add_class( 'menu-item-has-children' ); |
|
127 | + if (!$this->has_child) { |
|
128 | + $this->add_class('menu-item-has-children'); |
|
129 | 129 | $this->has_child = true; |
130 | 130 | } |
131 | 131 | |
132 | 132 | $this->children[] = $item; |
133 | 133 | $item->level = $this->level + 1; |
134 | 134 | |
135 | - if ( $item->children ) { |
|
135 | + if ($item->children) { |
|
136 | 136 | $this->update_child_levels(); |
137 | 137 | } |
138 | 138 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | protected function filter_classes() { |
147 | 147 | |
148 | - $this->classes = apply_filters( 'nav_menu_css_class', $this->classes, $this ); |
|
148 | + $this->classes = apply_filters('nav_menu_css_class', $this->classes, $this); |
|
149 | 149 | |
150 | 150 | } |
151 | 151 | |
@@ -156,9 +156,9 @@ discard block |
||
156 | 156 | */ |
157 | 157 | protected function update_child_levels() { |
158 | 158 | |
159 | - if ( is_array( $this->children ) ) { |
|
159 | + if (is_array($this->children)) { |
|
160 | 160 | |
161 | - foreach ( $this->children as $child ) { |
|
161 | + foreach ($this->children as $child) { |
|
162 | 162 | $child->level = $this->level + 1; |
163 | 163 | $child->update_child_levels(); |
164 | 164 | } |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | global $post; |
4 | 4 | |
5 | -$classypost = new ClassyPost( $post ); |
|
5 | +$classypost = new ClassyPost($post); |
|
6 | 6 | |
7 | -Classy::render( 'layout.comments', array( 'post' => $classypost ) ); |
|
7 | +Classy::render('layout.comments', array('post' => $classypost)); |
@@ -16,21 +16,21 @@ discard block |
||
16 | 16 | * |
17 | 17 | * @return array |
18 | 18 | */ |
19 | - public static function get_scope( $view_name = null ) { |
|
19 | + public static function get_scope($view_name = null) { |
|
20 | 20 | |
21 | 21 | $scope = self::get_common_scope(); |
22 | 22 | |
23 | - if ( is_string( $view_name ) ) { |
|
23 | + if (is_string($view_name)) { |
|
24 | 24 | |
25 | - $scope = self::extend_scope( $scope, $view_name ); |
|
25 | + $scope = self::extend_scope($scope, $view_name); |
|
26 | 26 | |
27 | 27 | } else { |
28 | 28 | |
29 | 29 | $request = ClassyHierarchy::get_current_request(); |
30 | 30 | |
31 | - $file = ClassyHierarchy::get_available_file( 'scope', $request ); |
|
31 | + $file = ClassyHierarchy::get_available_file('scope', $request); |
|
32 | 32 | |
33 | - $scope = self::extend_scope( $scope, $file ); |
|
33 | + $scope = self::extend_scope($scope, $file); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | * |
45 | 45 | * @return array |
46 | 46 | */ |
47 | - public static function extend_scope( $scope, $view_name ) { |
|
47 | + public static function extend_scope($scope, $view_name) { |
|
48 | 48 | |
49 | - $scope = array_merge( $scope, self::require_scope( $view_name ) ); |
|
49 | + $scope = array_merge($scope, self::require_scope($view_name)); |
|
50 | 50 | |
51 | 51 | return $scope; |
52 | 52 | |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public static function get_common_scope() { |
62 | 62 | |
63 | - if ( null === self::$common ) { |
|
63 | + if (null === self::$common) { |
|
64 | 64 | |
65 | - self::$common = self::require_scope( 'common' ); |
|
65 | + self::$common = self::require_scope('common'); |
|
66 | 66 | |
67 | 67 | } |
68 | 68 | |
@@ -76,19 +76,19 @@ discard block |
||
76 | 76 | * @param string $filename |
77 | 77 | * @return array |
78 | 78 | */ |
79 | - public static function require_scope( $filename ) { |
|
79 | + public static function require_scope($filename) { |
|
80 | 80 | |
81 | 81 | $_return = array(); |
82 | 82 | |
83 | - $file = ClassyHierarchy::get_file_path( 'scope', $filename ); |
|
83 | + $file = ClassyHierarchy::get_file_path('scope', $filename); |
|
84 | 84 | |
85 | - if ( file_exists( $file ) ) { |
|
85 | + if (file_exists($file)) { |
|
86 | 86 | |
87 | 87 | require $file; |
88 | 88 | |
89 | 89 | } |
90 | 90 | |
91 | - if ( isset( $data ) ) { |
|
91 | + if (isset($data)) { |
|
92 | 92 | |
93 | 93 | $_return = $data; |
94 | 94 |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | * Main constructor function. Requires image id |
13 | 13 | * @param int $pid |
14 | 14 | */ |
15 | - public function __construct( $pid = null ) { |
|
15 | + public function __construct($pid = null) { |
|
16 | 16 | |
17 | 17 | // Checks if image with this id exists |
18 | - if ( null !== $pid && wp_get_attachment_image_src( $pid ) ) { |
|
18 | + if (null !== $pid && wp_get_attachment_image_src($pid)) { |
|
19 | 19 | |
20 | 20 | $this->ID = $pid; |
21 | 21 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | public static function get_default_image() { |
34 | 34 | |
35 | 35 | // You can put here any url |
36 | - return THEME_DIR . '/assets/noimage.png'; |
|
36 | + return THEME_DIR.'/assets/noimage.png'; |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | * @param string $size |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - public function src( $size = 'medium' ) { |
|
45 | + public function src($size = 'medium') { |
|
46 | 46 | |
47 | - if ( $this->ID ) { |
|
47 | + if ($this->ID) { |
|
48 | 48 | |
49 | - $thumb = wp_get_attachment_image_src( $this->ID, $size ); |
|
49 | + $thumb = wp_get_attachment_image_src($this->ID, $size); |
|
50 | 50 | |
51 | 51 | return $thumb[0]; |
52 | 52 |
@@ -73,12 +73,12 @@ discard block |
||
73 | 73 | * Main constructor function. If ID won't be provided we will try to find it, based on your query |
74 | 74 | * @param object/int $post |
75 | 75 | */ |
76 | - public function __construct( $post = null ) { |
|
77 | - if ( is_integer( $post ) ) { |
|
76 | + public function __construct($post = null) { |
|
77 | + if (is_integer($post)) { |
|
78 | 78 | $this->ID = $post; |
79 | 79 | $this->init(); |
80 | - } elseif ( is_a( $post, 'WP_Post' ) ) { |
|
81 | - $this->import( $post ); |
|
80 | + } elseif (is_a($post, 'WP_Post')) { |
|
81 | + $this->import($post); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | protected function init() { |
89 | 89 | $post = $this->get_object(); |
90 | 90 | |
91 | - if ( is_a( $post, 'WP_Post' ) ) { |
|
92 | - $this->import( $post ); |
|
91 | + if (is_a($post, 'WP_Post')) { |
|
92 | + $this->import($post); |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | |
102 | 102 | public function get_object() { |
103 | - $object = get_post( $this->ID ); |
|
103 | + $object = get_post($this->ID); |
|
104 | 104 | |
105 | 105 | return $object; |
106 | 106 | } |
@@ -111,10 +111,10 @@ discard block |
||
111 | 111 | * @return boolean |
112 | 112 | */ |
113 | 113 | public function can_edit() { |
114 | - if ( ! function_exists( 'current_user_can' ) ) { |
|
114 | + if (!function_exists('current_user_can')) { |
|
115 | 115 | return false; |
116 | 116 | } |
117 | - if ( current_user_can( 'edit_post', $this->ID ) ) { |
|
117 | + if (current_user_can('edit_post', $this->ID)) { |
|
118 | 118 | return true; |
119 | 119 | } |
120 | 120 | return false; |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * @return string |
127 | 127 | */ |
128 | 128 | public function get_edit_url() { |
129 | - if ( $this->can_edit() ) { |
|
130 | - return get_edit_post_link( $this->ID ); |
|
129 | + if ($this->can_edit()) { |
|
130 | + return get_edit_post_link($this->ID); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | 'fields' => 'ids', |
150 | 150 | ); |
151 | 151 | |
152 | - $images = get_children( $attrs ); |
|
152 | + $images = get_children($attrs); |
|
153 | 153 | |
154 | - if ( ! count( $images ) ) { |
|
154 | + if (!count($images)) { |
|
155 | 155 | return false; |
156 | 156 | } |
157 | 157 | |
@@ -170,11 +170,11 @@ discard block |
||
170 | 170 | |
171 | 171 | $images = $this->get_attached_images(); |
172 | 172 | |
173 | - if ( $images ) { |
|
173 | + if ($images) { |
|
174 | 174 | |
175 | - foreach ( $images as $image_id ) { |
|
175 | + foreach ($images as $image_id) { |
|
176 | 176 | |
177 | - $_return[] = new ClassyImage( $image_id ); |
|
177 | + $_return[] = new ClassyImage($image_id); |
|
178 | 178 | |
179 | 179 | } |
180 | 180 | } |
@@ -201,13 +201,13 @@ discard block |
||
201 | 201 | 'fields' => 'ids', |
202 | 202 | ); |
203 | 203 | |
204 | - $images = get_children( $attrs ); |
|
204 | + $images = get_children($attrs); |
|
205 | 205 | |
206 | - if ( ! count( $images ) ) { |
|
206 | + if (!count($images)) { |
|
207 | 207 | return false; |
208 | 208 | } |
209 | 209 | |
210 | - $images = array_values( $images ); |
|
210 | + $images = array_values($images); |
|
211 | 211 | |
212 | 212 | return $images[0]; |
213 | 213 | |
@@ -223,8 +223,8 @@ discard block |
||
223 | 223 | |
224 | 224 | $image_id = $this->get_first_attached_image_id(); |
225 | 225 | |
226 | - if ( $image_id ) { |
|
227 | - return new ClassyImage( $image_id ); |
|
226 | + if ($image_id) { |
|
227 | + return new ClassyImage($image_id); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | return new ClassyImage(); |
@@ -238,12 +238,12 @@ discard block |
||
238 | 238 | */ |
239 | 239 | public function thumbnail() { |
240 | 240 | |
241 | - if ( function_exists( 'get_post_thumbnail_id' ) ) { |
|
242 | - $image_id = get_post_thumbnail_id( $this->ID ); |
|
241 | + if (function_exists('get_post_thumbnail_id')) { |
|
242 | + $image_id = get_post_thumbnail_id($this->ID); |
|
243 | 243 | |
244 | - if ( $image_id ) { |
|
244 | + if ($image_id) { |
|
245 | 245 | |
246 | - return new ClassyImage( $image_id ); |
|
246 | + return new ClassyImage($image_id); |
|
247 | 247 | |
248 | 248 | } |
249 | 249 | } |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | * @return string |
260 | 260 | */ |
261 | 261 | public function get_title() { |
262 | - return apply_filters( 'the_title', $this->post_title, $this->ID ); |
|
262 | + return apply_filters('the_title', $this->post_title, $this->ID); |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | /** |
@@ -278,24 +278,24 @@ discard block |
||
278 | 278 | * @param integer $page Page number, in case our post has <!--nextpage--> tags |
279 | 279 | * @return string Post content |
280 | 280 | */ |
281 | - public function get_content( $page = 0 ) { |
|
282 | - if ( 0 === absint( $page ) && $this->post_content ) { |
|
281 | + public function get_content($page = 0) { |
|
282 | + if (0 === absint($page) && $this->post_content) { |
|
283 | 283 | return $this->post_content; |
284 | 284 | } |
285 | 285 | |
286 | 286 | $content = $this->post_content; |
287 | 287 | |
288 | - if ( $page ) { |
|
289 | - $contents = explode( '<!--nextpage-->', $content ); |
|
288 | + if ($page) { |
|
289 | + $contents = explode('<!--nextpage-->', $content); |
|
290 | 290 | |
291 | 291 | $page--; |
292 | 292 | |
293 | - if ( count( $contents ) > $page ) { |
|
294 | - $content = $contents[ $page ]; |
|
293 | + if (count($contents) > $page) { |
|
294 | + $content = $contents[$page]; |
|
295 | 295 | } |
296 | 296 | } |
297 | 297 | |
298 | - $content = apply_filters( 'the_content', ($content) ); |
|
298 | + $content = apply_filters('the_content', ($content)); |
|
299 | 299 | |
300 | 300 | return $content; |
301 | 301 | } |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * @return object |
317 | 317 | */ |
318 | 318 | public function get_post_type() { |
319 | - return get_post_type_object( $this->post_type ); |
|
319 | + return get_post_type_object($this->post_type); |
|
320 | 320 | } |
321 | 321 | |
322 | 322 | /** |
@@ -325,11 +325,11 @@ discard block |
||
325 | 325 | * @return string |
326 | 326 | */ |
327 | 327 | public function get_permalink() { |
328 | - if ( isset( $this->permalink ) ) { |
|
328 | + if (isset($this->permalink)) { |
|
329 | 329 | return $this->permalink; |
330 | 330 | } |
331 | 331 | |
332 | - $this->permalink = get_permalink( $this->ID ); |
|
332 | + $this->permalink = get_permalink($this->ID); |
|
333 | 333 | |
334 | 334 | return $this->permalink; |
335 | 335 | } |
@@ -355,84 +355,84 @@ discard block |
||
355 | 355 | * @param boolean $strip Should we strip tags? |
356 | 356 | * @return string Post preview |
357 | 357 | */ |
358 | - public function get_preview( $len = 50, $force = false, $readmore = 'Read More', $strip = true ) { |
|
358 | + public function get_preview($len = 50, $force = false, $readmore = 'Read More', $strip = true) { |
|
359 | 359 | $text = ''; |
360 | 360 | $trimmed = false; |
361 | 361 | |
362 | - if ( isset( $this->post_excerpt ) && strlen( $this->post_excerpt ) ) { |
|
362 | + if (isset($this->post_excerpt) && strlen($this->post_excerpt)) { |
|
363 | 363 | |
364 | - if ( $force ) { |
|
365 | - $text = ClassyHelper::trim_words( $this->post_excerpt, $len, false ); |
|
364 | + if ($force) { |
|
365 | + $text = ClassyHelper::trim_words($this->post_excerpt, $len, false); |
|
366 | 366 | $trimmed = true; |
367 | 367 | } else { |
368 | 368 | $text = $this->post_excerpt; |
369 | 369 | } |
370 | 370 | } |
371 | 371 | |
372 | - if ( ! strlen( $text ) && preg_match( '/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches ) ) { |
|
372 | + if (!strlen($text) && preg_match('/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches)) { |
|
373 | 373 | |
374 | - $pieces = explode( $readmore_matches[0], $this->post_content ); |
|
374 | + $pieces = explode($readmore_matches[0], $this->post_content); |
|
375 | 375 | $text = $pieces[0]; |
376 | 376 | |
377 | - if ( $force ) { |
|
378 | - $text = ClassyHelper::trim_words( $text, $len, false ); |
|
377 | + if ($force) { |
|
378 | + $text = ClassyHelper::trim_words($text, $len, false); |
|
379 | 379 | $trimmed = true; |
380 | 380 | } |
381 | 381 | |
382 | - $text = do_shortcode( $text ); |
|
382 | + $text = do_shortcode($text); |
|
383 | 383 | |
384 | 384 | } |
385 | 385 | |
386 | - if ( ! strlen( $text ) ) { |
|
386 | + if (!strlen($text)) { |
|
387 | 387 | |
388 | - $text = ClassyHelper::trim_words( $this->get_content(), $len, false ); |
|
388 | + $text = ClassyHelper::trim_words($this->get_content(), $len, false); |
|
389 | 389 | $trimmed = true; |
390 | 390 | |
391 | 391 | } |
392 | 392 | |
393 | - if ( ! strlen( trim( $text ) ) ) { |
|
393 | + if (!strlen(trim($text))) { |
|
394 | 394 | |
395 | - return trim( $text ); |
|
395 | + return trim($text); |
|
396 | 396 | |
397 | 397 | } |
398 | 398 | |
399 | - if ( $strip ) { |
|
399 | + if ($strip) { |
|
400 | 400 | |
401 | - $text = trim( strip_tags( $text ) ); |
|
401 | + $text = trim(strip_tags($text)); |
|
402 | 402 | |
403 | 403 | } |
404 | 404 | |
405 | - if ( strlen( $text ) ) { |
|
405 | + if (strlen($text)) { |
|
406 | 406 | |
407 | - $text = trim( $text ); |
|
408 | - $last = $text[ strlen( $text ) - 1 ]; |
|
407 | + $text = trim($text); |
|
408 | + $last = $text[strlen($text) - 1]; |
|
409 | 409 | |
410 | - if ( '.' !== $last && $trimmed ) { |
|
410 | + if ('.' !== $last && $trimmed) { |
|
411 | 411 | $text .= ' … '; |
412 | 412 | } |
413 | 413 | |
414 | - if ( ! $strip ) { |
|
415 | - $last_p_tag = strrpos( $text, '</p>' ); |
|
416 | - if ( false !== $last_p_tag ) { |
|
417 | - $text = substr( $text, 0, $last_p_tag ); |
|
414 | + if (!$strip) { |
|
415 | + $last_p_tag = strrpos($text, '</p>'); |
|
416 | + if (false !== $last_p_tag) { |
|
417 | + $text = substr($text, 0, $last_p_tag); |
|
418 | 418 | } |
419 | - if ( '.' !== $last && $trimmed ) { |
|
419 | + if ('.' !== $last && $trimmed) { |
|
420 | 420 | $text .= ' … '; |
421 | 421 | } |
422 | 422 | } |
423 | 423 | |
424 | - if ( $readmore && isset( $readmore_matches ) && ! empty( $readmore_matches[1] ) ) { |
|
425 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore_matches[1] ) . '</a>'; |
|
426 | - } elseif ( $readmore ) { |
|
427 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore ) . '</a>'; |
|
424 | + if ($readmore && isset($readmore_matches) && !empty($readmore_matches[1])) { |
|
425 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore_matches[1]).'</a>'; |
|
426 | + } elseif ($readmore) { |
|
427 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore).'</a>'; |
|
428 | 428 | } |
429 | 429 | |
430 | - if ( ! $strip ) { |
|
430 | + if (!$strip) { |
|
431 | 431 | $text .= '</p>'; |
432 | 432 | } |
433 | 433 | } |
434 | 434 | |
435 | - return trim( $text ); |
|
435 | + return trim($text); |
|
436 | 436 | } |
437 | 437 | |
438 | 438 | /** |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | * |
444 | 444 | * @return array |
445 | 445 | */ |
446 | - public function get_comments( $status = 'approve', $order = 'DESC' ) { |
|
446 | + public function get_comments($status = 'approve', $order = 'DESC') { |
|
447 | 447 | |
448 | 448 | $_return = array(); |
449 | 449 | |
@@ -453,26 +453,26 @@ discard block |
||
453 | 453 | 'order' => $order, |
454 | 454 | ); |
455 | 455 | |
456 | - $comments = get_comments( $args ); |
|
456 | + $comments = get_comments($args); |
|
457 | 457 | |
458 | - foreach ( $comments as $comment ) { |
|
458 | + foreach ($comments as $comment) { |
|
459 | 459 | |
460 | - $_return[ $comment->comment_ID ] = new ClassyComment( $comment ); |
|
460 | + $_return[$comment->comment_ID] = new ClassyComment($comment); |
|
461 | 461 | |
462 | 462 | } |
463 | 463 | |
464 | - foreach ( $_return as $key => $comment ) { |
|
464 | + foreach ($_return as $key => $comment) { |
|
465 | 465 | |
466 | - if ( $comment->has_parent() ) { |
|
466 | + if ($comment->has_parent()) { |
|
467 | 467 | |
468 | - $_return[ $comment->comment_parent ]->add_child( $comment ); |
|
468 | + $_return[$comment->comment_parent]->add_child($comment); |
|
469 | 469 | |
470 | - unset( $_return[ $key ] ); |
|
470 | + unset($_return[$key]); |
|
471 | 471 | |
472 | 472 | } |
473 | 473 | } |
474 | 474 | |
475 | - return array_values( $_return ); |
|
475 | + return array_values($_return); |
|
476 | 476 | |
477 | 477 | } |
478 | 478 | } |
@@ -8,23 +8,23 @@ discard block |
||
8 | 8 | * @param array|boolean $args |
9 | 9 | * @return object WP_Query |
10 | 10 | */ |
11 | - public static function find_query( $args = false ) { |
|
11 | + public static function find_query($args = false) { |
|
12 | 12 | |
13 | 13 | $default_args = array(); |
14 | 14 | |
15 | - if ( ! $args ) { |
|
15 | + if (!$args) { |
|
16 | 16 | |
17 | 17 | return self::get_current_query(); |
18 | 18 | |
19 | - } elseif ( is_array( $args ) ) { |
|
19 | + } elseif (is_array($args)) { |
|
20 | 20 | |
21 | - $args = array_merge( $default_args, $args ); |
|
21 | + $args = array_merge($default_args, $args); |
|
22 | 22 | |
23 | - return new WP_Query( $args ); |
|
23 | + return new WP_Query($args); |
|
24 | 24 | |
25 | 25 | } else { |
26 | 26 | |
27 | - return new WP_Query( $default_args ); |
|
27 | + return new WP_Query($default_args); |
|
28 | 28 | |
29 | 29 | } |
30 | 30 | } |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | |
39 | 39 | global $wp_query; |
40 | 40 | |
41 | - $query =& $wp_query; |
|
41 | + $query = & $wp_query; |
|
42 | 42 | |
43 | - $query = self::handle_maybe_custom_posts_page( $query ); |
|
43 | + $query = self::handle_maybe_custom_posts_page($query); |
|
44 | 44 | |
45 | 45 | return $query; |
46 | 46 | |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | * @param object $query WP_Query |
53 | 53 | * @return object WP_Query |
54 | 54 | */ |
55 | - private static function handle_maybe_custom_posts_page( $query ) { |
|
55 | + private static function handle_maybe_custom_posts_page($query) { |
|
56 | 56 | |
57 | - if ( $custom_posts_page = get_option( 'page_for_posts' ) ) { |
|
57 | + if ($custom_posts_page = get_option('page_for_posts')) { |
|
58 | 58 | |
59 | - if ( isset( $query->query['p'] ) && absint( $query->query['p'] ) === absint( $custom_posts_page ) ) { |
|
59 | + if (isset($query->query['p']) && absint($query->query['p']) === absint($custom_posts_page)) { |
|
60 | 60 | |
61 | - return new WP_Query( array( 'post_type' => 'post' ) ); |
|
61 | + return new WP_Query(array('post_type' => 'post')); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | } |
@@ -23,25 +23,25 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @param string $arg it can be menu id, slug or full name |
25 | 25 | */ |
26 | - public function __construct( $arg = null ) { |
|
26 | + public function __construct($arg = null) { |
|
27 | 27 | |
28 | - if ( is_numeric( $arg ) && 0 !== absint( $arg ) ) { |
|
28 | + if (is_numeric($arg) && 0 !== absint($arg)) { |
|
29 | 29 | |
30 | - $menu_id = $this->check_menu_id( $arg ); |
|
30 | + $menu_id = $this->check_menu_id($arg); |
|
31 | 31 | |
32 | - } elseif ( is_string( $arg ) ) { |
|
32 | + } elseif (is_string($arg)) { |
|
33 | 33 | |
34 | - $menu_id = $this->get_menu_id_by_name( $arg ); |
|
34 | + $menu_id = $this->get_menu_id_by_name($arg); |
|
35 | 35 | |
36 | 36 | } |
37 | 37 | |
38 | - if ( ! isset( $menu_id ) ) { |
|
38 | + if (!isset($menu_id)) { |
|
39 | 39 | |
40 | 40 | $menu_id = $this->get_first_menu_id(); |
41 | 41 | |
42 | 42 | } |
43 | 43 | |
44 | - if ( $menu_id ) { |
|
44 | + if ($menu_id) { |
|
45 | 45 | |
46 | 46 | $this->ID = $menu_id; |
47 | 47 | |
@@ -60,22 +60,22 @@ discard block |
||
60 | 60 | |
61 | 61 | $_return = array(); |
62 | 62 | |
63 | - $items = wp_get_nav_menu_items( $this->ID ); |
|
63 | + $items = wp_get_nav_menu_items($this->ID); |
|
64 | 64 | |
65 | - foreach ( $items as $item ) { |
|
65 | + foreach ($items as $item) { |
|
66 | 66 | |
67 | - $_return[ $item->ID ] = new ClassyMenuItem( $item ); |
|
67 | + $_return[$item->ID] = new ClassyMenuItem($item); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Apply nesting |
71 | 71 | |
72 | - foreach ( $_return as $item_id => $item ) { |
|
72 | + foreach ($_return as $item_id => $item) { |
|
73 | 73 | |
74 | - if ( isset( $item->menu_item_parent ) && $item->menu_item_parent && isset( $_return[ $item->menu_item_parent ] ) ) { |
|
74 | + if (isset($item->menu_item_parent) && $item->menu_item_parent && isset($_return[$item->menu_item_parent])) { |
|
75 | 75 | |
76 | - $_return[ $item->menu_item_parent ]->add_child( $item ); |
|
76 | + $_return[$item->menu_item_parent]->add_child($item); |
|
77 | 77 | |
78 | - unset( $_return[ $item_id ] ); |
|
78 | + unset($_return[$item_id]); |
|
79 | 79 | |
80 | 80 | } |
81 | 81 | } |
@@ -91,11 +91,11 @@ discard block |
||
91 | 91 | */ |
92 | 92 | protected function get_first_menu_id() { |
93 | 93 | |
94 | - $menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) ); |
|
94 | + $menus = get_terms('nav_menu', array('hide_empty' => true)); |
|
95 | 95 | |
96 | - if ( is_array( $menus ) && count( $menus ) ) { |
|
96 | + if (is_array($menus) && count($menus)) { |
|
97 | 97 | |
98 | - if ( isset( $menus[0]->term_id ) ) { |
|
98 | + if (isset($menus[0]->term_id)) { |
|
99 | 99 | |
100 | 100 | return $menus[0]->term_id; |
101 | 101 | |
@@ -112,15 +112,15 @@ discard block |
||
112 | 112 | * @param int $menu_id |
113 | 113 | * @return int|boolean |
114 | 114 | */ |
115 | - protected function check_menu_id( $menu_id ) { |
|
115 | + protected function check_menu_id($menu_id) { |
|
116 | 116 | |
117 | - $menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) ); |
|
117 | + $menus = get_terms('nav_menu', array('hide_empty' => true)); |
|
118 | 118 | |
119 | - if ( is_array( $menus ) && count( $menus ) ) { |
|
119 | + if (is_array($menus) && count($menus)) { |
|
120 | 120 | |
121 | - foreach ( $menus as $menu ) { |
|
121 | + foreach ($menus as $menu) { |
|
122 | 122 | |
123 | - if ( absint( $menu->term_id ) === absint( $menu_id ) ) { |
|
123 | + if (absint($menu->term_id) === absint($menu_id)) { |
|
124 | 124 | |
125 | 125 | return $menu_id; |
126 | 126 | |
@@ -138,17 +138,17 @@ discard block |
||
138 | 138 | * @param string $slug |
139 | 139 | * @return int |
140 | 140 | */ |
141 | - protected function get_menu_id_by_name( $slug = null ) { |
|
141 | + protected function get_menu_id_by_name($slug = null) { |
|
142 | 142 | |
143 | - if ( $slug && is_string( $slug ) ) { |
|
143 | + if ($slug && is_string($slug)) { |
|
144 | 144 | |
145 | - $menu_id = get_term_by( 'slug', $slug, 'nav_menu' ); |
|
145 | + $menu_id = get_term_by('slug', $slug, 'nav_menu'); |
|
146 | 146 | |
147 | - if ( $menu_id ) { return $menu_id; } |
|
147 | + if ($menu_id) { return $menu_id; } |
|
148 | 148 | |
149 | - $menu_id = get_term_by( 'name', $slug, 'nav_menu' ); |
|
149 | + $menu_id = get_term_by('name', $slug, 'nav_menu'); |
|
150 | 150 | |
151 | - if ( $menu_id ) { return $menu_id; } |
|
151 | + if ($menu_id) { return $menu_id; } |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | return false; |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | * |
81 | 81 | * @param WP_Comment $item |
82 | 82 | */ |
83 | - public function __construct( $item ) { |
|
83 | + public function __construct($item) { |
|
84 | 84 | |
85 | - if ( is_a( $item, 'WP_Comment' ) ) { |
|
85 | + if (is_a($item, 'WP_Comment')) { |
|
86 | 86 | |
87 | - $this->import( $item ); |
|
87 | + $this->import($item); |
|
88 | 88 | |
89 | 89 | } |
90 | 90 | |
@@ -97,15 +97,15 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function author() { |
99 | 99 | |
100 | - if ( $this->user_id ) { |
|
100 | + if ($this->user_id) { |
|
101 | 101 | |
102 | - return new ClassyUser( $this->user_id ); |
|
102 | + return new ClassyUser($this->user_id); |
|
103 | 103 | |
104 | 104 | } else { |
105 | 105 | |
106 | - $author = new ClassyUser( 0 ); |
|
106 | + $author = new ClassyUser(0); |
|
107 | 107 | |
108 | - if ( isset( $this->comment_author ) && $this->comment_author ) { |
|
108 | + if (isset($this->comment_author) && $this->comment_author) { |
|
109 | 109 | |
110 | 110 | $author->name = $this->comment_author; |
111 | 111 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * @return string |
123 | 123 | */ |
124 | 124 | public function content() { |
125 | - return apply_filters( 'get_comment_text ', $this->comment_content ); |
|
125 | + return apply_filters('get_comment_text ', $this->comment_content); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -140,11 +140,11 @@ discard block |
||
140 | 140 | * @param string $date_format |
141 | 141 | * @return string |
142 | 142 | */ |
143 | - public function date( $date_format = '' ) { |
|
144 | - $df = $date_format ? $date_format : get_option( 'date_format' ); |
|
145 | - $the_date = (string) mysql2date( $df, $this->comment_date ); |
|
143 | + public function date($date_format = '') { |
|
144 | + $df = $date_format ? $date_format : get_option('date_format'); |
|
145 | + $the_date = (string) mysql2date($df, $this->comment_date); |
|
146 | 146 | |
147 | - return apply_filters( 'get_comment_date ', $the_date, $df ); |
|
147 | + return apply_filters('get_comment_date ', $the_date, $df); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -163,26 +163,26 @@ discard block |
||
163 | 163 | * @param string $default |
164 | 164 | * @return string |
165 | 165 | */ |
166 | - public function avatar( $size = 92, $default = '' ) { |
|
166 | + public function avatar($size = 92, $default = '') { |
|
167 | 167 | |
168 | - if ( ! get_option( 'show_avatars' ) ) { |
|
168 | + if (!get_option('show_avatars')) { |
|
169 | 169 | return false; |
170 | 170 | } |
171 | 171 | |
172 | - if ( ! is_numeric( $size ) ) { $size = '92'; } |
|
172 | + if (!is_numeric($size)) { $size = '92'; } |
|
173 | 173 | |
174 | 174 | $email = $this->get_avatar_email(); |
175 | 175 | $email_hash = ''; |
176 | 176 | |
177 | - if ( ! empty( $email ) ) { |
|
178 | - $email_hash = md5( strtolower( trim( $email ) ) ); |
|
177 | + if (!empty($email)) { |
|
178 | + $email_hash = md5(strtolower(trim($email))); |
|
179 | 179 | } |
180 | 180 | |
181 | - $host = $this->get_avatar_host( $email_hash ); |
|
182 | - $default = $this->get_default_avatar( $default, $email, $size, $host ); |
|
181 | + $host = $this->get_avatar_host($email_hash); |
|
182 | + $default = $this->get_default_avatar($default, $email, $size, $host); |
|
183 | 183 | |
184 | - if ( ! empty( $email ) ) { |
|
185 | - $avatar = $this->get_avatar_url( $default, $host, $email_hash, $size ); |
|
184 | + if (!empty($email)) { |
|
185 | + $avatar = $this->get_avatar_url($default, $host, $email_hash, $size); |
|
186 | 186 | } else { |
187 | 187 | $avatar = $default; |
188 | 188 | } |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | protected function get_avatar_email() { |
200 | 200 | |
201 | 201 | $id = (int) $this->user_id; |
202 | - $user = get_userdata( $id ); |
|
202 | + $user = get_userdata($id); |
|
203 | 203 | |
204 | - if ( $user ) { |
|
204 | + if ($user) { |
|
205 | 205 | $email = $user->user_email; |
206 | 206 | } else { |
207 | 207 | $email = $this->comment_author_email; |
@@ -220,32 +220,32 @@ discard block |
||
220 | 220 | * @param string $host |
221 | 221 | * @return string |
222 | 222 | */ |
223 | - protected function get_default_avatar( $default, $email, $size, $host ) { |
|
223 | + protected function get_default_avatar($default, $email, $size, $host) { |
|
224 | 224 | |
225 | - if ( '/' === substr( $default, 0, 1 ) ) { |
|
226 | - $default = home_url() . $default; |
|
225 | + if ('/' === substr($default, 0, 1)) { |
|
226 | + $default = home_url().$default; |
|
227 | 227 | } |
228 | 228 | |
229 | - if ( empty( $default ) ) { |
|
230 | - $avatar_default = get_option( 'avatar_default' ); |
|
231 | - if ( empty( $avatar_default ) ) { |
|
229 | + if (empty($default)) { |
|
230 | + $avatar_default = get_option('avatar_default'); |
|
231 | + if (empty($avatar_default)) { |
|
232 | 232 | $default = 'mystery'; |
233 | 233 | } else { |
234 | 234 | $default = $avatar_default; |
235 | 235 | } |
236 | 236 | } |
237 | 237 | |
238 | - if ( 'mystery' === $default ) { |
|
239 | - $default = $host . '/avatar/ad516503a11cd5ca435acc9bb6523536?s=' . $size; |
|
238 | + if ('mystery' === $default) { |
|
239 | + $default = $host.'/avatar/ad516503a11cd5ca435acc9bb6523536?s='.$size; |
|
240 | 240 | // ad516503a11cd5ca435acc9bb6523536 == md5('[email protected]') |
241 | - } else if ( 'blank' === $default ) { |
|
242 | - $default = $email ? 'blank' : includes_url( 'images/blank.gif' ); |
|
243 | - } else if ( ! empty( $email ) && 'gravatar_default' === $default ) { |
|
241 | + } else if ('blank' === $default) { |
|
242 | + $default = $email ? 'blank' : includes_url('images/blank.gif'); |
|
243 | + } else if (!empty($email) && 'gravatar_default' === $default) { |
|
244 | 244 | $default = ''; |
245 | - } else if ( 'gravatar_default' === $default ) { |
|
246 | - $default = $host . '/avatar/?s=' . $size; |
|
247 | - } else if ( empty( $email ) && ! strstr( $default, 'http://' ) ) { |
|
248 | - $default = $host . '/avatar/?d=' . $default . '&s=' . $size; |
|
245 | + } else if ('gravatar_default' === $default) { |
|
246 | + $default = $host.'/avatar/?s='.$size; |
|
247 | + } else if (empty($email) && !strstr($default, 'http://')) { |
|
248 | + $default = $host.'/avatar/?d='.$default.'&s='.$size; |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | return $default; |
@@ -258,13 +258,13 @@ discard block |
||
258 | 258 | * @param string $email_hash |
259 | 259 | * @return string |
260 | 260 | */ |
261 | - protected function get_avatar_host( $email_hash ) { |
|
261 | + protected function get_avatar_host($email_hash) { |
|
262 | 262 | |
263 | - if ( is_ssl() ) { |
|
263 | + if (is_ssl()) { |
|
264 | 264 | $host = 'https://secure.gravatar.com'; |
265 | 265 | } else { |
266 | - if ( ! empty( $email_hash ) ) { |
|
267 | - $host = sprintf( 'http://%d.gravatar.com', (hexdec( $email_hash[0] ) % 2) ); |
|
266 | + if (!empty($email_hash)) { |
|
267 | + $host = sprintf('http://%d.gravatar.com', (hexdec($email_hash[0]) % 2)); |
|
268 | 268 | } else { |
269 | 269 | $host = 'http://0.gravatar.com'; |
270 | 270 | } |
@@ -283,16 +283,16 @@ discard block |
||
283 | 283 | * @param int $size |
284 | 284 | * @return string |
285 | 285 | */ |
286 | - protected function get_avatar_url( $default, $host, $email_hash, $size ) { |
|
286 | + protected function get_avatar_url($default, $host, $email_hash, $size) { |
|
287 | 287 | |
288 | - $_return = $host . '/avatar/' . $email_hash . '?s=' . $size . '&d=' . urlencode( $default ); |
|
289 | - $rating = get_option( 'avatar_rating' ); |
|
288 | + $_return = $host.'/avatar/'.$email_hash.'?s='.$size.'&d='.urlencode($default); |
|
289 | + $rating = get_option('avatar_rating'); |
|
290 | 290 | |
291 | - if ( ! empty( $rating ) ) { |
|
292 | - $_return .= '&r=' . $rating; |
|
291 | + if (!empty($rating)) { |
|
292 | + $_return .= '&r='.$rating; |
|
293 | 293 | } |
294 | 294 | |
295 | - return str_replace( '&', '&', esc_url( $_return ) ); |
|
295 | + return str_replace('&', '&', esc_url($_return)); |
|
296 | 296 | |
297 | 297 | } |
298 | 298 | |
@@ -301,12 +301,12 @@ discard block |
||
301 | 301 | * |
302 | 302 | * @param ClassyComment $comment |
303 | 303 | */ |
304 | - public function add_child( $comment ) { |
|
304 | + public function add_child($comment) { |
|
305 | 305 | |
306 | 306 | $this->children[] = $comment; |
307 | 307 | $item->level = $this->level + 1; |
308 | 308 | |
309 | - if ( $item->children ) { |
|
309 | + if ($item->children) { |
|
310 | 310 | $this->update_child_levels(); |
311 | 311 | } |
312 | 312 | |
@@ -320,9 +320,9 @@ discard block |
||
320 | 320 | */ |
321 | 321 | protected function update_child_levels() { |
322 | 322 | |
323 | - if ( is_array( $this->children ) ) { |
|
323 | + if (is_array($this->children)) { |
|
324 | 324 | |
325 | - foreach ( $this->children as $child ) { |
|
325 | + foreach ($this->children as $child) { |
|
326 | 326 | $child->level = $this->level + 1; |
327 | 327 | $child->update_child_levels(); |
328 | 328 | } |