@@ -12,7 +12,7 @@ |
||
12 | 12 | /** |
13 | 13 | * Returns list of allowed variables that can be used in theme config |
14 | 14 | * |
15 | - * @return array |
|
15 | + * @return string[] |
|
16 | 16 | */ |
17 | 17 | private static function get_allowed_variables() { |
18 | 18 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | private static function get_allowed_variables() { |
18 | 18 | |
19 | - return array('environment', 'textdomain', 'post_types', 'taxonomies', 'post_formats', 'sidebars');; |
|
19 | + return array('environment', 'textdomain', 'post_types', 'taxonomies', 'post_formats', 'sidebars'); ; |
|
20 | 20 | |
21 | 21 | } |
22 | 22 | |
@@ -27,14 +27,14 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function get_vars() { |
29 | 29 | |
30 | - if ( null === self::$vars ) { |
|
30 | + if (null === self::$vars) { |
|
31 | 31 | |
32 | 32 | // Check for a theme config |
33 | - $config_file = THEME_FRAMEWORK_PATH . 'config.php'; |
|
33 | + $config_file = THEME_FRAMEWORK_PATH.'config.php'; |
|
34 | 34 | |
35 | 35 | if (file_exists($config_file)) { |
36 | 36 | |
37 | - require_once THEME_FRAMEWORK_PATH . 'config.php'; |
|
37 | + require_once THEME_FRAMEWORK_PATH.'config.php'; |
|
38 | 38 | |
39 | 39 | $vars = self::get_allowed_variables(); |
40 | 40 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | } else { |
54 | 54 | |
55 | - die('There is no config file in ' . THEME . ' custom/config.php'); |
|
55 | + die('There is no config file in '.THEME.' custom/config.php'); |
|
56 | 56 | |
57 | 57 | } |
58 | 58 | |
@@ -73,16 +73,16 @@ discard block |
||
73 | 73 | $vars = self::get_vars(); |
74 | 74 | |
75 | 75 | // Init Post Types |
76 | - if (isset($vars['post_types'])) self::init_post_types( $vars['post_types'] ); |
|
76 | + if (isset($vars['post_types'])) self::init_post_types($vars['post_types']); |
|
77 | 77 | |
78 | 78 | // Init Taxonomies |
79 | - if (isset($vars['taxonomies'])) self::init_taxonomies( $vars['taxonomies'] ); |
|
79 | + if (isset($vars['taxonomies'])) self::init_taxonomies($vars['taxonomies']); |
|
80 | 80 | |
81 | 81 | // Init Post Formats |
82 | - if (isset($vars['post_formats'])) self::init_post_formats( $vars['post_formats'] ); |
|
82 | + if (isset($vars['post_formats'])) self::init_post_formats($vars['post_formats']); |
|
83 | 83 | |
84 | 84 | // Init Sidebars |
85 | - if (isset($vars['sidebars'])) self::init_sidebars( $vars['sidebars'] ); |
|
85 | + if (isset($vars['sidebars'])) self::init_sidebars($vars['sidebars']); |
|
86 | 86 | |
87 | 87 | } |
88 | 88 | |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | * |
94 | 94 | * @param array $post_types |
95 | 95 | */ |
96 | - private static function init_post_types( $post_types ) { |
|
96 | + private static function init_post_types($post_types) { |
|
97 | 97 | |
98 | 98 | if (is_array($post_types)) { |
99 | 99 | |
100 | - foreach ( $post_types as $type => $options ) { |
|
100 | + foreach ($post_types as $type => $options) { |
|
101 | 101 | |
102 | - self::add_post_type( $type, $options['config'], $options['singular'], $options['multiple'] ); |
|
102 | + self::add_post_type($type, $options['config'], $options['singular'], $options['multiple']); |
|
103 | 103 | |
104 | 104 | } |
105 | 105 | |
@@ -116,23 +116,23 @@ discard block |
||
116 | 116 | * @param string $singular |
117 | 117 | * @param string $multiple |
118 | 118 | */ |
119 | - private static function add_post_type( $name, $config, $singular = 'Entry', $multiple = 'Entries' ) { |
|
119 | + private static function add_post_type($name, $config, $singular = 'Entry', $multiple = 'Entries') { |
|
120 | 120 | |
121 | 121 | $domain = Classy::textdomain(); |
122 | 122 | |
123 | - if ( !isset($config['labels']) ) { |
|
123 | + if (!isset($config['labels'])) { |
|
124 | 124 | |
125 | 125 | $config['labels'] = array( |
126 | 126 | 'name' => __($multiple, $domain), |
127 | 127 | 'singular_name' => __($singular, $domain), |
128 | - 'not_found'=> __('No ' . $multiple . ' Found', $domain), |
|
129 | - 'not_found_in_trash'=> __('No ' . $multiple . ' found in Trash', $domain), |
|
128 | + 'not_found'=> __('No '.$multiple.' Found', $domain), |
|
129 | + 'not_found_in_trash'=> __('No '.$multiple.' found in Trash', $domain), |
|
130 | 130 | 'edit_item' => __('Edit ', $singular, $domain), |
131 | - 'search_items' => __('Search ' . $multiple, $domain), |
|
131 | + 'search_items' => __('Search '.$multiple, $domain), |
|
132 | 132 | 'view_item' => __('View ', $singular, $domain), |
133 | - 'new_item' => __('New ' . $singular, $domain), |
|
133 | + 'new_item' => __('New '.$singular, $domain), |
|
134 | 134 | 'add_new' => __('Add New', $domain), |
135 | - 'add_new_item' => __('Add New ' . $singular, $domain), |
|
135 | + 'add_new_item' => __('Add New '.$singular, $domain), |
|
136 | 136 | ); |
137 | 137 | |
138 | 138 | } |
@@ -146,13 +146,13 @@ discard block |
||
146 | 146 | * |
147 | 147 | * @param array $taxonomies |
148 | 148 | */ |
149 | - private static function init_taxonomies( $taxonomies ) { |
|
149 | + private static function init_taxonomies($taxonomies) { |
|
150 | 150 | |
151 | 151 | if (is_array($taxonomies)) { |
152 | 152 | |
153 | - foreach ( $taxonomies as $type => $options ) { |
|
153 | + foreach ($taxonomies as $type => $options) { |
|
154 | 154 | |
155 | - self::add_taxonomy( $type, $options['for'], $options['config'], $options['singular'], $options['multiple'] ); |
|
155 | + self::add_taxonomy($type, $options['for'], $options['config'], $options['singular'], $options['multiple']); |
|
156 | 156 | |
157 | 157 | } |
158 | 158 | |
@@ -170,23 +170,23 @@ discard block |
||
170 | 170 | * @param string $singular |
171 | 171 | * @param string $multiple |
172 | 172 | */ |
173 | - private static function add_taxonomy( $name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries' ) { |
|
173 | + private static function add_taxonomy($name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries') { |
|
174 | 174 | |
175 | 175 | $domain = Classy::textdomain(); |
176 | 176 | |
177 | - if ( !isset($config['labels']) ) { |
|
177 | + if (!isset($config['labels'])) { |
|
178 | 178 | |
179 | 179 | $config['labels'] = array( |
180 | 180 | 'name' => __($multiple, $domain), |
181 | 181 | 'singular_name' => __($singular, $domain), |
182 | - 'search_items' => __('Search ' . $multiple, $domain), |
|
183 | - 'all_items' => __('All ' . $multiple, $domain), |
|
184 | - 'parent_item' => __('Parent ' . $singular, $domain), |
|
185 | - 'parent_item_colon' => __('Parent ' . $singular . ':', $domain), |
|
186 | - 'edit_item' => __('Edit ' . $singular, $domain), |
|
187 | - 'update_item' => __('Update ' . $singular, $domain), |
|
188 | - 'add_new_item' => __('Add New ' . $singular, $domain), |
|
189 | - 'new_item_name' => __('New ' . $singular . ' Name', $domain), |
|
182 | + 'search_items' => __('Search '.$multiple, $domain), |
|
183 | + 'all_items' => __('All '.$multiple, $domain), |
|
184 | + 'parent_item' => __('Parent '.$singular, $domain), |
|
185 | + 'parent_item_colon' => __('Parent '.$singular.':', $domain), |
|
186 | + 'edit_item' => __('Edit '.$singular, $domain), |
|
187 | + 'update_item' => __('Update '.$singular, $domain), |
|
188 | + 'add_new_item' => __('Add New '.$singular, $domain), |
|
189 | + 'new_item_name' => __('New '.$singular.' Name', $domain), |
|
190 | 190 | 'menu_name' => __($singular, $domain), |
191 | 191 | ); |
192 | 192 | |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * |
203 | 203 | * @param array $post_formats |
204 | 204 | */ |
205 | - private static function init_post_formats( $post_formats ) { |
|
205 | + private static function init_post_formats($post_formats) { |
|
206 | 206 | |
207 | 207 | if (is_array($post_formats)) { |
208 | 208 | |
@@ -218,13 +218,13 @@ discard block |
||
218 | 218 | * |
219 | 219 | * @param array $sidebars |
220 | 220 | */ |
221 | - private static function init_sidebars( $sidebars ) { |
|
221 | + private static function init_sidebars($sidebars) { |
|
222 | 222 | |
223 | 223 | $domain = Classy::textdomain(); |
224 | 224 | |
225 | 225 | if (is_array($sidebars)) { |
226 | 226 | |
227 | - foreach ( $sidebars as $id => $title ) { |
|
227 | + foreach ($sidebars as $id => $title) { |
|
228 | 228 | |
229 | 229 | register_sidebar( |
230 | 230 | array( |
@@ -50,7 +50,8 @@ discard block |
||
50 | 50 | |
51 | 51 | } |
52 | 52 | |
53 | - } else { |
|
53 | + } |
|
54 | + else { |
|
54 | 55 | |
55 | 56 | die('There is no config file in ' . THEME . ' custom/config.php'); |
56 | 57 | |
@@ -73,16 +74,24 @@ discard block |
||
73 | 74 | $vars = self::get_vars(); |
74 | 75 | |
75 | 76 | // Init Post Types |
76 | - if (isset($vars['post_types'])) self::init_post_types( $vars['post_types'] ); |
|
77 | + if (isset($vars['post_types'])) { |
|
78 | + self::init_post_types( $vars['post_types'] ); |
|
79 | + } |
|
77 | 80 | |
78 | 81 | // Init Taxonomies |
79 | - if (isset($vars['taxonomies'])) self::init_taxonomies( $vars['taxonomies'] ); |
|
82 | + if (isset($vars['taxonomies'])) { |
|
83 | + self::init_taxonomies( $vars['taxonomies'] ); |
|
84 | + } |
|
80 | 85 | |
81 | 86 | // Init Post Formats |
82 | - if (isset($vars['post_formats'])) self::init_post_formats( $vars['post_formats'] ); |
|
87 | + if (isset($vars['post_formats'])) { |
|
88 | + self::init_post_formats( $vars['post_formats'] ); |
|
89 | + } |
|
83 | 90 | |
84 | 91 | // Init Sidebars |
85 | - if (isset($vars['sidebars'])) self::init_sidebars( $vars['sidebars'] ); |
|
92 | + if (isset($vars['sidebars'])) { |
|
93 | + self::init_sidebars( $vars['sidebars'] ); |
|
94 | + } |
|
86 | 95 | |
87 | 96 | } |
88 | 97 |
@@ -12,6 +12,7 @@ |
||
12 | 12 | /** |
13 | 13 | * Returns basic scope |
14 | 14 | * |
15 | + * @param string $template_name |
|
15 | 16 | * @return array |
16 | 17 | */ |
17 | 18 | public static function get_scope($template_name = null) { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public static function get_common_scope() { |
55 | 55 | |
56 | - if ( null === self::$common ) { |
|
56 | + if (null === self::$common) { |
|
57 | 57 | |
58 | 58 | self::$common = self::require_scope('common'); |
59 | 59 | |
@@ -73,15 +73,15 @@ discard block |
||
73 | 73 | |
74 | 74 | $return = array(); |
75 | 75 | |
76 | - $file = THEME_PATH . 'scope/' . $filename . '.php'; |
|
76 | + $file = THEME_PATH.'scope/'.$filename.'.php'; |
|
77 | 77 | |
78 | - if ( file_exists($file) ) { |
|
78 | + if (file_exists($file)) { |
|
79 | 79 | |
80 | 80 | require $file; |
81 | 81 | |
82 | 82 | } |
83 | 83 | |
84 | - if ( isset($data) ) { |
|
84 | + if (isset($data)) { |
|
85 | 85 | |
86 | 86 | $return = $data; |
87 | 87 |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * Returns template name for render, based on type of request |
53 | 53 | * |
54 | 54 | * @param string $type |
55 | - * @return array |
|
55 | + * @return string|false |
|
56 | 56 | */ |
57 | 57 | public static function get_available_template($type) { |
58 | 58 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * Returns list of templates to check, based on type of request |
78 | 78 | * |
79 | 79 | * @param string $type |
80 | - * @return array |
|
80 | + * @return string[] |
|
81 | 81 | */ |
82 | 82 | private static function get_request_templates_list($type) { |
83 | 83 | |
@@ -336,6 +336,7 @@ discard block |
||
336 | 336 | /** |
337 | 337 | * Returns available template, based on page argument |
338 | 338 | * |
339 | + * @param string $page |
|
339 | 340 | * @return string |
340 | 341 | */ |
341 | 342 | public static function get_blade_template($page = null) { |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $template = str_replace('.', '/', $template); |
31 | 31 | |
32 | - return THEME_PATH . self::$theme_templates_folder . '/' . $template . '.blade.php'; |
|
32 | + return THEME_PATH.self::$theme_templates_folder.'/'.$template.'.blade.php'; |
|
33 | 33 | |
34 | 34 | } |
35 | 35 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | foreach ($templates as $template) { |
62 | 62 | |
63 | - if ( self::template_exists($template) ): |
|
63 | + if (self::template_exists($template)): |
|
64 | 64 | |
65 | 65 | return $template; |
66 | 66 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | // Home |
88 | 88 | |
89 | - if ( $type == 'home' ) : |
|
89 | + if ($type == 'home') : |
|
90 | 90 | |
91 | 91 | $templates[] = 'home'; |
92 | 92 | $templates[] = 'index'; |
@@ -94,32 +94,32 @@ discard block |
||
94 | 94 | |
95 | 95 | // Single |
96 | 96 | |
97 | - elseif ( $type == 'single' ) : |
|
97 | + elseif ($type == 'single') : |
|
98 | 98 | |
99 | - $post_type = get_query_var( 'post_type' ); |
|
99 | + $post_type = get_query_var('post_type'); |
|
100 | 100 | |
101 | - $templates[] = 'single-' . $post_type; |
|
101 | + $templates[] = 'single-'.$post_type; |
|
102 | 102 | |
103 | 103 | $templates[] = 'single'; |
104 | 104 | |
105 | 105 | // Post type |
106 | 106 | |
107 | - elseif ( $type == 'post_type_archive' ) : |
|
107 | + elseif ($type == 'post_type_archive') : |
|
108 | 108 | |
109 | - $post_type = get_query_var( 'post_type' ); |
|
109 | + $post_type = get_query_var('post_type'); |
|
110 | 110 | |
111 | - $templates[] = 'archive-' . $post_type; |
|
111 | + $templates[] = 'archive-'.$post_type; |
|
112 | 112 | |
113 | 113 | $templates[] = 'archive'; |
114 | 114 | |
115 | 115 | |
116 | 116 | // Taxonomy |
117 | 117 | |
118 | - elseif ( $type == 'taxonomy' ): |
|
118 | + elseif ($type == 'taxonomy'): |
|
119 | 119 | |
120 | 120 | $term = get_queried_object(); |
121 | 121 | |
122 | - if ( ! empty( $term->slug ) ) { |
|
122 | + if (!empty($term->slug)) { |
|
123 | 123 | |
124 | 124 | $taxonomy = $term->taxonomy; |
125 | 125 | |
@@ -132,11 +132,11 @@ discard block |
||
132 | 132 | |
133 | 133 | // Category |
134 | 134 | |
135 | - elseif ( $type == 'category' ): |
|
135 | + elseif ($type == 'category'): |
|
136 | 136 | |
137 | 137 | $category = get_queried_object(); |
138 | 138 | |
139 | - if ( ! empty( $category->slug ) ) { |
|
139 | + if (!empty($category->slug)) { |
|
140 | 140 | $templates[] = "category-{$category->slug}"; |
141 | 141 | $templates[] = "category-{$category->term_id}"; |
142 | 142 | } |
@@ -145,23 +145,23 @@ discard block |
||
145 | 145 | |
146 | 146 | // Attachment |
147 | 147 | |
148 | - elseif ( $type == 'attachment' ): |
|
148 | + elseif ($type == 'attachment'): |
|
149 | 149 | |
150 | 150 | $attachment = get_queried_object(); |
151 | 151 | |
152 | - if ( $attachment ) { |
|
152 | + if ($attachment) { |
|
153 | 153 | |
154 | - if ( false !== strpos( $attachment->post_mime_type, '/' ) ) { |
|
154 | + if (false !== strpos($attachment->post_mime_type, '/')) { |
|
155 | 155 | |
156 | - list( $type, $subtype ) = explode( '/', $attachment->post_mime_type ); |
|
156 | + list($type, $subtype) = explode('/', $attachment->post_mime_type); |
|
157 | 157 | |
158 | 158 | } else { |
159 | 159 | |
160 | - list( $type, $subtype ) = array( $attachment->post_mime_type, '' ); |
|
160 | + list($type, $subtype) = array($attachment->post_mime_type, ''); |
|
161 | 161 | |
162 | 162 | } |
163 | 163 | |
164 | - if ( ! empty( $subtype ) ) { |
|
164 | + if (!empty($subtype)) { |
|
165 | 165 | $templates[] = "{$type}-{$subtype}"; |
166 | 166 | $templates[] = "{$subtype}"; |
167 | 167 | } |
@@ -173,11 +173,11 @@ discard block |
||
173 | 173 | |
174 | 174 | // Tag |
175 | 175 | |
176 | - elseif ( $type == 'tag' ): |
|
176 | + elseif ($type == 'tag'): |
|
177 | 177 | |
178 | 178 | $tag = get_queried_object(); |
179 | 179 | |
180 | - if ( ! empty( $tag->slug ) ) { |
|
180 | + if (!empty($tag->slug)) { |
|
181 | 181 | $templates[] = "tag-{$tag->slug}"; |
182 | 182 | $templates[] = "tag-{$tag->term_id}"; |
183 | 183 | } |
@@ -186,11 +186,11 @@ discard block |
||
186 | 186 | |
187 | 187 | // Author |
188 | 188 | |
189 | - elseif ( $type == 'author' ): |
|
189 | + elseif ($type == 'author'): |
|
190 | 190 | |
191 | 191 | $author = get_queried_object(); |
192 | 192 | |
193 | - if ( $author instanceof WP_User ) { |
|
193 | + if ($author instanceof WP_User) { |
|
194 | 194 | $templates[] = "author-{$author->user_nicename}"; |
195 | 195 | $templates[] = "author-{$author->ID}"; |
196 | 196 | } |
@@ -199,32 +199,32 @@ discard block |
||
199 | 199 | |
200 | 200 | // Front Page |
201 | 201 | |
202 | - elseif ( $type == 'front-page' ): |
|
202 | + elseif ($type == 'front-page'): |
|
203 | 203 | |
204 | 204 | $id = get_queried_object_id(); |
205 | 205 | |
206 | 206 | $pagename = get_query_var('pagename'); |
207 | 207 | |
208 | - if ( ! $pagename && $id ) { |
|
208 | + if (!$pagename && $id) { |
|
209 | 209 | // If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object |
210 | 210 | $post = get_queried_object(); |
211 | - if ( $post ) |
|
211 | + if ($post) |
|
212 | 212 | $pagename = $post->post_name; |
213 | 213 | } |
214 | 214 | |
215 | 215 | $template = get_post_meta('theme-page-template', $id); |
216 | 216 | |
217 | - if ( $template != 'index' ) |
|
217 | + if ($template != 'index') |
|
218 | 218 | $templates[] = $template; |
219 | - if ( $pagename ) |
|
219 | + if ($pagename) |
|
220 | 220 | $templates[] = "page-$pagename"; |
221 | - if ( $id ) |
|
221 | + if ($id) |
|
222 | 222 | $templates[] = "page-$id"; |
223 | 223 | $templates[] = ''; |
224 | 224 | |
225 | 225 | // Page |
226 | 226 | |
227 | - elseif ( $type == 'page' ): |
|
227 | + elseif ($type == 'page'): |
|
228 | 228 | |
229 | 229 | $id = get_queried_object_id(); |
230 | 230 | |
@@ -232,18 +232,18 @@ discard block |
||
232 | 232 | |
233 | 233 | $pagename = get_query_var('pagename'); |
234 | 234 | |
235 | - if ( ! $pagename && $id ) { |
|
235 | + if (!$pagename && $id) { |
|
236 | 236 | // If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object |
237 | 237 | $post = get_queried_object(); |
238 | - if ( $post ) |
|
238 | + if ($post) |
|
239 | 239 | $pagename = $post->post_name; |
240 | 240 | } |
241 | 241 | |
242 | - if ( $template != 'index' ) |
|
242 | + if ($template != 'index') |
|
243 | 243 | $templates[] = $template; |
244 | - if ( $pagename ) |
|
244 | + if ($pagename) |
|
245 | 245 | $templates[] = "page-$pagename"; |
246 | - if ( $id ) |
|
246 | + if ($id) |
|
247 | 247 | $templates[] = "page-$id"; |
248 | 248 | $templates[] = 'page'; |
249 | 249 | |
@@ -269,37 +269,37 @@ discard block |
||
269 | 269 | */ |
270 | 270 | public static function get_current_page() { |
271 | 271 | |
272 | - if ( is_404() && $template = self::get_available_template('404') ) : |
|
272 | + if (is_404() && $template = self::get_available_template('404')) : |
|
273 | 273 | |
274 | - elseif ( is_search() && $template = self::get_available_template('search') ) : |
|
274 | + elseif (is_search() && $template = self::get_available_template('search')) : |
|
275 | 275 | |
276 | - elseif ( is_front_page() && $template = self::get_available_template('front-page') ) : |
|
276 | + elseif (is_front_page() && $template = self::get_available_template('front-page')) : |
|
277 | 277 | |
278 | - elseif ( is_home() && $template = self::get_available_template('home') ) : |
|
278 | + elseif (is_home() && $template = self::get_available_template('home')) : |
|
279 | 279 | |
280 | - elseif ( is_post_type_archive() && $template = self::get_available_template('post_type_archive') ) : |
|
280 | + elseif (is_post_type_archive() && $template = self::get_available_template('post_type_archive')) : |
|
281 | 281 | |
282 | - elseif ( is_tax() && $template = self::get_available_template('taxonomy') ) : |
|
282 | + elseif (is_tax() && $template = self::get_available_template('taxonomy')) : |
|
283 | 283 | |
284 | - elseif ( is_attachment() && $template = self::get_available_template('attachment') ) : |
|
284 | + elseif (is_attachment() && $template = self::get_available_template('attachment')) : |
|
285 | 285 | |
286 | - elseif ( is_single() && $template = self::get_available_template('single') ) : |
|
286 | + elseif (is_single() && $template = self::get_available_template('single')) : |
|
287 | 287 | |
288 | - elseif ( is_page() && $template = self::get_available_template('page') ) : |
|
288 | + elseif (is_page() && $template = self::get_available_template('page')) : |
|
289 | 289 | |
290 | - elseif ( is_singular() && $template = self::get_available_template('singular') ) : |
|
290 | + elseif (is_singular() && $template = self::get_available_template('singular')) : |
|
291 | 291 | |
292 | - elseif ( is_category() && $template = self::get_available_template('category') ) : |
|
292 | + elseif (is_category() && $template = self::get_available_template('category')) : |
|
293 | 293 | |
294 | - elseif ( is_tag() && $template = self::get_available_template('tag') ) : |
|
294 | + elseif (is_tag() && $template = self::get_available_template('tag')) : |
|
295 | 295 | |
296 | - elseif ( is_author() && $template = self::get_available_template('author') ) : |
|
296 | + elseif (is_author() && $template = self::get_available_template('author')) : |
|
297 | 297 | |
298 | - elseif ( is_date() && $template = self::get_available_template('date') ) : |
|
298 | + elseif (is_date() && $template = self::get_available_template('date')) : |
|
299 | 299 | |
300 | - elseif ( is_archive() && $template = self::get_available_template('archive') ) : |
|
300 | + elseif (is_archive() && $template = self::get_available_template('archive')) : |
|
301 | 301 | |
302 | - elseif ( is_paged() && $template = self::get_available_template('paged') ) : |
|
302 | + elseif (is_paged() && $template = self::get_available_template('paged')) : |
|
303 | 303 | |
304 | 304 | else : |
305 | 305 | |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | |
327 | 327 | } else { |
328 | 328 | |
329 | - return $template . '.' . $template; |
|
329 | + return $template.'.'.$template; |
|
330 | 330 | |
331 | 331 | } |
332 | 332 | |
@@ -368,8 +368,8 @@ discard block |
||
368 | 368 | */ |
369 | 369 | public static function render($template = null, $data = null) { |
370 | 370 | |
371 | - $views = THEME_PATH . self::$theme_templates_folder; |
|
372 | - $cache = WP_CONTENT_DIR . '/templatecache'; |
|
371 | + $views = THEME_PATH.self::$theme_templates_folder; |
|
372 | + $cache = WP_CONTENT_DIR.'/templatecache'; |
|
373 | 373 | $common_scope = ClassyScope::get_common_scope(); |
374 | 374 | |
375 | 375 | if ($template !== null && is_string($template)) { |
@@ -155,7 +155,8 @@ discard block |
||
155 | 155 | |
156 | 156 | list( $type, $subtype ) = explode( '/', $attachment->post_mime_type ); |
157 | 157 | |
158 | - } else { |
|
158 | + } |
|
159 | + else { |
|
159 | 160 | |
160 | 161 | list( $type, $subtype ) = array( $attachment->post_mime_type, '' ); |
161 | 162 | |
@@ -208,18 +209,22 @@ discard block |
||
208 | 209 | if ( ! $pagename && $id ) { |
209 | 210 | // If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object |
210 | 211 | $post = get_queried_object(); |
211 | - if ( $post ) |
|
212 | - $pagename = $post->post_name; |
|
212 | + if ( $post ) { |
|
213 | + $pagename = $post->post_name; |
|
214 | + } |
|
213 | 215 | } |
214 | 216 | |
215 | 217 | $template = get_post_meta('theme-page-template', $id); |
216 | 218 | |
217 | - if ( $template != 'index' ) |
|
218 | - $templates[] = $template; |
|
219 | - if ( $pagename ) |
|
220 | - $templates[] = "page-$pagename"; |
|
221 | - if ( $id ) |
|
222 | - $templates[] = "page-$id"; |
|
219 | + if ( $template != 'index' ) { |
|
220 | + $templates[] = $template; |
|
221 | + } |
|
222 | + if ( $pagename ) { |
|
223 | + $templates[] = "page-$pagename"; |
|
224 | + } |
|
225 | + if ( $id ) { |
|
226 | + $templates[] = "page-$id"; |
|
227 | + } |
|
223 | 228 | $templates[] = ''; |
224 | 229 | |
225 | 230 | // Page |
@@ -235,24 +240,30 @@ discard block |
||
235 | 240 | if ( ! $pagename && $id ) { |
236 | 241 | // If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object |
237 | 242 | $post = get_queried_object(); |
238 | - if ( $post ) |
|
239 | - $pagename = $post->post_name; |
|
243 | + if ( $post ) { |
|
244 | + $pagename = $post->post_name; |
|
245 | + } |
|
240 | 246 | } |
241 | 247 | |
242 | - if ( $template != 'index' ) |
|
243 | - $templates[] = $template; |
|
244 | - if ( $pagename ) |
|
245 | - $templates[] = "page-$pagename"; |
|
246 | - if ( $id ) |
|
247 | - $templates[] = "page-$id"; |
|
248 | + if ( $template != 'index' ) { |
|
249 | + $templates[] = $template; |
|
250 | + } |
|
251 | + if ( $pagename ) { |
|
252 | + $templates[] = "page-$pagename"; |
|
253 | + } |
|
254 | + if ( $id ) { |
|
255 | + $templates[] = "page-$id"; |
|
256 | + } |
|
248 | 257 | $templates[] = 'page'; |
249 | 258 | |
250 | 259 | |
251 | 260 | // Default |
252 | 261 | |
253 | - else: |
|
262 | + else { |
|
263 | + : |
|
254 | 264 | |
255 | 265 | $templates[] = $type; |
266 | + } |
|
256 | 267 | |
257 | 268 | endif; |
258 | 269 | |
@@ -301,9 +312,11 @@ discard block |
||
301 | 312 | |
302 | 313 | elseif ( is_paged() && $template = self::get_available_template('paged') ) : |
303 | 314 | |
304 | - else : |
|
315 | + else { |
|
316 | + : |
|
305 | 317 | |
306 | 318 | $template = 'index'; |
319 | + } |
|
307 | 320 | |
308 | 321 | endif; |
309 | 322 | |
@@ -324,7 +337,8 @@ discard block |
||
324 | 337 | |
325 | 338 | return $template; |
326 | 339 | |
327 | - } else { |
|
340 | + } |
|
341 | + else { |
|
328 | 342 | |
329 | 343 | return $template . '.' . $template; |
330 | 344 | |
@@ -378,13 +392,15 @@ discard block |
||
378 | 392 | |
379 | 393 | $scope = array_merge($common_scope, $data); |
380 | 394 | |
381 | - } else { |
|
395 | + } |
|
396 | + else { |
|
382 | 397 | |
383 | 398 | $scope = $common_scope; |
384 | 399 | |
385 | 400 | } |
386 | 401 | |
387 | - } else { |
|
402 | + } |
|
403 | + else { |
|
388 | 404 | |
389 | 405 | $current_page = self::get_current_page(); |
390 | 406 |
@@ -54,6 +54,7 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @param string |
56 | 56 | * @param string |
57 | + * @param string $name |
|
57 | 58 | */ |
58 | 59 | private function define( $name, $value ) { |
59 | 60 | if ( !defined($name) ) { |
@@ -241,7 +242,7 @@ discard block |
||
241 | 242 | |
242 | 243 | /** |
243 | 244 | * @param array $prefs |
244 | - * @return array mixed |
|
245 | + * @return stdClass mixed |
|
245 | 246 | */ |
246 | 247 | public static function get_pagination( $prefs = array() ) { |
247 | 248 | global $wp_query; |
@@ -146,7 +146,9 @@ discard block |
||
146 | 146 | public static function get_config_var($name) { |
147 | 147 | $vars = ClassyConfig::get_vars(); |
148 | 148 | |
149 | - if (isset($vars[$name])) return $vars[$name]; |
|
149 | + if (isset($vars[$name])) { |
|
150 | + return $vars[$name]; |
|
151 | + } |
|
150 | 152 | |
151 | 153 | return false; |
152 | 154 | } |
@@ -207,11 +209,13 @@ discard block |
||
207 | 209 | |
208 | 210 | $_return[] = new ClassyPost($post_id); |
209 | 211 | |
210 | - } elseif($return_type == 'object') { |
|
212 | + } |
|
213 | + elseif($return_type == 'object') { |
|
211 | 214 | |
212 | 215 | $_return[] = get_post($post_id); |
213 | 216 | |
214 | - } else { |
|
217 | + } |
|
218 | + else { |
|
215 | 219 | |
216 | 220 | $_return[] = $post_id; |
217 | 221 | |
@@ -263,7 +267,8 @@ discard block |
||
263 | 267 | $args['format'] = 'page/%#%'; |
264 | 268 | $args['base'] = trailingslashit( $url[0] ).'%_%'; |
265 | 269 | |
266 | - } else { |
|
270 | + } |
|
271 | + else { |
|
267 | 272 | $big = 999999999; |
268 | 273 | $args['base'] = str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ); |
269 | 274 | } |
@@ -275,7 +280,8 @@ discard block |
||
275 | 280 | |
276 | 281 | if ( is_int( $prefs ) ) { |
277 | 282 | $args['mid_size'] = $prefs - 2; |
278 | - } else { |
|
283 | + } |
|
284 | + else { |
|
279 | 285 | $args = array_merge( $args, $prefs ); |
280 | 286 | } |
281 | 287 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @return Classy A single instance of this class. |
26 | 26 | */ |
27 | 27 | public static function get_instance() { |
28 | - if ( null === self::$single_instance ) { |
|
28 | + if (null === self::$single_instance) { |
|
29 | 29 | self::$single_instance = new self(); |
30 | 30 | } |
31 | 31 | |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | * @param string |
56 | 56 | * @param string |
57 | 57 | */ |
58 | - private function define( $name, $value ) { |
|
59 | - if ( !defined($name) ) { |
|
58 | + private function define($name, $value) { |
|
59 | + if (!defined($name)) { |
|
60 | 60 | |
61 | - define( $name, $value ); |
|
61 | + define($name, $value); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | } |
@@ -72,61 +72,61 @@ discard block |
||
72 | 72 | private function define_constants() { |
73 | 73 | $theme = wp_get_theme(); |
74 | 74 | |
75 | - $this->define( 'THEME', $theme->template ); |
|
76 | - $this->define( 'THEME_NAME', $theme->get('Name') ); |
|
77 | - $this->define( 'THEME_PATH', get_template_directory() . '/' ); |
|
78 | - $this->define( 'THEME_DIR', get_template_directory_uri() . '/' ); |
|
79 | - $this->define( 'THEME_VERSION', $theme->get('Version') ); |
|
80 | - $this->define( 'THEME_FRAMEWORK_PATH', THEME_PATH . 'app/' ); |
|
81 | - $this->define( 'THEME_FRAMEWORK_DIR', THEME_DIR . 'app/' ); |
|
75 | + $this->define('THEME', $theme->template); |
|
76 | + $this->define('THEME_NAME', $theme->get('Name')); |
|
77 | + $this->define('THEME_PATH', get_template_directory().'/'); |
|
78 | + $this->define('THEME_DIR', get_template_directory_uri().'/'); |
|
79 | + $this->define('THEME_VERSION', $theme->get('Version')); |
|
80 | + $this->define('THEME_FRAMEWORK_PATH', THEME_PATH.'app/'); |
|
81 | + $this->define('THEME_FRAMEWORK_DIR', THEME_DIR.'app/'); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Include core files that are responsible for theme render |
86 | 86 | */ |
87 | 87 | private function include_core_files() { |
88 | - require_once THEME_PATH . 'vendor/autoload.php'; |
|
88 | + require_once THEME_PATH.'vendor/autoload.php'; |
|
89 | 89 | |
90 | 90 | // Basis Class |
91 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-basis.php'; |
|
91 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-basis.php'; |
|
92 | 92 | |
93 | 93 | // Theme Config |
94 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-config.php'; |
|
94 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-config.php'; |
|
95 | 95 | |
96 | 96 | // Scope |
97 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-scope.php'; |
|
97 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-scope.php'; |
|
98 | 98 | |
99 | 99 | // Template Loader |
100 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-template.php'; |
|
100 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-template.php'; |
|
101 | 101 | |
102 | 102 | // Helper functions |
103 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-helper.php'; |
|
103 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-helper.php'; |
|
104 | 104 | |
105 | 105 | // Query Helper |
106 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-query-helper.php'; |
|
106 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-query-helper.php'; |
|
107 | 107 | |
108 | 108 | // Menu |
109 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-menu.php'; |
|
109 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-menu.php'; |
|
110 | 110 | |
111 | 111 | // Menu Item |
112 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-menu-item.php'; |
|
112 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-menu-item.php'; |
|
113 | 113 | |
114 | 114 | // Comment |
115 | - require_once THEME_FRAMEWORK_PATH . 'classy/classy-comment.php'; |
|
115 | + require_once THEME_FRAMEWORK_PATH.'classy/classy-comment.php'; |
|
116 | 116 | |
117 | 117 | // Appearance |
118 | - require_once THEME_FRAMEWORK_PATH . 'appearance.php'; |
|
118 | + require_once THEME_FRAMEWORK_PATH.'appearance.php'; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Include theme Object-Orienter models |
123 | 123 | */ |
124 | 124 | private function include_models() { |
125 | - $files = (array) glob( THEME_FRAMEWORK_PATH . '/models/*.php' ); |
|
125 | + $files = (array) glob(THEME_FRAMEWORK_PATH.'/models/*.php'); |
|
126 | 126 | |
127 | - foreach ( $files as $filename ) { |
|
127 | + foreach ($files as $filename) { |
|
128 | 128 | |
129 | - if ( !empty($filename) ) { |
|
129 | + if (!empty($filename)) { |
|
130 | 130 | |
131 | 131 | require_once $filename; |
132 | 132 | |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | |
213 | 213 | $_return[] = new ClassyPost($post_id); |
214 | 214 | |
215 | - } elseif($return_type == 'object') { |
|
215 | + } elseif ($return_type == 'object') { |
|
216 | 216 | |
217 | 217 | $_return[] = get_post($post_id); |
218 | 218 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | public static function get_post($args = false, $return_type = 'ClassyPost') { |
240 | 240 | $posts = self::get_posts($args, $return_type); |
241 | 241 | |
242 | - if ( $post = reset($posts ) ) { |
|
242 | + if ($post = reset($posts)) { |
|
243 | 243 | return $post; |
244 | 244 | } |
245 | 245 | } |
@@ -248,57 +248,57 @@ discard block |
||
248 | 248 | * @param array $prefs |
249 | 249 | * @return array mixed |
250 | 250 | */ |
251 | - public static function get_pagination( $prefs = array() ) { |
|
251 | + public static function get_pagination($prefs = array()) { |
|
252 | 252 | global $wp_query; |
253 | 253 | global $paged; |
254 | 254 | global $wp_rewrite; |
255 | 255 | |
256 | 256 | $args = array(); |
257 | - $args['total'] = ceil( $wp_query->found_posts / $wp_query->query_vars['posts_per_page'] ); |
|
257 | + $args['total'] = ceil($wp_query->found_posts / $wp_query->query_vars['posts_per_page']); |
|
258 | 258 | |
259 | - if ( $wp_rewrite->using_permalinks() ) { |
|
259 | + if ($wp_rewrite->using_permalinks()) { |
|
260 | 260 | |
261 | - $url = explode( '?', get_pagenum_link( 0 ) ); |
|
261 | + $url = explode('?', get_pagenum_link(0)); |
|
262 | 262 | |
263 | - if ( isset( $url[1] ) ) { |
|
264 | - parse_str( $url[1], $query ); |
|
263 | + if (isset($url[1])) { |
|
264 | + parse_str($url[1], $query); |
|
265 | 265 | $args['add_args'] = $query; |
266 | 266 | } |
267 | 267 | |
268 | 268 | $args['format'] = 'page/%#%'; |
269 | - $args['base'] = trailingslashit( $url[0] ).'%_%'; |
|
269 | + $args['base'] = trailingslashit($url[0]).'%_%'; |
|
270 | 270 | |
271 | 271 | } else { |
272 | 272 | $big = 999999999; |
273 | - $args['base'] = str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ); |
|
273 | + $args['base'] = str_replace($big, '%#%', esc_url(get_pagenum_link($big))); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | $args['type'] = 'array'; |
277 | - $args['current'] = max( 1, get_query_var( 'paged' ) ); |
|
278 | - $args['mid_size'] = max( 9 - $args['current'], 3 ); |
|
277 | + $args['current'] = max(1, get_query_var('paged')); |
|
278 | + $args['mid_size'] = max(9 - $args['current'], 3); |
|
279 | 279 | $args['prev_next'] = false; |
280 | 280 | |
281 | - if ( is_int( $prefs ) ) { |
|
281 | + if (is_int($prefs)) { |
|
282 | 282 | $args['mid_size'] = $prefs - 2; |
283 | 283 | } else { |
284 | - $args = array_merge( $args, $prefs ); |
|
284 | + $args = array_merge($args, $prefs); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | $data = array(); |
288 | - $data['pages'] = ClassyHelper::paginate_links( $args ); |
|
289 | - $next = get_next_posts_page_link( $args['total'] ); |
|
288 | + $data['pages'] = ClassyHelper::paginate_links($args); |
|
289 | + $next = get_next_posts_page_link($args['total']); |
|
290 | 290 | |
291 | - if ( $next ) { |
|
292 | - $data['next'] = array( 'link' => untrailingslashit( $next ), 'class' => 'page-numbers next' ); |
|
291 | + if ($next) { |
|
292 | + $data['next'] = array('link' => untrailingslashit($next), 'class' => 'page-numbers next'); |
|
293 | 293 | } |
294 | 294 | |
295 | - $prev = previous_posts( false ); |
|
295 | + $prev = previous_posts(false); |
|
296 | 296 | |
297 | - if ( $prev ) { |
|
298 | - $data['prev'] = array( 'link' => untrailingslashit( $prev ), 'class' => 'page-numbers prev' ); |
|
297 | + if ($prev) { |
|
298 | + $data['prev'] = array('link' => untrailingslashit($prev), 'class' => 'page-numbers prev'); |
|
299 | 299 | } |
300 | 300 | |
301 | - if ( $paged < 2 ) { |
|
301 | + if ($paged < 2) { |
|
302 | 302 | $data['prev'] = null; |
303 | 303 | } |
304 | 304 |
@@ -61,6 +61,9 @@ |
||
61 | 61 | $this->init(); |
62 | 62 | } |
63 | 63 | |
64 | + /** |
|
65 | + * @param integer|null $uid |
|
66 | + */ |
|
64 | 67 | private function verify_id($uid) { |
65 | 68 | return $uid; |
66 | 69 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $this->import($object); |
81 | 81 | |
82 | 82 | if (isset($this->first_name) && isset($this->last_name)) { |
83 | - $this->name = $this->first_name . ' ' . $this->last_name; |
|
83 | + $this->name = $this->first_name.' '.$this->last_name; |
|
84 | 84 | } else { |
85 | 85 | $this->name = 'Anonymous'; |
86 | 86 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @return string |
158 | 158 | */ |
159 | 159 | public function link() { |
160 | - if ( !$this->link ) { |
|
160 | + if (!$this->link) { |
|
161 | 161 | $this->link = get_author_posts_url($this->ID); |
162 | 162 | } |
163 | 163 |
@@ -43,7 +43,8 @@ |
||
43 | 43 | |
44 | 44 | wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/min/production.js', array( 'jquery' ), THEME_VERSION, true ); |
45 | 45 | |
46 | - } else { |
|
46 | + } |
|
47 | + else { |
|
47 | 48 | |
48 | 49 | wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/plugins.js', array( 'jquery' ), THEME_VERSION, true ); |
49 | 50 |
@@ -109,21 +109,21 @@ |
||
109 | 109 | * |
110 | 110 | * @return boolean |
111 | 111 | */ |
112 | - public function can_edit() { |
|
113 | - if ( !function_exists( 'current_user_can' ) ) { |
|
114 | - return false; |
|
115 | - } |
|
116 | - if ( current_user_can( 'edit_post', $this->ID ) ) { |
|
117 | - return true; |
|
118 | - } |
|
119 | - return false; |
|
120 | - } |
|
121 | - |
|
122 | - /** |
|
123 | - * Returns the Post Edit url |
|
124 | - * |
|
125 | - * @return string |
|
126 | - */ |
|
112 | + public function can_edit() { |
|
113 | + if ( !function_exists( 'current_user_can' ) ) { |
|
114 | + return false; |
|
115 | + } |
|
116 | + if ( current_user_can( 'edit_post', $this->ID ) ) { |
|
117 | + return true; |
|
118 | + } |
|
119 | + return false; |
|
120 | + } |
|
121 | + |
|
122 | + /** |
|
123 | + * Returns the Post Edit url |
|
124 | + * |
|
125 | + * @return string |
|
126 | + */ |
|
127 | 127 | public function get_edit_url() { |
128 | 128 | if ( $this->can_edit() ) { |
129 | 129 | return get_edit_post_link($this->ID); |
@@ -110,10 +110,10 @@ discard block |
||
110 | 110 | * @return boolean |
111 | 111 | */ |
112 | 112 | public function can_edit() { |
113 | - if ( !function_exists( 'current_user_can' ) ) { |
|
113 | + if (!function_exists('current_user_can')) { |
|
114 | 114 | return false; |
115 | 115 | } |
116 | - if ( current_user_can( 'edit_post', $this->ID ) ) { |
|
116 | + if (current_user_can('edit_post', $this->ID)) { |
|
117 | 117 | return true; |
118 | 118 | } |
119 | 119 | return false; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @return string |
126 | 126 | */ |
127 | 127 | public function get_edit_url() { |
128 | - if ( $this->can_edit() ) { |
|
128 | + if ($this->can_edit()) { |
|
129 | 129 | return get_edit_post_link($this->ID); |
130 | 130 | } |
131 | 131 | } |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | * @return ClassyImage |
138 | 138 | */ |
139 | 139 | public function get_thumbnail() { |
140 | - if ( function_exists('get_post_thumbnail_id') ) { |
|
140 | + if (function_exists('get_post_thumbnail_id')) { |
|
141 | 141 | $image_id = get_post_thumbnail_id($this->ID); |
142 | 142 | |
143 | - if ( $image_id ) { |
|
143 | + if ($image_id) { |
|
144 | 144 | return new ClassyImage($image_id); |
145 | 145 | } |
146 | 146 | } |
@@ -172,19 +172,19 @@ discard block |
||
172 | 172 | * @param integer $page Page number, in case our post has <!--nextpage--> tags |
173 | 173 | * @return string Post content |
174 | 174 | */ |
175 | - public function get_content( $page = 0 ) { |
|
176 | - if ( $page == 0 && $this->post_content ) { |
|
175 | + public function get_content($page = 0) { |
|
176 | + if ($page == 0 && $this->post_content) { |
|
177 | 177 | return $this->post_content; |
178 | 178 | } |
179 | 179 | |
180 | 180 | $content = $this->post_content; |
181 | 181 | |
182 | - if ( $page ) { |
|
182 | + if ($page) { |
|
183 | 183 | $contents = explode('<!--nextpage-->', $content); |
184 | 184 | |
185 | 185 | $page--; |
186 | 186 | |
187 | - if ( count($contents) > $page ) { |
|
187 | + if (count($contents) > $page) { |
|
188 | 188 | $content = $contents[$page]; |
189 | 189 | } |
190 | 190 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | * @return string |
220 | 220 | */ |
221 | 221 | public function get_permalink() { |
222 | - if ( isset($this->permalink) ) { |
|
222 | + if (isset($this->permalink)) { |
|
223 | 223 | return $this->permalink; |
224 | 224 | } |
225 | 225 | |
@@ -253,9 +253,9 @@ discard block |
||
253 | 253 | $text = ''; |
254 | 254 | $trimmed = false; |
255 | 255 | |
256 | - if ( isset($this->post_excerpt) && strlen($this->post_excerpt) ) { |
|
256 | + if (isset($this->post_excerpt) && strlen($this->post_excerpt)) { |
|
257 | 257 | |
258 | - if ( $force ) { |
|
258 | + if ($force) { |
|
259 | 259 | $text = ClassyHelper::trim_words($this->post_excerpt, $len, false); |
260 | 260 | $trimmed = true; |
261 | 261 | } else { |
@@ -264,65 +264,65 @@ discard block |
||
264 | 264 | |
265 | 265 | } |
266 | 266 | |
267 | - if ( !strlen($text) && preg_match('/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches) ) { |
|
267 | + if (!strlen($text) && preg_match('/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches)) { |
|
268 | 268 | |
269 | 269 | $pieces = explode($readmore_matches[0], $this->post_content); |
270 | 270 | $text = $pieces[0]; |
271 | 271 | |
272 | - if ( $force ) { |
|
272 | + if ($force) { |
|
273 | 273 | $text = ClassyHelper::trim_words($text, $len, false); |
274 | 274 | $trimmed = true; |
275 | 275 | } |
276 | 276 | |
277 | - $text = do_shortcode( $text ); |
|
277 | + $text = do_shortcode($text); |
|
278 | 278 | |
279 | 279 | } |
280 | 280 | |
281 | - if ( !strlen($text) ) { |
|
281 | + if (!strlen($text)) { |
|
282 | 282 | |
283 | 283 | $text = ClassyHelper::trim_words($this->get_content(), $len, false); |
284 | 284 | $trimmed = true; |
285 | 285 | |
286 | 286 | } |
287 | 287 | |
288 | - if ( !strlen(trim($text)) ) { |
|
288 | + if (!strlen(trim($text))) { |
|
289 | 289 | |
290 | 290 | return trim($text); |
291 | 291 | |
292 | 292 | } |
293 | 293 | |
294 | - if ( $strip ) { |
|
294 | + if ($strip) { |
|
295 | 295 | |
296 | 296 | $text = trim(strip_tags($text)); |
297 | 297 | |
298 | 298 | } |
299 | 299 | |
300 | - if ( strlen($text) ) { |
|
300 | + if (strlen($text)) { |
|
301 | 301 | |
302 | 302 | $text = trim($text); |
303 | 303 | $last = $text[strlen($text) - 1]; |
304 | 304 | |
305 | - if ( $last != '.' && $trimmed ) { |
|
305 | + if ($last != '.' && $trimmed) { |
|
306 | 306 | $text .= ' … '; |
307 | 307 | } |
308 | 308 | |
309 | - if ( !$strip ) { |
|
309 | + if (!$strip) { |
|
310 | 310 | $last_p_tag = strrpos($text, '</p>'); |
311 | - if ( $last_p_tag !== false ) { |
|
311 | + if ($last_p_tag !== false) { |
|
312 | 312 | $text = substr($text, 0, $last_p_tag); |
313 | 313 | } |
314 | - if ( $last != '.' && $trimmed ) { |
|
314 | + if ($last != '.' && $trimmed) { |
|
315 | 315 | $text .= ' … '; |
316 | 316 | } |
317 | 317 | } |
318 | 318 | |
319 | - if ( $readmore && isset($readmore_matches) && !empty($readmore_matches[1]) ) { |
|
320 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim($readmore_matches[1]) . '</a>'; |
|
321 | - } elseif ( $readmore ) { |
|
322 | - $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim($readmore) . '</a>'; |
|
319 | + if ($readmore && isset($readmore_matches) && !empty($readmore_matches[1])) { |
|
320 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore_matches[1]).'</a>'; |
|
321 | + } elseif ($readmore) { |
|
322 | + $text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore).'</a>'; |
|
323 | 323 | } |
324 | 324 | |
325 | - if ( !$strip ) { |
|
325 | + if (!$strip) { |
|
326 | 326 | $text .= '</p>'; |
327 | 327 | } |
328 | 328 |
@@ -258,7 +258,8 @@ discard block |
||
258 | 258 | if ( $force ) { |
259 | 259 | $text = ClassyHelper::trim_words($this->post_excerpt, $len, false); |
260 | 260 | $trimmed = true; |
261 | - } else { |
|
261 | + } |
|
262 | + else { |
|
262 | 263 | $text = $this->post_excerpt; |
263 | 264 | } |
264 | 265 | |
@@ -318,7 +319,8 @@ discard block |
||
318 | 319 | |
319 | 320 | if ( $readmore && isset($readmore_matches) && !empty($readmore_matches[1]) ) { |
320 | 321 | $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim($readmore_matches[1]) . '</a>'; |
321 | - } elseif ( $readmore ) { |
|
322 | + } |
|
323 | + elseif ( $readmore ) { |
|
322 | 324 | $text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim($readmore) . '</a>'; |
323 | 325 | } |
324 | 326 |
@@ -9,13 +9,13 @@ discard block |
||
9 | 9 | |
10 | 10 | public function __construct() { |
11 | 11 | |
12 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) ); |
|
12 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_styles')); |
|
13 | 13 | |
14 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); |
|
14 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts')); |
|
15 | 15 | |
16 | - add_action( 'wp_print_scripts', array($this, 'init_js_vars') ); |
|
16 | + add_action('wp_print_scripts', array($this, 'init_js_vars')); |
|
17 | 17 | |
18 | - add_action( 'after_setup_theme', array($this, 'setup_theme') ); |
|
18 | + add_action('after_setup_theme', array($this, 'setup_theme')); |
|
19 | 19 | |
20 | 20 | } |
21 | 21 | |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public function enqueue_styles() { |
26 | 26 | |
27 | - wp_register_style( 'flotheme_general_css', THEME_DIR . 'assets/css/general.css', array(), THEME_VERSION, 'all' ); |
|
27 | + wp_register_style('flotheme_general_css', THEME_DIR.'assets/css/general.css', array(), THEME_VERSION, 'all'); |
|
28 | 28 | |
29 | - wp_enqueue_style( 'flotheme_general_css' ); |
|
29 | + wp_enqueue_style('flotheme_general_css'); |
|
30 | 30 | |
31 | 31 | } |
32 | 32 | |
@@ -35,27 +35,27 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function enqueue_scripts() { |
37 | 37 | |
38 | - wp_deregister_script( 'jquery' ); |
|
38 | + wp_deregister_script('jquery'); |
|
39 | 39 | |
40 | - wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js', array(), THEME_VERSION, true ); |
|
40 | + wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js', array(), THEME_VERSION, true); |
|
41 | 41 | |
42 | - if ( Classy::get_config_var('environment') == 'production' ) { |
|
42 | + if (Classy::get_config_var('environment') == 'production') { |
|
43 | 43 | |
44 | - wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/min/production.js', array( 'jquery' ), THEME_VERSION, true ); |
|
44 | + wp_register_script('theme_plugins', THEME_DIR.'assets/js/min/production.js', array('jquery'), THEME_VERSION, true); |
|
45 | 45 | |
46 | 46 | } else { |
47 | 47 | |
48 | - wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/plugins.js', array( 'jquery' ), THEME_VERSION, true ); |
|
48 | + wp_register_script('theme_plugins', THEME_DIR.'assets/js/plugins.js', array('jquery'), THEME_VERSION, true); |
|
49 | 49 | |
50 | - wp_register_script( 'theme_scripts', THEME_DIR . 'assets/js/scripts.js', array( 'jquery' ), THEME_VERSION, true ); |
|
50 | + wp_register_script('theme_scripts', THEME_DIR.'assets/js/scripts.js', array('jquery'), THEME_VERSION, true); |
|
51 | 51 | |
52 | 52 | } |
53 | 53 | |
54 | - wp_enqueue_script( 'theme_plugins' ); |
|
54 | + wp_enqueue_script('theme_plugins'); |
|
55 | 55 | |
56 | - wp_enqueue_script( 'theme_scripts' ); |
|
56 | + wp_enqueue_script('theme_scripts'); |
|
57 | 57 | |
58 | - wp_enqueue_script( 'theme_production' ); |
|
58 | + wp_enqueue_script('theme_production'); |
|
59 | 59 | |
60 | 60 | } |
61 | 61 |
@@ -43,7 +43,8 @@ |
||
43 | 43 | |
44 | 44 | wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/min/production.js', array( 'jquery' ), THEME_VERSION, true ); |
45 | 45 | |
46 | - } else { |
|
46 | + } |
|
47 | + else { |
|
47 | 48 | |
48 | 49 | wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/plugins.js', array( 'jquery' ), THEME_VERSION, true ); |
49 | 50 |
@@ -36,13 +36,13 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public static function get_current_query() { |
38 | 38 | |
39 | - global $wp_query; |
|
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 | - return $query; |
|
45 | + return $query; |
|
46 | 46 | |
47 | 47 | } |
48 | 48 | |
@@ -52,20 +52,20 @@ 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']) && $query->query['p'] == $custom_posts_page ) { |
|
59 | + if ( isset($query->query['p']) && $query->query['p'] == $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 | |
65 | - } |
|
65 | + } |
|
66 | 66 | |
67 | - return $query; |
|
67 | + return $query; |
|
68 | 68 | |
69 | - } |
|
69 | + } |
|
70 | 70 | |
71 | 71 | } |
72 | 72 | \ No newline at end of file |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | global $wp_query; |
40 | 40 | |
41 | - $query =& $wp_query; |
|
41 | + $query = & $wp_query; |
|
42 | 42 | |
43 | 43 | $query = self::handle_maybe_custom_posts_page($query); |
44 | 44 | |
@@ -52,11 +52,11 @@ 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 | 57 | if ($custom_posts_page = get_option('page_for_posts')) { |
58 | 58 | |
59 | - if ( isset($query->query['p']) && $query->query['p'] == $custom_posts_page ) { |
|
59 | + if (isset($query->query['p']) && $query->query['p'] == $custom_posts_page) { |
|
60 | 60 | |
61 | 61 | return new WP_Query(array('post_type' => 'post')); |
62 | 62 |
@@ -16,13 +16,15 @@ |
||
16 | 16 | |
17 | 17 | return self::get_current_query(); |
18 | 18 | |
19 | - } elseif (is_array($args)) { |
|
19 | + } |
|
20 | + elseif (is_array($args)) { |
|
20 | 21 | |
21 | 22 | $args = array_merge($default_args, $args); |
22 | 23 | |
23 | 24 | return new WP_Query($args); |
24 | 25 | |
25 | - } else { |
|
26 | + } |
|
27 | + else { |
|
26 | 28 | |
27 | 29 | return new WP_Query($default_args); |
28 | 30 |
@@ -6,36 +6,36 @@ |
||
6 | 6 | |
7 | 7 | class ClassyBasis { |
8 | 8 | |
9 | - /** |
|
10 | - * Imports data params into the class instance |
|
11 | - * |
|
12 | - * @param object/array $data |
|
13 | - * @return void |
|
14 | - */ |
|
9 | + /** |
|
10 | + * Imports data params into the class instance |
|
11 | + * |
|
12 | + * @param object/array $data |
|
13 | + * @return void |
|
14 | + */ |
|
15 | 15 | protected function import($data) { |
16 | 16 | |
17 | - if ( is_object( $data ) ) { |
|
17 | + if ( is_object( $data ) ) { |
|
18 | 18 | |
19 | - $data = get_object_vars( $data ); |
|
19 | + $data = get_object_vars( $data ); |
|
20 | 20 | |
21 | - } |
|
21 | + } |
|
22 | 22 | |
23 | - if ( is_array( $data ) ) { |
|
23 | + if ( is_array( $data ) ) { |
|
24 | 24 | |
25 | - foreach ( $data as $key => $value ) { |
|
25 | + foreach ( $data as $key => $value ) { |
|
26 | 26 | |
27 | - if ( !empty( $key ) ) { |
|
27 | + if ( !empty( $key ) ) { |
|
28 | 28 | |
29 | - $this->$key = $value; |
|
29 | + $this->$key = $value; |
|
30 | 30 | |
31 | - } else if ( !empty( $key ) && !method_exists($this, $key) ){ |
|
31 | + } else if ( !empty( $key ) && !method_exists($this, $key) ){ |
|
32 | 32 | |
33 | - $this->$key = $value; |
|
33 | + $this->$key = $value; |
|
34 | 34 | |
35 | - } |
|
36 | - } |
|
35 | + } |
|
36 | + } |
|
37 | 37 | |
38 | - } |
|
38 | + } |
|
39 | 39 | |
40 | 40 | } |
41 | 41 |
@@ -14,21 +14,21 @@ |
||
14 | 14 | */ |
15 | 15 | protected function import($data) { |
16 | 16 | |
17 | - if ( is_object( $data ) ) { |
|
17 | + if (is_object($data)) { |
|
18 | 18 | |
19 | - $data = get_object_vars( $data ); |
|
19 | + $data = get_object_vars($data); |
|
20 | 20 | |
21 | 21 | } |
22 | 22 | |
23 | - if ( is_array( $data ) ) { |
|
23 | + if (is_array($data)) { |
|
24 | 24 | |
25 | - foreach ( $data as $key => $value ) { |
|
25 | + foreach ($data as $key => $value) { |
|
26 | 26 | |
27 | - if ( !empty( $key ) ) { |
|
27 | + if (!empty($key)) { |
|
28 | 28 | |
29 | 29 | $this->$key = $value; |
30 | 30 | |
31 | - } else if ( !empty( $key ) && !method_exists($this, $key) ){ |
|
31 | + } else if (!empty($key) && !method_exists($this, $key)) { |
|
32 | 32 | |
33 | 33 | $this->$key = $value; |
34 | 34 |
@@ -28,7 +28,8 @@ |
||
28 | 28 | |
29 | 29 | $this->$key = $value; |
30 | 30 | |
31 | - } else if ( !empty( $key ) && !method_exists($this, $key) ){ |
|
31 | + } |
|
32 | + else if ( !empty( $key ) && !method_exists($this, $key) ) { |
|
32 | 33 | |
33 | 34 | $this->$key = $value; |
34 | 35 |