@@ -209,7 +209,7 @@ |
||
209 | 209 | * |
210 | 210 | * @param array $array Array to be converted. |
211 | 211 | * |
212 | - * @return object |
|
212 | + * @return \stdClass |
|
213 | 213 | */ |
214 | 214 | public static function array_to_object( $array ) { |
215 | 215 | $obj = new \stdClass; |
@@ -22,41 +22,41 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @return string Trimmed text. |
24 | 24 | */ |
25 | - public static function trim_words( $text, $num_words = 55, $more = null, $allowed_tags = 'p a span b i br blockquote' ) { |
|
26 | - if ( null === $more ) { |
|
27 | - $more = __( '…' ); |
|
25 | + public static function trim_words($text, $num_words = 55, $more = null, $allowed_tags = 'p a span b i br blockquote') { |
|
26 | + if (null === $more) { |
|
27 | + $more = __('…'); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | $original_text = $text; |
31 | 31 | $allowed_tag_string = ''; |
32 | 32 | |
33 | - foreach ( explode( ' ', $allowed_tags ) as $tag ) { |
|
34 | - $allowed_tag_string .= '<' . $tag . '>'; |
|
33 | + foreach (explode(' ', $allowed_tags) as $tag) { |
|
34 | + $allowed_tag_string .= '<'.$tag.'>'; |
|
35 | 35 | } |
36 | 36 | |
37 | - $text = strip_tags( $text, $allowed_tag_string ); |
|
37 | + $text = strip_tags($text, $allowed_tag_string); |
|
38 | 38 | |
39 | - if ( 'characters' === _x( 'words', 'word count: words or characters?' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) { |
|
40 | - $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' ); |
|
41 | - preg_match_all( '/./u', $text, $words_array ); |
|
42 | - $words_array = array_slice( $words_array[0], 0, $num_words + 1 ); |
|
39 | + if ('characters' === _x('words', 'word count: words or characters?') && preg_match('/^utf\-?8$/i', get_option('blog_charset'))) { |
|
40 | + $text = trim(preg_replace("/[\n\r\t ]+/", ' ', $text), ' '); |
|
41 | + preg_match_all('/./u', $text, $words_array); |
|
42 | + $words_array = array_slice($words_array[0], 0, $num_words + 1); |
|
43 | 43 | $sep = ''; |
44 | 44 | } else { |
45 | - $words_array = preg_split( "/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY ); |
|
45 | + $words_array = preg_split("/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY); |
|
46 | 46 | $sep = ' '; |
47 | 47 | } |
48 | 48 | |
49 | - if ( count( $words_array ) > $num_words ) { |
|
50 | - array_pop( $words_array ); |
|
51 | - $text = implode( $sep, $words_array ); |
|
52 | - $text = $text . $more; |
|
49 | + if (count($words_array) > $num_words) { |
|
50 | + array_pop($words_array); |
|
51 | + $text = implode($sep, $words_array); |
|
52 | + $text = $text.$more; |
|
53 | 53 | } else { |
54 | - $text = implode( $sep, $words_array ); |
|
54 | + $text = implode($sep, $words_array); |
|
55 | 55 | } |
56 | 56 | |
57 | - $text = self::close_tags( $text ); |
|
57 | + $text = self::close_tags($text); |
|
58 | 58 | |
59 | - return apply_filters( 'wp_trim_words', $text, $num_words, $more, $original_text ); |
|
59 | + return apply_filters('wp_trim_words', $text, $num_words, $more, $original_text); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -66,36 +66,36 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @return string |
68 | 68 | */ |
69 | - public static function close_tags( $html ) { |
|
69 | + public static function close_tags($html) { |
|
70 | 70 | // Put all opened tags into an array. |
71 | - preg_match_all( '#<([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result ); |
|
71 | + preg_match_all('#<([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result); |
|
72 | 72 | |
73 | 73 | $openedtags = $result[1]; |
74 | 74 | |
75 | 75 | // Put all closed tags into an array. |
76 | - preg_match_all( '#</([a-z]+)>#iU', $html, $result ); |
|
76 | + preg_match_all('#</([a-z]+)>#iU', $html, $result); |
|
77 | 77 | |
78 | 78 | $closedtags = $result[1]; |
79 | - $len_opened = count( $openedtags ); |
|
79 | + $len_opened = count($openedtags); |
|
80 | 80 | |
81 | 81 | // All tags are closed. |
82 | - if ( count( $closedtags ) === $len_opened ) { |
|
82 | + if (count($closedtags) === $len_opened) { |
|
83 | 83 | return $html; |
84 | 84 | } |
85 | 85 | |
86 | - $openedtags = array_reverse( $openedtags ); |
|
86 | + $openedtags = array_reverse($openedtags); |
|
87 | 87 | |
88 | 88 | // Close tags. |
89 | - for ( $i = 0; $i < $len_opened; $i++ ) { |
|
90 | - if ( ! in_array( $openedtags[ $i ], $closedtags, true ) ) { |
|
91 | - $html .= '</' . $openedtags[ $i ] . '>'; |
|
89 | + for ($i = 0; $i < $len_opened; $i++) { |
|
90 | + if (!in_array($openedtags[$i], $closedtags, true)) { |
|
91 | + $html .= '</'.$openedtags[$i].'>'; |
|
92 | 92 | } else { |
93 | - unset( $closedtags[ array_search( $openedtags[ $i ], $closedtags ) ] ); |
|
93 | + unset($closedtags[array_search($openedtags[$i], $closedtags)]); |
|
94 | 94 | } |
95 | 95 | } |
96 | 96 | |
97 | - $html = str_replace( array( '</br>', '</hr>', '</wbr>' ), '', $html ); |
|
98 | - $html = str_replace( array( '<br>', '<hr>', '<wbr>' ), array( '<br />', '<hr />', '<wbr />' ), $html ); |
|
97 | + $html = str_replace(array('</br>', '</hr>', '</wbr>'), '', $html); |
|
98 | + $html = str_replace(array('<br>', '<hr>', '<wbr>'), array('<br />', '<hr />', '<wbr />'), $html); |
|
99 | 99 | |
100 | 100 | return $html; |
101 | 101 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * |
108 | 108 | * @return array |
109 | 109 | */ |
110 | - public static function paginate_links( $args = '' ) { |
|
110 | + public static function paginate_links($args = '') { |
|
111 | 111 | $defaults = array( |
112 | 112 | 'base' => '%_%', // Example http://example.com/all_posts.php%_% : %_% is replaced by format (below). |
113 | 113 | 'format' => '?page=%#%', // Example ?page=%#% : %#% is replaced by the page number. |
@@ -115,44 +115,44 @@ discard block |
||
115 | 115 | 'current' => 0, |
116 | 116 | 'show_all' => false, |
117 | 117 | 'prev_next' => true, |
118 | - 'prev_text' => __( '« Previous' ), |
|
119 | - 'next_text' => __( 'Next »' ), |
|
118 | + 'prev_text' => __('« Previous'), |
|
119 | + 'next_text' => __('Next »'), |
|
120 | 120 | 'end_size' => 1, |
121 | 121 | 'mid_size' => 2, |
122 | 122 | 'type' => 'array', |
123 | 123 | 'add_args' => false, // Array of query args to add. |
124 | 124 | 'add_fragment' => '', |
125 | 125 | ); |
126 | - $args = wp_parse_args( $args, $defaults ); |
|
126 | + $args = wp_parse_args($args, $defaults); |
|
127 | 127 | |
128 | 128 | // Who knows what else people pass in $args. |
129 | - $args['total'] = intval( (int) $args['total'] ); |
|
130 | - if ( $args['total'] < 2 ) { |
|
129 | + $args['total'] = intval((int) $args['total']); |
|
130 | + if ($args['total'] < 2) { |
|
131 | 131 | return array(); |
132 | 132 | } |
133 | 133 | $args['current'] = (int) $args['current']; |
134 | 134 | $args['end_size'] = 0 < (int) $args['end_size'] ? (int) $args['end_size'] : 1; // Out of bounds? Make it the default. |
135 | 135 | $args['mid_size'] = 0 <= (int) $args['mid_size'] ? (int) $args['mid_size'] : 2; |
136 | - $args['add_args'] = is_array( $args['add_args'] ) ? $args['add_args'] : false; |
|
136 | + $args['add_args'] = is_array($args['add_args']) ? $args['add_args'] : false; |
|
137 | 137 | $page_links = array(); |
138 | 138 | $dots = false; |
139 | - if ( $args['prev_next'] && $args['current'] && 1 < $args['current'] ) { |
|
140 | - $link = str_replace( '%_%', 2 === absint( $args['current'] ) ? '' : $args['format'], $args['base'] ); |
|
141 | - $link = str_replace( '%#%', $args['current'] - 1, $link ); |
|
142 | - if ( $args['add_args'] ) { |
|
143 | - $link = add_query_arg( $args['add_args'], $link ); |
|
139 | + if ($args['prev_next'] && $args['current'] && 1 < $args['current']) { |
|
140 | + $link = str_replace('%_%', 2 === absint($args['current']) ? '' : $args['format'], $args['base']); |
|
141 | + $link = str_replace('%#%', $args['current'] - 1, $link); |
|
142 | + if ($args['add_args']) { |
|
143 | + $link = add_query_arg($args['add_args'], $link); |
|
144 | 144 | } |
145 | 145 | $link .= $args['add_fragment']; |
146 | - $link = untrailingslashit( $link ); |
|
146 | + $link = untrailingslashit($link); |
|
147 | 147 | $page_links[] = array( |
148 | 148 | 'class' => 'prev page-numbers', |
149 | - 'link' => esc_url( apply_filters( 'paginate_links', $link ) ), |
|
149 | + 'link' => esc_url(apply_filters('paginate_links', $link)), |
|
150 | 150 | 'title' => $args['prev_text'], |
151 | 151 | ); |
152 | 152 | } |
153 | - for ( $n = 1; $n <= $args['total']; $n++ ) { |
|
154 | - $n_display = number_format_i18n( $n ); |
|
155 | - if ( absint( $args['current'] ) === $n ) { |
|
153 | + for ($n = 1; $n <= $args['total']; $n++) { |
|
154 | + $n_display = number_format_i18n($n); |
|
155 | + if (absint($args['current']) === $n) { |
|
156 | 156 | $page_links[] = array( |
157 | 157 | 'class' => 'page-number page-numbers current', |
158 | 158 | 'title' => $n_display, |
@@ -162,42 +162,42 @@ discard block |
||
162 | 162 | ); |
163 | 163 | $dots = true; |
164 | 164 | } else { |
165 | - if ( $args['show_all'] || ( $n <= $args['end_size'] || ( $args['current'] && $n >= $args['current'] - $args['mid_size'] && $n <= $args['current'] + $args['mid_size'] ) || $n > $args['total'] - $args['end_size'] ) ) { |
|
166 | - $link = str_replace( '%_%', 1 === absint( $n ) ? '' : $args['format'], $args['base'] ); |
|
167 | - $link = str_replace( '%#%', $n, $link ); |
|
168 | - $link = trailingslashit( $link ) . ltrim( $args['add_fragment'], '/' ); |
|
169 | - if ( $args['add_args'] ) { |
|
170 | - $link = rtrim( add_query_arg( $args['add_args'], $link ), '/' ); |
|
165 | + if ($args['show_all'] || ($n <= $args['end_size'] || ($args['current'] && $n >= $args['current'] - $args['mid_size'] && $n <= $args['current'] + $args['mid_size']) || $n > $args['total'] - $args['end_size'])) { |
|
166 | + $link = str_replace('%_%', 1 === absint($n) ? '' : $args['format'], $args['base']); |
|
167 | + $link = str_replace('%#%', $n, $link); |
|
168 | + $link = trailingslashit($link).ltrim($args['add_fragment'], '/'); |
|
169 | + if ($args['add_args']) { |
|
170 | + $link = rtrim(add_query_arg($args['add_args'], $link), '/'); |
|
171 | 171 | } |
172 | - $link = str_replace( ' ', '+', $link ); |
|
173 | - $link = untrailingslashit( $link ); |
|
172 | + $link = str_replace(' ', '+', $link); |
|
173 | + $link = untrailingslashit($link); |
|
174 | 174 | $page_links[] = array( |
175 | 175 | 'class' => 'page-number page-numbers', |
176 | - 'link' => esc_url( apply_filters( 'paginate_links', $link ) ), |
|
176 | + 'link' => esc_url(apply_filters('paginate_links', $link)), |
|
177 | 177 | 'title' => $n_display, |
178 | 178 | 'name' => $n_display, |
179 | - 'current' => absint( $args['current'] ) === $n, |
|
179 | + 'current' => absint($args['current']) === $n, |
|
180 | 180 | ); |
181 | 181 | $dots = true; |
182 | - } elseif ( $dots && ! $args['show_all'] ) { |
|
182 | + } elseif ($dots && !$args['show_all']) { |
|
183 | 183 | $page_links[] = array( |
184 | 184 | 'class' => 'dots', |
185 | - 'title' => __( '…' ), |
|
185 | + 'title' => __('…'), |
|
186 | 186 | ); |
187 | 187 | $dots = false; |
188 | 188 | } |
189 | 189 | } |
190 | 190 | } |
191 | - if ( $args['prev_next'] && $args['current'] && ( $args['current'] < $args['total'] || -1 === intval( $args['total'] ) ) ) { |
|
192 | - $link = str_replace( '%_%', $args['format'], $args['base'] ); |
|
193 | - $link = str_replace( '%#%', $args['current'] + 1, $link ); |
|
194 | - if ( $args['add_args'] ) { |
|
195 | - $link = add_query_arg( $args['add_args'], $link ); |
|
191 | + if ($args['prev_next'] && $args['current'] && ($args['current'] < $args['total'] || -1 === intval($args['total']))) { |
|
192 | + $link = str_replace('%_%', $args['format'], $args['base']); |
|
193 | + $link = str_replace('%#%', $args['current'] + 1, $link); |
|
194 | + if ($args['add_args']) { |
|
195 | + $link = add_query_arg($args['add_args'], $link); |
|
196 | 196 | } |
197 | - $link = untrailingslashit( trailingslashit( $link ) . $args['add_fragment'] ); |
|
197 | + $link = untrailingslashit(trailingslashit($link).$args['add_fragment']); |
|
198 | 198 | $page_links[] = array( |
199 | 199 | 'class' => 'next page-numbers', |
200 | - 'link' => esc_url( apply_filters( 'paginate_links', $link ) ), |
|
200 | + 'link' => esc_url(apply_filters('paginate_links', $link)), |
|
201 | 201 | 'title' => $args['next_text'], |
202 | 202 | ); |
203 | 203 | } |
@@ -211,13 +211,13 @@ discard block |
||
211 | 211 | * |
212 | 212 | * @return object |
213 | 213 | */ |
214 | - public static function array_to_object( $array ) { |
|
214 | + public static function array_to_object($array) { |
|
215 | 215 | $obj = new \stdClass; |
216 | 216 | |
217 | - foreach ( $array as $k => $v ) { |
|
218 | - if ( strlen( $k ) ) { |
|
219 | - if ( is_array( $v ) ) { |
|
220 | - $obj->{$k} = self::array_to_object( $v ); // Recursion. |
|
217 | + foreach ($array as $k => $v) { |
|
218 | + if (strlen($k)) { |
|
219 | + if (is_array($v)) { |
|
220 | + $obj->{$k} = self::array_to_object($v); // Recursion. |
|
221 | 221 | } else { |
222 | 222 | $obj->{$k} = $v; |
223 | 223 | } |
@@ -236,26 +236,26 @@ discard block |
||
236 | 236 | $textdomain = Classy::textdomain(); |
237 | 237 | $archives_title = ''; |
238 | 238 | |
239 | - if ( is_category() ) { |
|
240 | - $archives_title = single_cat_title( '', false ); |
|
241 | - } else if ( is_tag() ) { |
|
242 | - $archives_title = 'Tag: ' . single_tag_title( '', false ); |
|
243 | - } else if ( is_author() ) { |
|
244 | - if ( have_posts() ) { |
|
239 | + if (is_category()) { |
|
240 | + $archives_title = single_cat_title('', false); |
|
241 | + } else if (is_tag()) { |
|
242 | + $archives_title = 'Tag: '.single_tag_title('', false); |
|
243 | + } else if (is_author()) { |
|
244 | + if (have_posts()) { |
|
245 | 245 | the_post(); |
246 | - $archives_title = 'Author: ' . get_the_author(); |
|
246 | + $archives_title = 'Author: '.get_the_author(); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | rewind_posts(); |
250 | - } else if ( is_search() ) { |
|
251 | - $archives_title = sprintf( __( 'Search Results for: %s', $textdomain ), '<span>' . get_search_query() . '</span>' ); |
|
252 | - } else if ( is_archive() ) { |
|
253 | - if ( is_day() ) { |
|
250 | + } else if (is_search()) { |
|
251 | + $archives_title = sprintf(__('Search Results for: %s', $textdomain), '<span>'.get_search_query().'</span>'); |
|
252 | + } else if (is_archive()) { |
|
253 | + if (is_day()) { |
|
254 | 254 | $archives_title = get_the_date(); |
255 | - } elseif ( is_month() ) { |
|
256 | - $archives_title = get_the_date( _x( 'F Y', 'monthly archives date format', $textdomain ) ); |
|
257 | - } elseif ( is_year() ) { |
|
258 | - $archives_title = get_the_date( _x( 'Y', 'yearly archives date format', $textdomain ) ); |
|
255 | + } elseif (is_month()) { |
|
256 | + $archives_title = get_the_date(_x('F Y', 'monthly archives date format', $textdomain)); |
|
257 | + } elseif (is_year()) { |
|
258 | + $archives_title = get_the_date(_x('Y', 'yearly archives date format', $textdomain)); |
|
259 | 259 | } else { |
260 | 260 | $archives_title = 'Archives'; |
261 | 261 | } |
@@ -236,29 +236,29 @@ |
||
236 | 236 | $textdomain = Classy::textdomain(); |
237 | 237 | $archives_title = 'Archives'; |
238 | 238 | |
239 | - if ( is_category() ) { |
|
240 | - $archives_title = single_cat_title( '', false ); |
|
241 | - } else if ( is_tag() ) { |
|
242 | - $archives_title = 'Tag: ' . single_tag_title( '', false ); |
|
243 | - } else if ( is_author() ) { |
|
244 | - if ( have_posts() ) { |
|
245 | - the_post(); |
|
246 | - $archives_title = 'Author: ' . get_the_author(); |
|
247 | - } |
|
239 | + if ( is_category() ) { |
|
240 | + $archives_title = single_cat_title( '', false ); |
|
241 | + } else if ( is_tag() ) { |
|
242 | + $archives_title = 'Tag: ' . single_tag_title( '', false ); |
|
243 | + } else if ( is_author() ) { |
|
244 | + if ( have_posts() ) { |
|
245 | + the_post(); |
|
246 | + $archives_title = 'Author: ' . get_the_author(); |
|
247 | + } |
|
248 | 248 | |
249 | - rewind_posts(); |
|
250 | - } else if ( is_search() ) { |
|
251 | - $archives_title = sprintf( __( 'Search Results for: %s', $textdomain ), '<span>' . get_search_query() . '</span>' ); |
|
252 | - } else if ( is_archive() ) { |
|
253 | - if ( is_day() ) { |
|
254 | - $archives_title = get_the_date(); |
|
255 | - } elseif ( is_month() ) { |
|
256 | - $archives_title = get_the_date( _x( 'F Y', 'monthly archives date format', $textdomain ) ); |
|
257 | - } elseif ( is_year() ) { |
|
258 | - $archives_title = get_the_date( _x( 'Y', 'yearly archives date format', $textdomain ) ); |
|
259 | - } |
|
249 | + rewind_posts(); |
|
250 | + } else if ( is_search() ) { |
|
251 | + $archives_title = sprintf( __( 'Search Results for: %s', $textdomain ), '<span>' . get_search_query() . '</span>' ); |
|
252 | + } else if ( is_archive() ) { |
|
253 | + if ( is_day() ) { |
|
254 | + $archives_title = get_the_date(); |
|
255 | + } elseif ( is_month() ) { |
|
256 | + $archives_title = get_the_date( _x( 'F Y', 'monthly archives date format', $textdomain ) ); |
|
257 | + } elseif ( is_year() ) { |
|
258 | + $archives_title = get_the_date( _x( 'Y', 'yearly archives date format', $textdomain ) ); |
|
259 | + } |
|
260 | 260 | } |
261 | 261 | |
262 | - return $archives_title; |
|
262 | + return $archives_title; |
|
263 | 263 | } |
264 | 264 | } |
@@ -41,7 +41,8 @@ discard block |
||
41 | 41 | preg_match_all( '/./u', $text, $words_array ); |
42 | 42 | $words_array = array_slice( $words_array[0], 0, $num_words + 1 ); |
43 | 43 | $sep = ''; |
44 | - } else { |
|
44 | + } |
|
45 | + else { |
|
45 | 46 | $words_array = preg_split( "/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY ); |
46 | 47 | $sep = ' '; |
47 | 48 | } |
@@ -50,7 +51,8 @@ discard block |
||
50 | 51 | array_pop( $words_array ); |
51 | 52 | $text = implode( $sep, $words_array ); |
52 | 53 | $text = $text . $more; |
53 | - } else { |
|
54 | + } |
|
55 | + else { |
|
54 | 56 | $text = implode( $sep, $words_array ); |
55 | 57 | } |
56 | 58 | |
@@ -89,7 +91,8 @@ discard block |
||
89 | 91 | for ( $i = 0; $i < $len_opened; $i++ ) { |
90 | 92 | if ( ! in_array( $openedtags[ $i ], $closedtags, true ) ) { |
91 | 93 | $html .= '</' . $openedtags[ $i ] . '>'; |
92 | - } else { |
|
94 | + } |
|
95 | + else { |
|
93 | 96 | unset( $closedtags[ array_search( $openedtags[ $i ], $closedtags ) ] ); |
94 | 97 | } |
95 | 98 | } |
@@ -161,7 +164,8 @@ discard block |
||
161 | 164 | 'current' => true, |
162 | 165 | ); |
163 | 166 | $dots = true; |
164 | - } else { |
|
167 | + } |
|
168 | + else { |
|
165 | 169 | if ( $args['show_all'] || ( $n <= $args['end_size'] || ( $args['current'] && $n >= $args['current'] - $args['mid_size'] && $n <= $args['current'] + $args['mid_size'] ) || $n > $args['total'] - $args['end_size'] ) ) { |
166 | 170 | $link = str_replace( '%_%', 1 === absint( $n ) ? '' : $args['format'], $args['base'] ); |
167 | 171 | $link = str_replace( '%#%', $n, $link ); |
@@ -179,7 +183,8 @@ discard block |
||
179 | 183 | 'current' => absint( $args['current'] ) === $n, |
180 | 184 | ); |
181 | 185 | $dots = true; |
182 | - } elseif ( $dots && ! $args['show_all'] ) { |
|
186 | + } |
|
187 | + elseif ( $dots && ! $args['show_all'] ) { |
|
183 | 188 | $page_links[] = array( |
184 | 189 | 'class' => 'dots', |
185 | 190 | 'title' => __( '…' ), |
@@ -218,7 +223,8 @@ discard block |
||
218 | 223 | if ( strlen( $k ) ) { |
219 | 224 | if ( is_array( $v ) ) { |
220 | 225 | $obj->{$k} = self::array_to_object( $v ); // Recursion. |
221 | - } else { |
|
226 | + } |
|
227 | + else { |
|
222 | 228 | $obj->{$k} = $v; |
223 | 229 | } |
224 | 230 | } |
@@ -238,23 +244,29 @@ discard block |
||
238 | 244 | |
239 | 245 | if ( is_category() ) { |
240 | 246 | $archives_title = single_cat_title( '', false ); |
241 | - } else if ( is_tag() ) { |
|
247 | + } |
|
248 | + else if ( is_tag() ) { |
|
242 | 249 | $archives_title = 'Tag: ' . single_tag_title( '', false ); |
243 | - } else if ( is_author() ) { |
|
250 | + } |
|
251 | + else if ( is_author() ) { |
|
244 | 252 | if ( have_posts() ) { |
245 | 253 | the_post(); |
246 | 254 | $archives_title = 'Author: ' . get_the_author(); |
247 | 255 | } |
248 | 256 | |
249 | 257 | rewind_posts(); |
250 | - } else if ( is_search() ) { |
|
258 | + } |
|
259 | + else if ( is_search() ) { |
|
251 | 260 | $archives_title = sprintf( __( 'Search Results for: %s', $textdomain ), '<span>' . get_search_query() . '</span>' ); |
252 | - } else if ( is_archive() ) { |
|
261 | + } |
|
262 | + else if ( is_archive() ) { |
|
253 | 263 | if ( is_day() ) { |
254 | 264 | $archives_title = get_the_date(); |
255 | - } elseif ( is_month() ) { |
|
265 | + } |
|
266 | + elseif ( is_month() ) { |
|
256 | 267 | $archives_title = get_the_date( _x( 'F Y', 'monthly archives date format', $textdomain ) ); |
257 | - } elseif ( is_year() ) { |
|
268 | + } |
|
269 | + elseif ( is_year() ) { |
|
258 | 270 | $archives_title = get_the_date( _x( 'Y', 'yearly archives date format', $textdomain ) ); |
259 | 271 | } |
260 | 272 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @param string $type View|scope. |
122 | 122 | * @param string $page Request type like: home, single etc. |
123 | 123 | * |
124 | - * @return array|bool |
|
124 | + * @return string|false |
|
125 | 125 | */ |
126 | 126 | public static function get_available_file( $type = 'view', $page ) { |
127 | 127 | $views = self::get_request_hierarchy_list( $page ); |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * Returns classy template name or boolean if this is not classy template. |
308 | 308 | * |
309 | - * @return mixed |
|
309 | + * @return string|false |
|
310 | 310 | */ |
311 | 311 | public static function get_classy_template() { |
312 | 312 | preg_match( '/classy\-(.*)/', get_page_template_slug(), $matches ); |
@@ -26,39 +26,39 @@ discard block |
||
26 | 26 | */ |
27 | 27 | protected static function check_request() { |
28 | 28 | |
29 | - if ( is_404() ) : return '404'; |
|
29 | + if (is_404()) : return '404'; |
|
30 | 30 | |
31 | - elseif ( is_search() ) : return 'search'; |
|
31 | + elseif (is_search()) : return 'search'; |
|
32 | 32 | |
33 | - elseif ( is_front_page() ) : return 'front-page'; |
|
33 | + elseif (is_front_page()) : return 'front-page'; |
|
34 | 34 | |
35 | - elseif ( is_home() ) : return 'home'; |
|
35 | + elseif (is_home()) : return 'home'; |
|
36 | 36 | |
37 | - elseif ( is_post_type_archive() ) : return 'post_type_archive'; |
|
37 | + elseif (is_post_type_archive()) : return 'post_type_archive'; |
|
38 | 38 | |
39 | - elseif ( is_tax() ) : return 'taxonomy'; |
|
39 | + elseif (is_tax()) : return 'taxonomy'; |
|
40 | 40 | |
41 | - elseif ( is_attachment() ) : return 'attachment'; |
|
41 | + elseif (is_attachment()) : return 'attachment'; |
|
42 | 42 | |
43 | - elseif ( is_single() ) : return 'single'; |
|
43 | + elseif (is_single()) : return 'single'; |
|
44 | 44 | |
45 | - elseif ( self::is_classy_template() ) : return 'classy-template'; |
|
45 | + elseif (self::is_classy_template()) : return 'classy-template'; |
|
46 | 46 | |
47 | - elseif ( is_page() ) : return 'page'; |
|
47 | + elseif (is_page()) : return 'page'; |
|
48 | 48 | |
49 | - elseif ( is_singular() ) : return 'singular'; |
|
49 | + elseif (is_singular()) : return 'singular'; |
|
50 | 50 | |
51 | - elseif ( is_category() ) : return 'category'; |
|
51 | + elseif (is_category()) : return 'category'; |
|
52 | 52 | |
53 | - elseif ( is_tag() ) : return 'tag'; |
|
53 | + elseif (is_tag()) : return 'tag'; |
|
54 | 54 | |
55 | - elseif ( is_author() ) : return 'author'; |
|
55 | + elseif (is_author()) : return 'author'; |
|
56 | 56 | |
57 | - elseif ( is_date() ) : return 'date'; |
|
57 | + elseif (is_date()) : return 'date'; |
|
58 | 58 | |
59 | - elseif ( is_archive() ) : return 'archive'; |
|
59 | + elseif (is_archive()) : return 'archive'; |
|
60 | 60 | |
61 | - elseif ( is_paged() ) : return 'paged'; |
|
61 | + elseif (is_paged()) : return 'paged'; |
|
62 | 62 | |
63 | 63 | else : |
64 | 64 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * @return string |
74 | 74 | */ |
75 | 75 | public static function get_current_request() { |
76 | - if ( is_null( self::$current_request ) ) { |
|
76 | + if (is_null(self::$current_request)) { |
|
77 | 77 | self::$current_request = self::check_request(); |
78 | 78 | } |
79 | 79 | |
@@ -89,13 +89,13 @@ discard block |
||
89 | 89 | * |
90 | 90 | * @return string Full file path. |
91 | 91 | */ |
92 | - public static function get_file_path( $type = 'view', $view ) { |
|
93 | - $view = str_replace( '.', '/', $view ); |
|
92 | + public static function get_file_path($type = 'view', $view) { |
|
93 | + $view = str_replace('.', '/', $view); |
|
94 | 94 | |
95 | - if ( 'view' === $type ) { |
|
96 | - return CLASSY_THEME_PATH . View::$folder . '/' . $view . '.blade.php'; |
|
97 | - } elseif ( 'scope' === $type ) { |
|
98 | - return CLASSY_THEME_PATH . Scope::$folder . '/' . $view . '.php'; |
|
95 | + if ('view' === $type) { |
|
96 | + return CLASSY_THEME_PATH.View::$folder.'/'.$view.'.blade.php'; |
|
97 | + } elseif ('scope' === $type) { |
|
98 | + return CLASSY_THEME_PATH.Scope::$folder.'/'.$view.'.php'; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | return ''; |
@@ -109,9 +109,9 @@ discard block |
||
109 | 109 | * |
110 | 110 | * @return boolean true|false |
111 | 111 | */ |
112 | - public static function file_exists( $type = 'view', $file ) { |
|
112 | + public static function file_exists($type = 'view', $file) { |
|
113 | 113 | return file_exists( |
114 | - self::get_file_path( $type, str_replace( '.', '/', $file ) ) |
|
114 | + self::get_file_path($type, str_replace('.', '/', $file)) |
|
115 | 115 | ); |
116 | 116 | } |
117 | 117 | |
@@ -123,11 +123,11 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @return array|bool |
125 | 125 | */ |
126 | - public static function get_available_file( $type = 'view', $page ) { |
|
127 | - $views = self::get_request_hierarchy_list( $page ); |
|
126 | + public static function get_available_file($type = 'view', $page) { |
|
127 | + $views = self::get_request_hierarchy_list($page); |
|
128 | 128 | |
129 | - foreach ( $views as $view ) { |
|
130 | - if ( self::file_exists( $type, $view ) ) { |
|
129 | + foreach ($views as $view) { |
|
130 | + if (self::file_exists($type, $view)) { |
|
131 | 131 | return $view; |
132 | 132 | } |
133 | 133 | } |
@@ -142,26 +142,26 @@ discard block |
||
142 | 142 | * |
143 | 143 | * @return array |
144 | 144 | */ |
145 | - private static function get_request_hierarchy_list( $type ) { |
|
145 | + private static function get_request_hierarchy_list($type) { |
|
146 | 146 | $views = array(); |
147 | 147 | |
148 | - if ( 'home' === $type ) : |
|
148 | + if ('home' === $type) : |
|
149 | 149 | $views[] = 'home'; |
150 | - elseif ( 'single' === $type ) : |
|
150 | + elseif ('single' === $type) : |
|
151 | 151 | |
152 | - $views[] = get_post_type() . '.single'; |
|
152 | + $views[] = get_post_type().'.single'; |
|
153 | 153 | $views[] = 'single'; |
154 | 154 | |
155 | - elseif ( 'post_type_archive' === $type ) : |
|
155 | + elseif ('post_type_archive' === $type) : |
|
156 | 156 | |
157 | - $views[] = get_post_type() . '.archive'; |
|
157 | + $views[] = get_post_type().'.archive'; |
|
158 | 158 | $views[] = 'archive'; |
159 | 159 | |
160 | - elseif ( 'taxonomy' === $type ) : |
|
160 | + elseif ('taxonomy' === $type) : |
|
161 | 161 | |
162 | 162 | $term = get_queried_object(); |
163 | 163 | |
164 | - if ( ! empty( $term->slug ) ) { |
|
164 | + if (!empty($term->slug)) { |
|
165 | 165 | $taxonomy = $term->taxonomy; |
166 | 166 | |
167 | 167 | $views[] = "taxonomy.$taxonomy-{$term->slug}"; |
@@ -171,11 +171,11 @@ discard block |
||
171 | 171 | $views[] = 'taxonomy.taxonomy'; |
172 | 172 | $views[] = 'taxonomy'; |
173 | 173 | |
174 | - elseif ( 'category' === $type ) : |
|
174 | + elseif ('category' === $type) : |
|
175 | 175 | |
176 | 176 | $category = get_queried_object(); |
177 | 177 | |
178 | - if ( ! empty( $category->slug ) ) { |
|
178 | + if (!empty($category->slug)) { |
|
179 | 179 | $views[] = "category.{$category->slug}"; |
180 | 180 | $views[] = "category.{$category->term_id}"; |
181 | 181 | } |
@@ -183,18 +183,18 @@ discard block |
||
183 | 183 | $views[] = 'category.category'; |
184 | 184 | $views[] = 'category'; |
185 | 185 | |
186 | - elseif ( 'attachment' === $type ) : |
|
186 | + elseif ('attachment' === $type) : |
|
187 | 187 | |
188 | 188 | $attachment = get_queried_object(); |
189 | 189 | |
190 | - if ( $attachment ) { |
|
191 | - if ( false !== strpos( $attachment->post_mime_type, '/' ) ) { |
|
192 | - list( $type, $subtype ) = explode( '/', $attachment->post_mime_type ); |
|
190 | + if ($attachment) { |
|
191 | + if (false !== strpos($attachment->post_mime_type, '/')) { |
|
192 | + list($type, $subtype) = explode('/', $attachment->post_mime_type); |
|
193 | 193 | } else { |
194 | - list( $type, $subtype ) = array( $attachment->post_mime_type, '' ); |
|
194 | + list($type, $subtype) = array($attachment->post_mime_type, ''); |
|
195 | 195 | } |
196 | 196 | |
197 | - if ( ! empty( $subtype ) ) { |
|
197 | + if (!empty($subtype)) { |
|
198 | 198 | $views[] = "attachment.{$type}.{$subtype}"; |
199 | 199 | $views[] = "attachment.{$subtype}"; |
200 | 200 | |
@@ -209,11 +209,11 @@ discard block |
||
209 | 209 | $views[] = 'attachment.attachment'; |
210 | 210 | $views[] = 'attachment'; |
211 | 211 | |
212 | - elseif ( 'tag' === $type ) : |
|
212 | + elseif ('tag' === $type) : |
|
213 | 213 | |
214 | 214 | $tag = get_queried_object(); |
215 | 215 | |
216 | - if ( ! empty( $tag->slug ) ) { |
|
216 | + if (!empty($tag->slug)) { |
|
217 | 217 | $views[] = "post.tag.{$tag->slug}"; |
218 | 218 | $views[] = "post.tag.{$tag->term_id}"; |
219 | 219 | |
@@ -224,11 +224,11 @@ discard block |
||
224 | 224 | $views[] = 'post.tag'; |
225 | 225 | $views[] = 'tag'; |
226 | 226 | |
227 | - elseif ( 'author' === $type ) : |
|
227 | + elseif ('author' === $type) : |
|
228 | 228 | |
229 | 229 | $author = get_queried_object(); |
230 | 230 | |
231 | - if ( $author instanceof \WP_User ) { |
|
231 | + if ($author instanceof \WP_User) { |
|
232 | 232 | $views[] = "post.author.{$author->user_nicename}"; |
233 | 233 | $views[] = "post.author.{$author->ID}"; |
234 | 234 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $views[] = 'post.author'; |
240 | 240 | $views[] = 'author'; |
241 | 241 | |
242 | - elseif ( 'front-page' === $type ) : |
|
242 | + elseif ('front-page' === $type) : |
|
243 | 243 | |
244 | 244 | $views[] = 'front-page.front-page'; |
245 | 245 | $views[] = 'front-page'; |
@@ -247,37 +247,37 @@ discard block |
||
247 | 247 | $views[] = 'home.home'; |
248 | 248 | $views[] = 'home'; |
249 | 249 | |
250 | - $views = array_merge( $views, self::get_request_hierarchy_list( 'post_type_archive' ) ); |
|
250 | + $views = array_merge($views, self::get_request_hierarchy_list('post_type_archive')); |
|
251 | 251 | |
252 | - elseif ( 'classy-template' === $type ) : |
|
252 | + elseif ('classy-template' === $type) : |
|
253 | 253 | |
254 | 254 | $template = self::get_classy_template(); |
255 | 255 | |
256 | 256 | $views[] = $template; |
257 | - $views[] = 'page.' . $template; |
|
258 | - $views[] = 'template.' . $template; |
|
257 | + $views[] = 'page.'.$template; |
|
258 | + $views[] = 'template.'.$template; |
|
259 | 259 | $views[] = 'page.page'; |
260 | 260 | $views[] = 'page'; |
261 | 261 | |
262 | - elseif ( 'page' === $type ) : |
|
262 | + elseif ('page' === $type) : |
|
263 | 263 | |
264 | 264 | $id = get_queried_object_id(); |
265 | 265 | |
266 | - $pagename = get_query_var( 'pagename' ); |
|
266 | + $pagename = get_query_var('pagename'); |
|
267 | 267 | |
268 | - if ( ! $pagename && $id ) { |
|
268 | + if (!$pagename && $id) { |
|
269 | 269 | // If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object. |
270 | - if ( $post = get_queried_object() ) { |
|
270 | + if ($post = get_queried_object()) { |
|
271 | 271 | $pagename = $post->post_name; |
272 | 272 | } |
273 | 273 | } |
274 | 274 | |
275 | - if ( $pagename ) { |
|
276 | - $views[] = 'page.' . $pagename; |
|
275 | + if ($pagename) { |
|
276 | + $views[] = 'page.'.$pagename; |
|
277 | 277 | } |
278 | 278 | |
279 | - if ( $id ) { |
|
280 | - $views[] = 'page.' . $id; |
|
279 | + if ($id) { |
|
280 | + $views[] = 'page.'.$id; |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | $views[] = 'page.page'; |
@@ -309,9 +309,9 @@ discard block |
||
309 | 309 | * @return mixed |
310 | 310 | */ |
311 | 311 | public static function get_classy_template() { |
312 | - preg_match( '/classy\-(.*)/', get_page_template_slug(), $matches ); |
|
312 | + preg_match('/classy\-(.*)/', get_page_template_slug(), $matches); |
|
313 | 313 | |
314 | - if ( ! empty( $matches ) && isset( $matches[1] ) ) { |
|
314 | + if (!empty($matches) && isset($matches[1])) { |
|
315 | 315 | return $matches[1]; |
316 | 316 | } |
317 | 317 |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @param int $pid Image attachment ID. |
28 | 28 | */ |
29 | - public function __construct( $pid = null ) { |
|
29 | + public function __construct($pid = null) { |
|
30 | 30 | $this->ID = 0; |
31 | 31 | |
32 | 32 | // Checks if image with this id exists. |
33 | - if ( null !== $pid && wp_get_attachment_image_src( $pid ) ) { |
|
33 | + if (null !== $pid && wp_get_attachment_image_src($pid)) { |
|
34 | 34 | $this->ID = $pid; |
35 | 35 | } |
36 | 36 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public static function get_default_image() { |
44 | 44 | // You can put here any url. |
45 | - return CLASSY_THEME_DIR . '/assets/noimage.png'; |
|
45 | + return CLASSY_THEME_DIR.'/assets/noimage.png'; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @return string |
54 | 54 | */ |
55 | - public function src( $size = 'medium' ) { |
|
56 | - if ( $this->ID ) { |
|
57 | - $thumb = wp_get_attachment_image_src( $this->ID, $size ); |
|
55 | + public function src($size = 'medium') { |
|
56 | + if ($this->ID) { |
|
57 | + $thumb = wp_get_attachment_image_src($this->ID, $size); |
|
58 | 58 | |
59 | 59 | return $thumb[0]; |
60 | 60 | } |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @param object|int $post WP_Post or WP_Post.ID. |
100 | 100 | */ |
101 | - public function __construct( $post = null ) { |
|
102 | - if ( is_integer( $post ) ) { |
|
101 | + public function __construct($post = null) { |
|
102 | + if (is_integer($post)) { |
|
103 | 103 | $this->ID = $post; |
104 | 104 | $this->init(); |
105 | - } elseif ( is_a( $post, '\WP_Post' ) ) { |
|
106 | - $this->import( $post ); |
|
105 | + } elseif (is_a($post, '\WP_Post')) { |
|
106 | + $this->import($post); |
|
107 | 107 | } |
108 | 108 | } |
109 | 109 | |
@@ -113,8 +113,8 @@ discard block |
||
113 | 113 | protected function init() { |
114 | 114 | $post = $this->get_object(); |
115 | 115 | |
116 | - if ( is_a( $post, '\WP_Post' ) ) { |
|
117 | - $this->import( $post ); |
|
116 | + if (is_a($post, '\WP_Post')) { |
|
117 | + $this->import($post); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * @return \WP_Post |
125 | 125 | */ |
126 | 126 | public function get_object() { |
127 | - return get_post( $this->ID ); |
|
127 | + return get_post($this->ID); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
@@ -133,10 +133,10 @@ discard block |
||
133 | 133 | * @return boolean |
134 | 134 | */ |
135 | 135 | public function can_edit() { |
136 | - if ( ! function_exists( 'current_user_can' ) ) { |
|
136 | + if (!function_exists('current_user_can')) { |
|
137 | 137 | return false; |
138 | 138 | } |
139 | - if ( current_user_can( 'edit_post', $this->ID ) ) { |
|
139 | + if (current_user_can('edit_post', $this->ID)) { |
|
140 | 140 | return true; |
141 | 141 | } |
142 | 142 | |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | * @return string |
150 | 150 | */ |
151 | 151 | public function get_edit_url() { |
152 | - if ( $this->can_edit() ) { |
|
153 | - return get_edit_post_link( $this->ID ); |
|
152 | + if ($this->can_edit()) { |
|
153 | + return get_edit_post_link($this->ID); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | return ''; |
@@ -173,9 +173,9 @@ discard block |
||
173 | 173 | 'fields' => 'ids', |
174 | 174 | ); |
175 | 175 | |
176 | - $images = get_children( $attrs ); |
|
176 | + $images = get_children($attrs); |
|
177 | 177 | |
178 | - if ( ! count( $images ) ) { |
|
178 | + if (!count($images)) { |
|
179 | 179 | return false; |
180 | 180 | } |
181 | 181 | |
@@ -192,11 +192,11 @@ discard block |
||
192 | 192 | |
193 | 193 | $images = $this->get_attached_images(); |
194 | 194 | |
195 | - if ( $images ) { |
|
195 | + if ($images) { |
|
196 | 196 | |
197 | - foreach ( $images as $image_id ) { |
|
197 | + foreach ($images as $image_id) { |
|
198 | 198 | |
199 | - $_return[] = new Image( $image_id ); |
|
199 | + $_return[] = new Image($image_id); |
|
200 | 200 | |
201 | 201 | } |
202 | 202 | } |
@@ -222,13 +222,13 @@ discard block |
||
222 | 222 | 'fields' => 'ids', |
223 | 223 | ); |
224 | 224 | |
225 | - $images = get_children( $attrs ); |
|
225 | + $images = get_children($attrs); |
|
226 | 226 | |
227 | - if ( ! count( $images ) ) { |
|
227 | + if (!count($images)) { |
|
228 | 228 | return false; |
229 | 229 | } |
230 | 230 | |
231 | - $images = array_values( $images ); |
|
231 | + $images = array_values($images); |
|
232 | 232 | |
233 | 233 | return $images[0]; |
234 | 234 | } |
@@ -242,8 +242,8 @@ discard block |
||
242 | 242 | |
243 | 243 | $image_id = $this->get_first_attached_image_id(); |
244 | 244 | |
245 | - if ( $image_id ) { |
|
246 | - return new Image( $image_id ); |
|
245 | + if ($image_id) { |
|
246 | + return new Image($image_id); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | return new Image(); |
@@ -255,12 +255,12 @@ discard block |
||
255 | 255 | * @return Image |
256 | 256 | */ |
257 | 257 | public function thumbnail() { |
258 | - if ( function_exists( 'get_post_thumbnail_id' ) ) { |
|
259 | - $image_id = get_post_thumbnail_id( $this->ID ); |
|
258 | + if (function_exists('get_post_thumbnail_id')) { |
|
259 | + $image_id = get_post_thumbnail_id($this->ID); |
|
260 | 260 | |
261 | - if ( $image_id ) { |
|
261 | + if ($image_id) { |
|
262 | 262 | |
263 | - return new Image( $image_id ); |
|
263 | + return new Image($image_id); |
|
264 | 264 | |
265 | 265 | } |
266 | 266 | } |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * @return string |
275 | 275 | */ |
276 | 276 | public function get_title() { |
277 | - return apply_filters( 'the_title', $this->post_title, $this->ID ); |
|
277 | + return apply_filters('the_title', $this->post_title, $this->ID); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | /** |
@@ -293,24 +293,24 @@ discard block |
||
293 | 293 | * |
294 | 294 | * @return string Post content |
295 | 295 | */ |
296 | - public function get_content( $page = 0 ) { |
|
297 | - if ( 0 === absint( $page ) && $this->post_content ) { |
|
296 | + public function get_content($page = 0) { |
|
297 | + if (0 === absint($page) && $this->post_content) { |
|
298 | 298 | return $this->post_content; |
299 | 299 | } |
300 | 300 | |
301 | 301 | $content = $this->post_content; |
302 | 302 | |
303 | - if ( $page ) { |
|
304 | - $contents = explode( '<!--nextpage-->', $content ); |
|
303 | + if ($page) { |
|
304 | + $contents = explode('<!--nextpage-->', $content); |
|
305 | 305 | |
306 | 306 | $page--; |
307 | 307 | |
308 | - if ( count( $contents ) > $page ) { |
|
309 | - $content = $contents[ $page ]; |
|
308 | + if (count($contents) > $page) { |
|
309 | + $content = $contents[$page]; |
|
310 | 310 | } |
311 | 311 | } |
312 | 312 | |
313 | - $content = apply_filters( 'the_content', ($content) ); |
|
313 | + $content = apply_filters('the_content', ($content)); |
|
314 | 314 | |
315 | 315 | return $content; |
316 | 316 | } |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | * @return object |
331 | 331 | */ |
332 | 332 | public function get_post_type() { |
333 | - return get_post_type_object( $this->post_type ); |
|
333 | + return get_post_type_object($this->post_type); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | /** |
@@ -339,11 +339,11 @@ discard block |
||
339 | 339 | * @return string |
340 | 340 | */ |
341 | 341 | public function get_permalink() { |
342 | - if ( isset( $this->permalink ) ) { |
|
342 | + if (isset($this->permalink)) { |
|
343 | 343 | return $this->permalink; |
344 | 344 | } |
345 | 345 | |
346 | - $this->permalink = get_permalink( $this->ID ); |
|
346 | + $this->permalink = get_permalink($this->ID); |
|
347 | 347 | |
348 | 348 | return $this->permalink; |
349 | 349 | } |
@@ -369,84 +369,84 @@ discard block |
||
369 | 369 | * |
370 | 370 | * @return string Post preview. |
371 | 371 | */ |
372 | - public function get_preview( $len = 50, $force = false, $readmore = 'Read More', $strip = true ) { |
|
372 | + public function get_preview($len = 50, $force = false, $readmore = 'Read More', $strip = true) { |
|
373 | 373 | $text = ''; |
374 | 374 | $trimmed = false; |
375 | 375 | |
376 | - if ( isset( $this->post_excerpt ) && strlen( $this->post_excerpt ) ) { |
|
376 | + if (isset($this->post_excerpt) && strlen($this->post_excerpt)) { |
|
377 | 377 | |
378 | - if ( $force ) { |
|
379 | - $text = Helper::trim_words( $this->post_excerpt, $len, false ); |
|
378 | + if ($force) { |
|
379 | + $text = Helper::trim_words($this->post_excerpt, $len, false); |
|
380 | 380 | $trimmed = true; |
381 | 381 | } else { |
382 | 382 | $text = $this->post_excerpt; |
383 | 383 | } |
384 | 384 | } |
385 | 385 | |
386 | - if ( ! strlen( $text ) && preg_match( '/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches ) ) { |
|
386 | + if (!strlen($text) && preg_match('/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches)) { |
|
387 | 387 | |
388 | - $pieces = explode( $readmore_matches[0], $this->post_content ); |
|
388 | + $pieces = explode($readmore_matches[0], $this->post_content); |
|
389 | 389 | $text = $pieces[0]; |
390 | 390 | |
391 | - if ( $force ) { |
|
392 | - $text = Helper::trim_words( $text, $len, false ); |
|
391 | + if ($force) { |
|
392 | + $text = Helper::trim_words($text, $len, false); |
|
393 | 393 | $trimmed = true; |
394 | 394 | } |
395 | 395 | |
396 | - $text = do_shortcode( $text ); |
|
396 | + $text = do_shortcode($text); |
|
397 | 397 | |
398 | 398 | } |
399 | 399 | |
400 | - if ( ! strlen( $text ) ) { |
|
400 | + if (!strlen($text)) { |
|
401 | 401 | |
402 | - $text = Helper::trim_words( $this->get_content(), $len, false ); |
|
402 | + $text = Helper::trim_words($this->get_content(), $len, false); |
|
403 | 403 | $trimmed = true; |
404 | 404 | |
405 | 405 | } |
406 | 406 | |
407 | - if ( ! strlen( trim( $text ) ) ) { |
|
407 | + if (!strlen(trim($text))) { |
|
408 | 408 | |
409 | - return trim( $text ); |
|
409 | + return trim($text); |
|
410 | 410 | |
411 | 411 | } |
412 | 412 | |
413 | - if ( $strip ) { |
|
413 | + if ($strip) { |
|
414 | 414 | |
415 | - $text = trim( strip_tags( $text ) ); |
|
415 | + $text = trim(strip_tags($text)); |
|
416 | 416 | |
417 | 417 | } |
418 | 418 | |
419 | - if ( strlen( $text ) ) { |
|
419 | + if (strlen($text)) { |
|
420 | 420 | |
421 | - $text = trim( $text ); |
|
422 | - $last = $text[ strlen( $text ) - 1 ]; |
|
421 | + $text = trim($text); |
|
422 | + $last = $text[strlen($text) - 1]; |
|
423 | 423 | |
424 | - if ( '.' !== $last && $trimmed ) { |
|
424 | + if ('.' !== $last && $trimmed) { |
|
425 | 425 | $text .= ' … '; |
426 | 426 | } |
427 | 427 | |
428 | - if ( ! $strip ) { |
|
429 | - $last_p_tag = strrpos( $text, '</p>' ); |
|
430 | - if ( false !== $last_p_tag ) { |
|
431 | - $text = substr( $text, 0, $last_p_tag ); |
|
428 | + if (!$strip) { |
|
429 | + $last_p_tag = strrpos($text, '</p>'); |
|
430 | + if (false !== $last_p_tag) { |
|
431 | + $text = substr($text, 0, $last_p_tag); |
|
432 | 432 | } |
433 | - if ( '.' !== $last && $trimmed ) { |
|
433 | + if ('.' !== $last && $trimmed) { |
|
434 | 434 | $text .= ' … '; |
435 | 435 | } |
436 | 436 | } |
437 | 437 | |
438 | - if ( $readmore && isset( $readmore_matches ) && ! empty( $readmore_matches[1] ) ) { |
|
439 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore_matches[1] ) . '</a>'; |
|
440 | - } elseif ( $readmore ) { |
|
441 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore ) . '</a>'; |
|
438 | + if ($readmore && isset($readmore_matches) && !empty($readmore_matches[1])) { |
|
439 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore_matches[1]).'</a>'; |
|
440 | + } elseif ($readmore) { |
|
441 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore).'</a>'; |
|
442 | 442 | } |
443 | 443 | |
444 | - if ( ! $strip ) { |
|
444 | + if (!$strip) { |
|
445 | 445 | $text .= '</p>'; |
446 | 446 | } |
447 | 447 | } |
448 | 448 | |
449 | - return trim( $text ); |
|
449 | + return trim($text); |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | * |
458 | 458 | * @return array |
459 | 459 | */ |
460 | - public function get_comments( $status = 'approve', $order = 'DESC' ) { |
|
460 | + public function get_comments($status = 'approve', $order = 'DESC') { |
|
461 | 461 | |
462 | 462 | $_return = array(); |
463 | 463 | |
@@ -467,25 +467,25 @@ discard block |
||
467 | 467 | 'order' => $order, |
468 | 468 | ); |
469 | 469 | |
470 | - $comments = get_comments( $args ); |
|
470 | + $comments = get_comments($args); |
|
471 | 471 | |
472 | - foreach ( $comments as $comment ) { |
|
472 | + foreach ($comments as $comment) { |
|
473 | 473 | |
474 | - $_return[ $comment->comment_ID ] = new Comment( $comment ); |
|
474 | + $_return[$comment->comment_ID] = new Comment($comment); |
|
475 | 475 | |
476 | 476 | } |
477 | 477 | |
478 | - foreach ( $_return as $key => $comment ) { |
|
478 | + foreach ($_return as $key => $comment) { |
|
479 | 479 | |
480 | - if ( $comment->has_parent() ) { |
|
480 | + if ($comment->has_parent()) { |
|
481 | 481 | |
482 | - $_return[ $comment->comment_parent ]->add_child( $comment ); |
|
482 | + $_return[$comment->comment_parent]->add_child($comment); |
|
483 | 483 | |
484 | - unset( $_return[ $key ] ); |
|
484 | + unset($_return[$key]); |
|
485 | 485 | |
486 | 486 | } |
487 | 487 | } |
488 | 488 | |
489 | - return array_values( $_return ); |
|
489 | + return array_values($_return); |
|
490 | 490 | } |
491 | 491 | } |
@@ -19,18 +19,18 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @return \WP_Query |
21 | 21 | */ |
22 | - public static function find_query( $args = false ) { |
|
22 | + public static function find_query($args = false) { |
|
23 | 23 | $default_args = array(); |
24 | 24 | |
25 | - if ( ! $args ) { |
|
25 | + if (!$args) { |
|
26 | 26 | return self::get_current_query(); |
27 | 27 | } |
28 | 28 | |
29 | - if ( is_array( $args ) ) { |
|
30 | - return new \WP_Query( array_merge( $default_args, $args ) ); |
|
29 | + if (is_array($args)) { |
|
30 | + return new \WP_Query(array_merge($default_args, $args)); |
|
31 | 31 | } |
32 | 32 | |
33 | - return new \WP_Query( $default_args ); |
|
33 | + return new \WP_Query($default_args); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -40,8 +40,8 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public static function get_current_query() { |
42 | 42 | global $wp_query; |
43 | - $query =& $wp_query; |
|
44 | - $query = self::handle_maybe_custom_posts_page( $query ); |
|
43 | + $query = & $wp_query; |
|
44 | + $query = self::handle_maybe_custom_posts_page($query); |
|
45 | 45 | |
46 | 46 | return $query; |
47 | 47 | } |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | * |
54 | 54 | * @return \WP_Query |
55 | 55 | */ |
56 | - private static function handle_maybe_custom_posts_page( $query ) { |
|
57 | - if ( $custom_posts_page = get_option( 'page_for_posts' ) ) { |
|
56 | + private static function handle_maybe_custom_posts_page($query) { |
|
57 | + if ($custom_posts_page = get_option('page_for_posts')) { |
|
58 | 58 | if ( |
59 | - isset( $query->query['p'] ) && |
|
60 | - absint( $query->query['p'] ) === absint( $custom_posts_page ) |
|
59 | + isset($query->query['p']) && |
|
60 | + absint($query->query['p']) === absint($custom_posts_page) |
|
61 | 61 | ) { |
62 | - return new \WP_Query( array( 'post_type' => 'post' ) ); |
|
62 | + return new \WP_Query(array('post_type' => 'post')); |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 |
@@ -31,18 +31,18 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @param string $arg It can be menu id, slug or full name. |
33 | 33 | */ |
34 | - public function __construct( $arg = null ) { |
|
35 | - if ( is_numeric( $arg ) && 0 !== absint( $arg ) ) { |
|
36 | - $menu_id = $this->check_menu_id( $arg ); |
|
37 | - } elseif ( is_string( $arg ) ) { |
|
38 | - $menu_id = $this->get_menu_id_by_name( $arg ); |
|
34 | + public function __construct($arg = null) { |
|
35 | + if (is_numeric($arg) && 0 !== absint($arg)) { |
|
36 | + $menu_id = $this->check_menu_id($arg); |
|
37 | + } elseif (is_string($arg)) { |
|
38 | + $menu_id = $this->get_menu_id_by_name($arg); |
|
39 | 39 | } |
40 | 40 | |
41 | - if ( ! isset( $menu_id ) ) { |
|
41 | + if (!isset($menu_id)) { |
|
42 | 42 | $menu_id = $this->get_first_menu_id(); |
43 | 43 | } |
44 | 44 | |
45 | - if ( $menu_id ) { |
|
45 | + if ($menu_id) { |
|
46 | 46 | $this->ID = $menu_id; |
47 | 47 | $this->init(); |
48 | 48 | } |
@@ -53,21 +53,21 @@ discard block |
||
53 | 53 | */ |
54 | 54 | protected function init() { |
55 | 55 | $_return = array(); |
56 | - $items = wp_get_nav_menu_items( $this->ID ); |
|
56 | + $items = wp_get_nav_menu_items($this->ID); |
|
57 | 57 | |
58 | - foreach ( $items as $item ) { |
|
59 | - $_return[ $item->ID ] = new Menu_Item( $item ); |
|
58 | + foreach ($items as $item) { |
|
59 | + $_return[$item->ID] = new Menu_Item($item); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | // Apply nesting. |
63 | - foreach ( $_return as $item_id => $item ) { |
|
63 | + foreach ($_return as $item_id => $item) { |
|
64 | 64 | if ( |
65 | - isset( $item->menu_item_parent ) && |
|
65 | + isset($item->menu_item_parent) && |
|
66 | 66 | $item->menu_item_parent && |
67 | - isset( $_return[ $item->menu_item_parent ] ) |
|
67 | + isset($_return[$item->menu_item_parent]) |
|
68 | 68 | ) { |
69 | - $_return[ $item->menu_item_parent ]->add_child( $item ); |
|
70 | - unset( $_return[ $item_id ] ); |
|
69 | + $_return[$item->menu_item_parent]->add_child($item); |
|
70 | + unset($_return[$item_id]); |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | * @return int|bool |
81 | 81 | */ |
82 | 82 | protected function get_first_menu_id() { |
83 | - $menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) ); |
|
83 | + $menus = get_terms('nav_menu', array('hide_empty' => true)); |
|
84 | 84 | |
85 | - if ( is_array( $menus ) && count( $menus ) ) { |
|
86 | - if ( isset( $menus[0]->term_id ) ) { |
|
85 | + if (is_array($menus) && count($menus)) { |
|
86 | + if (isset($menus[0]->term_id)) { |
|
87 | 87 | return $menus[0]->term_id; |
88 | 88 | } |
89 | 89 | } |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return int|boolean |
100 | 100 | */ |
101 | - protected function check_menu_id( $menu_id ) { |
|
102 | - $menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) ); |
|
101 | + protected function check_menu_id($menu_id) { |
|
102 | + $menus = get_terms('nav_menu', array('hide_empty' => true)); |
|
103 | 103 | |
104 | - if ( is_array( $menus ) && count( $menus ) ) { |
|
105 | - foreach ( $menus as $menu ) { |
|
106 | - if ( absint( $menu->term_id ) === absint( $menu_id ) ) { |
|
104 | + if (is_array($menus) && count($menus)) { |
|
105 | + foreach ($menus as $menu) { |
|
106 | + if (absint($menu->term_id) === absint($menu_id)) { |
|
107 | 107 | return $menu_id; |
108 | 108 | } |
109 | 109 | } |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | * |
120 | 120 | * @return int|bool |
121 | 121 | */ |
122 | - protected function get_menu_id_by_name( $slug = null ) { |
|
123 | - if ( $slug && is_string( $slug ) ) { |
|
124 | - if ( $menu_id = get_term_by( 'slug', $slug, 'nav_menu' ) ) { |
|
122 | + protected function get_menu_id_by_name($slug = null) { |
|
123 | + if ($slug && is_string($slug)) { |
|
124 | + if ($menu_id = get_term_by('slug', $slug, 'nav_menu')) { |
|
125 | 125 | return $menu_id; |
126 | 126 | } |
127 | 127 | |
128 | - if ( $menu_id = get_term_by( 'name', $slug, 'nav_menu' ) ) { |
|
128 | + if ($menu_id = get_term_by('name', $slug, 'nav_menu')) { |
|
129 | 129 | return $menu_id; |
130 | 130 | } |
131 | 131 | } |
@@ -19,21 +19,21 @@ |
||
19 | 19 | * |
20 | 20 | * @return void |
21 | 21 | */ |
22 | - protected function import( $data ) { |
|
23 | - if ( is_object( $data ) ) { |
|
24 | - $data = get_object_vars( $data ); |
|
22 | + protected function import($data) { |
|
23 | + if (is_object($data)) { |
|
24 | + $data = get_object_vars($data); |
|
25 | 25 | } |
26 | 26 | |
27 | - if ( is_array( $data ) ) { |
|
27 | + if (is_array($data)) { |
|
28 | 28 | // In case if we import WP_User object. |
29 | - if ( isset( $data['data'] ) ) { |
|
29 | + if (isset($data['data'])) { |
|
30 | 30 | $data = $data['data']; |
31 | 31 | } |
32 | 32 | |
33 | - foreach ( $data as $key => $value ) { |
|
34 | - if ( ! empty( $key ) ) { |
|
33 | + foreach ($data as $key => $value) { |
|
34 | + if (!empty($key)) { |
|
35 | 35 | $this->$key = $value; |
36 | - } else if ( ! empty( $key ) && ! method_exists( $this, $key ) ) { |
|
36 | + } else if (!empty($key) && !method_exists($this, $key)) { |
|
37 | 37 | $this->$key = $value; |
38 | 38 | } |
39 | 39 | } |
@@ -35,15 +35,15 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @return array |
37 | 37 | */ |
38 | - public static function get_scope( $view_name = null ) { |
|
38 | + public static function get_scope($view_name = null) { |
|
39 | 39 | $scope = self::get_common_scope(); |
40 | 40 | |
41 | - if ( is_string( $view_name ) ) { |
|
42 | - $scope = self::extend_scope( $scope, $view_name ); |
|
41 | + if (is_string($view_name)) { |
|
42 | + $scope = self::extend_scope($scope, $view_name); |
|
43 | 43 | } else { |
44 | 44 | $request = Hierarchy::get_current_request(); |
45 | - $file = Hierarchy::get_available_file( 'scope', $request ); |
|
46 | - $scope = self::extend_scope( $scope, $file ); |
|
45 | + $file = Hierarchy::get_available_file('scope', $request); |
|
46 | + $scope = self::extend_scope($scope, $file); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | return $scope; |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @return array |
59 | 59 | */ |
60 | - public static function extend_scope( $scope, $view_name ) { |
|
61 | - return array_merge( $scope, self::require_scope( $view_name ) ); |
|
60 | + public static function extend_scope($scope, $view_name) { |
|
61 | + return array_merge($scope, self::require_scope($view_name)); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | * @return array |
68 | 68 | */ |
69 | 69 | public static function get_common_scope() { |
70 | - if ( is_null( self::$common ) ) { |
|
71 | - self::$common = self::require_scope( 'common' ); |
|
70 | + if (is_null(self::$common)) { |
|
71 | + self::$common = self::require_scope('common'); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return self::$common; |
@@ -81,16 +81,16 @@ discard block |
||
81 | 81 | * |
82 | 82 | * @return array |
83 | 83 | */ |
84 | - public static function require_scope( $filename ) { |
|
84 | + public static function require_scope($filename) { |
|
85 | 85 | $_return = array(); |
86 | 86 | |
87 | - $file = Hierarchy::get_file_path( 'scope', $filename ); |
|
87 | + $file = Hierarchy::get_file_path('scope', $filename); |
|
88 | 88 | |
89 | - if ( file_exists( $file ) ) { |
|
89 | + if (file_exists($file)) { |
|
90 | 90 | require $file; |
91 | 91 | } |
92 | 92 | |
93 | - if ( isset( $data ) ) { |
|
93 | + if (isset($data)) { |
|
94 | 94 | $_return = $data; |
95 | 95 | } |
96 | 96 |
@@ -43,25 +43,25 @@ discard block |
||
43 | 43 | * @return array |
44 | 44 | */ |
45 | 45 | public static function get_vars() { |
46 | - if ( is_null( self::$vars ) ) { |
|
46 | + if (is_null(self::$vars)) { |
|
47 | 47 | // Check for a theme config. |
48 | - $config_file = CLASSY_THEME_FRAMEWORK_PATH . 'config.php'; |
|
48 | + $config_file = CLASSY_THEME_FRAMEWORK_PATH.'config.php'; |
|
49 | 49 | |
50 | - if ( ! file_exists( $config_file ) ) { |
|
51 | - wp_die( sprintf( |
|
50 | + if (!file_exists($config_file)) { |
|
51 | + wp_die(sprintf( |
|
52 | 52 | 'There is no config file in %s custom/config.php', |
53 | - esc_html( CLASSY_THEME ) |
|
54 | - ) ); |
|
53 | + esc_html(CLASSY_THEME) |
|
54 | + )); |
|
55 | 55 | } |
56 | 56 | |
57 | - require_once( CLASSY_THEME_FRAMEWORK_PATH . 'config.php' ); |
|
57 | + require_once(CLASSY_THEME_FRAMEWORK_PATH.'config.php'); |
|
58 | 58 | $vars = self::get_allowed_variables(); |
59 | 59 | |
60 | - foreach ( $vars as $var ) { |
|
61 | - if ( isset( $$var ) ) { |
|
62 | - self::$vars[ $var ] = $$var; |
|
60 | + foreach ($vars as $var) { |
|
61 | + if (isset($$var)) { |
|
62 | + self::$vars[$var] = $$var; |
|
63 | 63 | |
64 | - unset( $$var ); // We don't require it anymore. |
|
64 | + unset($$var); // We don't require it anymore. |
|
65 | 65 | } |
66 | 66 | } |
67 | 67 | } |
@@ -76,23 +76,23 @@ discard block |
||
76 | 76 | $vars = self::get_vars(); |
77 | 77 | |
78 | 78 | // Init Post Types. |
79 | - if ( isset( $vars['post_types'] ) ) { |
|
80 | - self::init_post_types( $vars['post_types'] ); |
|
79 | + if (isset($vars['post_types'])) { |
|
80 | + self::init_post_types($vars['post_types']); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | // Init Taxonomies. |
84 | - if ( isset( $vars['taxonomies'] ) ) { |
|
85 | - self::init_taxonomies( $vars['taxonomies'] ); |
|
84 | + if (isset($vars['taxonomies'])) { |
|
85 | + self::init_taxonomies($vars['taxonomies']); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | // Init Post Formats. |
89 | - if ( isset( $vars['post_formats'] ) ) { |
|
90 | - self::init_post_formats( $vars['post_formats'] ); |
|
89 | + if (isset($vars['post_formats'])) { |
|
90 | + self::init_post_formats($vars['post_formats']); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | // Init Sidebars. |
94 | - if ( isset( $vars['sidebars'] ) ) { |
|
95 | - self::init_sidebars( $vars['sidebars'] ); |
|
94 | + if (isset($vars['sidebars'])) { |
|
95 | + self::init_sidebars($vars['sidebars']); |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
@@ -101,9 +101,9 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @param array $post_types Custom post types to be registered. |
103 | 103 | */ |
104 | - private static function init_post_types( $post_types ) { |
|
105 | - if ( is_array( $post_types ) ) { |
|
106 | - foreach ( $post_types as $type => $options ) { |
|
104 | + private static function init_post_types($post_types) { |
|
105 | + if (is_array($post_types)) { |
|
106 | + foreach ($post_types as $type => $options) { |
|
107 | 107 | self::add_post_type( |
108 | 108 | $type, |
109 | 109 | $options['config'], |
@@ -122,25 +122,25 @@ discard block |
||
122 | 122 | * @param string $singular Optional. Default singular name. |
123 | 123 | * @param string $multiple Optional. Default multiple name. |
124 | 124 | */ |
125 | - private static function add_post_type( $name, $config, $singular = 'Entry', $multiple = 'Entries' ) { |
|
125 | + private static function add_post_type($name, $config, $singular = 'Entry', $multiple = 'Entries') { |
|
126 | 126 | $domain = Classy::textdomain(); |
127 | 127 | |
128 | - if ( ! isset( $config['labels'] ) ) { |
|
128 | + if (!isset($config['labels'])) { |
|
129 | 129 | $config['labels'] = array( |
130 | - 'name' => __( $multiple, $domain ), |
|
131 | - 'singular_name' => __( $singular, $domain ), |
|
132 | - 'not_found' => __( 'No ' . $multiple . ' Found', $domain ), |
|
133 | - 'not_found_in_trash' => __( 'No ' . $multiple . ' found in Trash', $domain ), |
|
134 | - 'edit_item' => __( 'Edit ', $singular, $domain ), |
|
135 | - 'search_items' => __( 'Search ' . $multiple, $domain ), |
|
136 | - 'view_item' => __( 'View ', $singular, $domain ), |
|
137 | - 'new_item' => __( 'New ' . $singular, $domain ), |
|
138 | - 'add_new' => __( 'Add New', $domain ), |
|
139 | - 'add_new_item' => __( 'Add New ' . $singular, $domain ), |
|
130 | + 'name' => __($multiple, $domain), |
|
131 | + 'singular_name' => __($singular, $domain), |
|
132 | + 'not_found' => __('No '.$multiple.' Found', $domain), |
|
133 | + 'not_found_in_trash' => __('No '.$multiple.' found in Trash', $domain), |
|
134 | + 'edit_item' => __('Edit ', $singular, $domain), |
|
135 | + 'search_items' => __('Search '.$multiple, $domain), |
|
136 | + 'view_item' => __('View ', $singular, $domain), |
|
137 | + 'new_item' => __('New '.$singular, $domain), |
|
138 | + 'add_new' => __('Add New', $domain), |
|
139 | + 'add_new_item' => __('Add New '.$singular, $domain), |
|
140 | 140 | ); |
141 | 141 | } |
142 | 142 | |
143 | - register_post_type( $name, $config ); |
|
143 | + register_post_type($name, $config); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | * |
149 | 149 | * @param array $taxonomies Taxonomies to be registered. |
150 | 150 | */ |
151 | - private static function init_taxonomies( $taxonomies ) { |
|
152 | - if ( is_array( $taxonomies ) ) { |
|
153 | - foreach ( $taxonomies as $type => $options ) { |
|
151 | + private static function init_taxonomies($taxonomies) { |
|
152 | + if (is_array($taxonomies)) { |
|
153 | + foreach ($taxonomies as $type => $options) { |
|
154 | 154 | self::add_taxonomy( |
155 | 155 | $type, |
156 | 156 | $options['for'], |
@@ -171,26 +171,26 @@ discard block |
||
171 | 171 | * @param string $singular Optional. Default singular name. |
172 | 172 | * @param string $multiple Optional. Default multiple name. |
173 | 173 | */ |
174 | - private static function add_taxonomy( $name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries' ) { |
|
174 | + private static function add_taxonomy($name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries') { |
|
175 | 175 | $domain = Classy::textdomain(); |
176 | 176 | |
177 | - if ( ! isset( $config['labels'] ) ) { |
|
177 | + if (!isset($config['labels'])) { |
|
178 | 178 | $config['labels'] = array( |
179 | - 'name' => __( $multiple, $domain ), |
|
180 | - 'singular_name' => __( $singular, $domain ), |
|
181 | - 'search_items' => __( 'Search ' . $multiple, $domain ), |
|
182 | - 'all_items' => __( 'All ' . $multiple, $domain ), |
|
183 | - 'parent_item' => __( 'Parent ' . $singular, $domain ), |
|
184 | - 'parent_item_colon' => __( 'Parent ' . $singular . ':', $domain ), |
|
185 | - 'edit_item' => __( 'Edit ' . $singular, $domain ), |
|
186 | - 'update_item' => __( 'Update ' . $singular, $domain ), |
|
187 | - 'add_new_item' => __( 'Add New ' . $singular, $domain ), |
|
188 | - 'new_item_name' => __( 'New ' . $singular . ' Name', $domain ), |
|
189 | - 'menu_name' => __( $singular, $domain ), |
|
179 | + 'name' => __($multiple, $domain), |
|
180 | + 'singular_name' => __($singular, $domain), |
|
181 | + 'search_items' => __('Search '.$multiple, $domain), |
|
182 | + 'all_items' => __('All '.$multiple, $domain), |
|
183 | + 'parent_item' => __('Parent '.$singular, $domain), |
|
184 | + 'parent_item_colon' => __('Parent '.$singular.':', $domain), |
|
185 | + 'edit_item' => __('Edit '.$singular, $domain), |
|
186 | + 'update_item' => __('Update '.$singular, $domain), |
|
187 | + 'add_new_item' => __('Add New '.$singular, $domain), |
|
188 | + 'new_item_name' => __('New '.$singular.' Name', $domain), |
|
189 | + 'menu_name' => __($singular, $domain), |
|
190 | 190 | ); |
191 | 191 | } |
192 | 192 | |
193 | - register_taxonomy( $name, $object_type, $config ); |
|
193 | + register_taxonomy($name, $object_type, $config); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
@@ -198,9 +198,9 @@ discard block |
||
198 | 198 | * |
199 | 199 | * @param array $post_formats Array with available post formats. |
200 | 200 | */ |
201 | - private static function init_post_formats( $post_formats ) { |
|
202 | - if ( is_array( $post_formats ) ) { |
|
203 | - add_theme_support( 'post-formats', $post_formats ); |
|
201 | + private static function init_post_formats($post_formats) { |
|
202 | + if (is_array($post_formats)) { |
|
203 | + add_theme_support('post-formats', $post_formats); |
|
204 | 204 | } |
205 | 205 | } |
206 | 206 | |
@@ -209,16 +209,16 @@ discard block |
||
209 | 209 | * |
210 | 210 | * @param array $sidebars Sidebars to be registered. |
211 | 211 | */ |
212 | - private static function init_sidebars( $sidebars ) { |
|
212 | + private static function init_sidebars($sidebars) { |
|
213 | 213 | $domain = Classy::textdomain(); |
214 | 214 | |
215 | - if ( is_array( $sidebars ) ) { |
|
216 | - foreach ( $sidebars as $id => $title ) { |
|
215 | + if (is_array($sidebars)) { |
|
216 | + foreach ($sidebars as $id => $title) { |
|
217 | 217 | register_sidebar( |
218 | 218 | array( |
219 | 219 | 'id' => $id, |
220 | - 'name' => __( $title, $domain ), |
|
221 | - 'description' => __( $title, $domain ), |
|
220 | + 'name' => __($title, $domain), |
|
221 | + 'description' => __($title, $domain), |
|
222 | 222 | 'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="widget-inner">', |
223 | 223 | 'after_widget' => '</div></div>', |
224 | 224 | 'before_title' => '<h3>', |