@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | */ |
19 | 19 | |
20 | 20 | // Check if Class Exists. |
21 | -if ( ! class_exists( 'WP_Bootstrap_Navwalker' ) ) : |
|
21 | +if ( ! class_exists('WP_Bootstrap_Navwalker')) : |
|
22 | 22 | /** |
23 | 23 | * WP_Bootstrap_Navwalker class. |
24 | 24 | */ |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | * @since 4.2.0 |
39 | 39 | */ |
40 | 40 | public function __construct() { |
41 | - if ( ! has_filter( 'wp_nav_menu_args', array( $this, 'add_schema_to_navbar_ul' ) ) ) { |
|
42 | - add_filter( 'wp_nav_menu_args', array( $this, 'add_schema_to_navbar_ul' ) ); |
|
41 | + if ( ! has_filter('wp_nav_menu_args', array($this, 'add_schema_to_navbar_ul'))) { |
|
42 | + add_filter('wp_nav_menu_args', array($this, 'add_schema_to_navbar_ul')); |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
@@ -54,17 +54,17 @@ discard block |
||
54 | 54 | * @param int $depth Depth of menu item. Used for padding. |
55 | 55 | * @param WP_Nav_Menu_Args $args An object of wp_nav_menu() arguments. |
56 | 56 | */ |
57 | - public function start_lvl( &$output, $depth = 0, $args = null ) { |
|
58 | - if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) { |
|
57 | + public function start_lvl(&$output, $depth = 0, $args = null) { |
|
58 | + if (isset($args->item_spacing) && 'discard' === $args->item_spacing) { |
|
59 | 59 | $t = ''; |
60 | 60 | $n = ''; |
61 | 61 | } else { |
62 | 62 | $t = "\t"; |
63 | 63 | $n = "\n"; |
64 | 64 | } |
65 | - $indent = str_repeat( $t, $depth ); |
|
65 | + $indent = str_repeat($t, $depth); |
|
66 | 66 | // Default class to add to the file. |
67 | - $classes = array( 'dropdown-menu' ); |
|
67 | + $classes = array('dropdown-menu'); |
|
68 | 68 | /** |
69 | 69 | * Filters the CSS class(es) applied to a menu list element. |
70 | 70 | * |
@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | * @param stdClass $args An object of `wp_nav_menu()` arguments. |
75 | 75 | * @param int $depth Depth of menu item. Used for padding. |
76 | 76 | */ |
77 | - $class_names = join( ' ', apply_filters( 'nav_menu_submenu_css_class', $classes, $args, $depth ) ); |
|
78 | - $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
|
77 | + $class_names = join(' ', apply_filters('nav_menu_submenu_css_class', $classes, $args, $depth)); |
|
78 | + $class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : ''; |
|
79 | 79 | |
80 | 80 | /* |
81 | 81 | * The `.dropdown-menu` container needs to have a labelledby |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | */ |
87 | 87 | $labelledby = ''; |
88 | 88 | // Find all links with an id in the output. |
89 | - preg_match_all( '/(<a.*?id=\"|\')(.*?)\"|\'.*?>/im', $output, $matches ); |
|
89 | + preg_match_all('/(<a.*?id=\"|\')(.*?)\"|\'.*?>/im', $output, $matches); |
|
90 | 90 | // With pointer at end of array check if we got an ID match. |
91 | - if ( end( $matches[2] ) ) { |
|
91 | + if (end($matches[2])) { |
|
92 | 92 | // Build a string to use as aria-labelledby. |
93 | - $labelledby = 'aria-labelledby="' . esc_attr( end( $matches[2] ) ) . '"'; |
|
93 | + $labelledby = 'aria-labelledby="' . esc_attr(end($matches[2])) . '"'; |
|
94 | 94 | } |
95 | 95 | $output .= "{$n}{$indent}<ul$class_names $labelledby>{$n}"; |
96 | 96 | } |
@@ -109,23 +109,23 @@ discard block |
||
109 | 109 | * @param WP_Nav_Menu_Args $args An object of wp_nav_menu() arguments. |
110 | 110 | * @param int $id Current item ID. |
111 | 111 | */ |
112 | - public function start_el( &$output, $item, $depth = 0, $args = null, $id = 0 ) { |
|
113 | - if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) { |
|
112 | + public function start_el(&$output, $item, $depth = 0, $args = null, $id = 0) { |
|
113 | + if (isset($args->item_spacing) && 'discard' === $args->item_spacing) { |
|
114 | 114 | $t = ''; |
115 | 115 | $n = ''; |
116 | 116 | } else { |
117 | 117 | $t = "\t"; |
118 | 118 | $n = "\n"; |
119 | 119 | } |
120 | - $indent = ( $depth ) ? str_repeat( $t, $depth ) : ''; |
|
120 | + $indent = ($depth) ? str_repeat($t, $depth) : ''; |
|
121 | 121 | |
122 | - if ( false !== strpos( $args->items_wrap, 'itemscope' ) && false === $this->has_schema ) { |
|
122 | + if (false !== strpos($args->items_wrap, 'itemscope') && false === $this->has_schema) { |
|
123 | 123 | $this->has_schema = true; |
124 | 124 | $args->link_before = '<span itemprop="name">' . $args->link_before; |
125 | 125 | $args->link_after .= '</span>'; |
126 | 126 | } |
127 | 127 | |
128 | - $classes = empty( $item->classes ) ? array() : (array) $item->classes; |
|
128 | + $classes = empty($item->classes) ? array() : (array) $item->classes; |
|
129 | 129 | |
130 | 130 | /* |
131 | 131 | * Initialize some holder variables to store specially handled item |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | * NOTE: linkmod and icon class arrays are passed by reference and |
141 | 141 | * are maybe modified before being used later in this function. |
142 | 142 | */ |
143 | - $classes = self::separate_linkmods_and_icons_from_classes( $classes, $linkmod_classes, $icon_classes, $depth ); |
|
143 | + $classes = self::separate_linkmods_and_icons_from_classes($classes, $linkmod_classes, $icon_classes, $depth); |
|
144 | 144 | |
145 | 145 | // Join any icon classes plucked from $classes into a string. |
146 | - $icon_class_string = join( ' ', $icon_classes ); |
|
146 | + $icon_class_string = join(' ', $icon_classes); |
|
147 | 147 | |
148 | 148 | /** |
149 | 149 | * Filters the arguments for a single nav menu item. |
@@ -156,13 +156,13 @@ discard block |
||
156 | 156 | * |
157 | 157 | * @var WP_Nav_Menu_Args |
158 | 158 | */ |
159 | - $args = apply_filters( 'nav_menu_item_args', $args, $item, $depth ); |
|
159 | + $args = apply_filters('nav_menu_item_args', $args, $item, $depth); |
|
160 | 160 | |
161 | 161 | // Add .dropdown or .active classes where they are needed. |
162 | - if ( $this->has_children ) { |
|
162 | + if ($this->has_children) { |
|
163 | 163 | $classes[] = 'dropdown'; |
164 | 164 | } |
165 | - if ( in_array( 'current-menu-item', $classes, true ) || in_array( 'current-menu-parent', $classes, true ) ) { |
|
165 | + if (in_array('current-menu-item', $classes, true) || in_array('current-menu-parent', $classes, true)) { |
|
166 | 166 | $classes[] = 'active'; |
167 | 167 | } |
168 | 168 | |
@@ -171,11 +171,11 @@ discard block |
||
171 | 171 | $classes[] = 'nav-item'; |
172 | 172 | |
173 | 173 | // Allow filtering the classes. |
174 | - $classes = apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ); |
|
174 | + $classes = apply_filters('nav_menu_css_class', array_filter($classes), $item, $args, $depth); |
|
175 | 175 | |
176 | 176 | // Form a string of classes in format: class="class_names". |
177 | - $class_names = join( ' ', $classes ); |
|
178 | - $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
|
177 | + $class_names = join(' ', $classes); |
|
178 | + $class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : ''; |
|
179 | 179 | |
180 | 180 | /** |
181 | 181 | * Filters the ID applied to a menu item's list item element. |
@@ -188,24 +188,24 @@ discard block |
||
188 | 188 | * @param WP_Nav_Menu_Args $args An object of wp_nav_menu() arguments. |
189 | 189 | * @param int $depth Depth of menu item. Used for padding. |
190 | 190 | */ |
191 | - $id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args, $depth ); |
|
192 | - $id = $id ? ' id="' . esc_attr( $id ) . '"' : ''; |
|
191 | + $id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args, $depth); |
|
192 | + $id = $id ? ' id="' . esc_attr($id) . '"' : ''; |
|
193 | 193 | |
194 | 194 | $output .= $indent . '<li ' . $id . $class_names . '>'; |
195 | 195 | |
196 | 196 | // Initialize array for holding the $atts for the link item. |
197 | 197 | $atts = array(); |
198 | 198 | |
199 | - $atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : ''; |
|
200 | - $atts['target'] = ! empty( $item->target ) ? $item->target : ''; |
|
201 | - if ( '_blank' === $item->target && empty( $item->xfn ) ) { |
|
199 | + $atts['title'] = ! empty($item->attr_title) ? $item->attr_title : ''; |
|
200 | + $atts['target'] = ! empty($item->target) ? $item->target : ''; |
|
201 | + if ('_blank' === $item->target && empty($item->xfn)) { |
|
202 | 202 | $atts['rel'] = 'noopener noreferrer'; |
203 | 203 | } else { |
204 | - $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : ''; |
|
204 | + $atts['rel'] = ! empty($item->xfn) ? $item->xfn : ''; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | // If the item has_children add atts to <a>. |
208 | - if ( $args->has_children && 0 === $depth && $args->depth > 1 ) { |
|
208 | + if ($args->has_children && 0 === $depth && $args->depth > 1) { |
|
209 | 209 | $atts['href'] = '#'; |
210 | 210 | $atts['data-toggle'] = 'dropdown'; |
211 | 211 | $atts['aria-haspopup'] = 'true'; |
@@ -213,13 +213,13 @@ discard block |
||
213 | 213 | $atts['class'] = 'dropdown-toggle nav-link'; |
214 | 214 | $atts['id'] = 'menu-item-dropdown-' . $item->ID; |
215 | 215 | } else { |
216 | - if ( true === $this->has_schema ) { |
|
216 | + if (true === $this->has_schema) { |
|
217 | 217 | $atts['itemprop'] = 'url'; |
218 | 218 | } |
219 | 219 | |
220 | - $atts['href'] = ! empty( $item->url ) ? $item->url : '#'; |
|
220 | + $atts['href'] = ! empty($item->url) ? $item->url : '#'; |
|
221 | 221 | // For items in dropdowns use .dropdown-item instead of .nav-link. |
222 | - if ( $depth > 0 ) { |
|
222 | + if ($depth > 0) { |
|
223 | 223 | $atts['class'] = 'dropdown-item'; |
224 | 224 | } else { |
225 | 225 | $atts['class'] = 'nav-link'; |
@@ -229,33 +229,33 @@ discard block |
||
229 | 229 | $atts['aria-current'] = $item->current ? 'page' : ''; |
230 | 230 | |
231 | 231 | // Update atts of this item based on any custom linkmod classes. |
232 | - $atts = self::update_atts_for_linkmod_type( $atts, $linkmod_classes ); |
|
232 | + $atts = self::update_atts_for_linkmod_type($atts, $linkmod_classes); |
|
233 | 233 | |
234 | 234 | // Allow filtering of the $atts array before using it. |
235 | - $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth ); |
|
235 | + $atts = apply_filters('nav_menu_link_attributes', $atts, $item, $args, $depth); |
|
236 | 236 | |
237 | 237 | // Build a string of html containing all the atts for the item. |
238 | 238 | $attributes = ''; |
239 | - foreach ( $atts as $attr => $value ) { |
|
240 | - if ( ! empty( $value ) ) { |
|
241 | - $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); |
|
239 | + foreach ($atts as $attr => $value) { |
|
240 | + if ( ! empty($value)) { |
|
241 | + $value = ('href' === $attr) ? esc_url($value) : esc_attr($value); |
|
242 | 242 | $attributes .= ' ' . $attr . '="' . $value . '"'; |
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | 246 | // Set a typeflag to easily test if this is a linkmod or not. |
247 | - $linkmod_type = self::get_linkmod_type( $linkmod_classes ); |
|
247 | + $linkmod_type = self::get_linkmod_type($linkmod_classes); |
|
248 | 248 | |
249 | 249 | // START appending the internal item contents to the output. |
250 | - $item_output = isset( $args->before ) ? $args->before : ''; |
|
250 | + $item_output = isset($args->before) ? $args->before : ''; |
|
251 | 251 | |
252 | 252 | /* |
253 | 253 | * This is the start of the internal nav item. Depending on what |
254 | 254 | * kind of linkmod we have we may need different wrapper elements. |
255 | 255 | */ |
256 | - if ( '' !== $linkmod_type ) { |
|
256 | + if ('' !== $linkmod_type) { |
|
257 | 257 | // Is linkmod, output the required element opener. |
258 | - $item_output .= self::linkmod_element_open( $linkmod_type, $attributes ); |
|
258 | + $item_output .= self::linkmod_element_open($linkmod_type, $attributes); |
|
259 | 259 | } else { |
260 | 260 | // With no link mod type set this must be a standard <a> tag. |
261 | 261 | $item_output .= '<a' . $attributes . '>'; |
@@ -267,13 +267,13 @@ discard block |
||
267 | 267 | * output inside of the item before the $title (the link text). |
268 | 268 | */ |
269 | 269 | $icon_html = ''; |
270 | - if ( ! empty( $icon_class_string ) ) { |
|
270 | + if ( ! empty($icon_class_string)) { |
|
271 | 271 | // Append an <i> with the icon classes to what is output before links. |
272 | - $icon_html = '<i class="' . esc_attr( $icon_class_string ) . '" aria-hidden="true"></i> '; |
|
272 | + $icon_html = '<i class="' . esc_attr($icon_class_string) . '" aria-hidden="true"></i> '; |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** This filter is documented in wp-includes/post-template.php */ |
276 | - $title = apply_filters( 'the_title', esc_html( $item->title ), $item->ID ); |
|
276 | + $title = apply_filters('the_title', esc_html($item->title), $item->ID); |
|
277 | 277 | |
278 | 278 | /** |
279 | 279 | * Filters a menu item's title. |
@@ -285,36 +285,36 @@ discard block |
||
285 | 285 | * @param WP_Nav_Menu_Args $args An object of wp_nav_menu() arguments. |
286 | 286 | * @param int $depth Depth of menu item. Used for padding. |
287 | 287 | */ |
288 | - $title = apply_filters( 'nav_menu_item_title', $title, $item, $args, $depth ); |
|
288 | + $title = apply_filters('nav_menu_item_title', $title, $item, $args, $depth); |
|
289 | 289 | |
290 | 290 | // If the .sr-only class was set apply to the nav items text only. |
291 | - if ( in_array( 'sr-only', $linkmod_classes, true ) ) { |
|
292 | - $title = self::wrap_for_screen_reader( $title ); |
|
293 | - $keys_to_unset = array_keys( $linkmod_classes, 'sr-only', true ); |
|
294 | - foreach ( $keys_to_unset as $k ) { |
|
295 | - unset( $linkmod_classes[ $k ] ); |
|
291 | + if (in_array('sr-only', $linkmod_classes, true)) { |
|
292 | + $title = self::wrap_for_screen_reader($title); |
|
293 | + $keys_to_unset = array_keys($linkmod_classes, 'sr-only', true); |
|
294 | + foreach ($keys_to_unset as $k) { |
|
295 | + unset($linkmod_classes[$k]); |
|
296 | 296 | } |
297 | 297 | } |
298 | 298 | |
299 | 299 | // Put the item contents into $output. |
300 | - $item_output .= isset( $args->link_before ) ? $args->link_before . $icon_html . $title . $args->link_after : ''; |
|
300 | + $item_output .= isset($args->link_before) ? $args->link_before . $icon_html . $title . $args->link_after : ''; |
|
301 | 301 | |
302 | 302 | /* |
303 | 303 | * This is the end of the internal nav item. We need to close the |
304 | 304 | * correct element depending on the type of link or link mod. |
305 | 305 | */ |
306 | - if ( '' !== $linkmod_type ) { |
|
306 | + if ('' !== $linkmod_type) { |
|
307 | 307 | // Is linkmod, output the required closing element. |
308 | - $item_output .= self::linkmod_element_close( $linkmod_type ); |
|
308 | + $item_output .= self::linkmod_element_close($linkmod_type); |
|
309 | 309 | } else { |
310 | 310 | // With no link mod type set this must be a standard <a> tag. |
311 | 311 | $item_output .= '</a>'; |
312 | 312 | } |
313 | 313 | |
314 | - $item_output .= isset( $args->after ) ? $args->after : ''; |
|
314 | + $item_output .= isset($args->after) ? $args->after : ''; |
|
315 | 315 | |
316 | 316 | // END appending the internal item contents to the output. |
317 | - $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); |
|
317 | + $output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | /** |
@@ -328,8 +328,8 @@ discard block |
||
328 | 328 | * @param array $args passed from the wp_nav_menu function. |
329 | 329 | * @return string|void |
330 | 330 | */ |
331 | - public static function fallback( $args ) { |
|
332 | - if ( ! current_user_can( 'edit_theme_options' ) ) { |
|
331 | + public static function fallback($args) { |
|
332 | + if ( ! current_user_can('edit_theme_options')) { |
|
333 | 333 | return; |
334 | 334 | } |
335 | 335 | |
@@ -343,30 +343,30 @@ discard block |
||
343 | 343 | // Initialize var to store fallback html. |
344 | 344 | $fallback_output = ''; |
345 | 345 | |
346 | - if ( $container ) { |
|
347 | - $fallback_output .= '<' . esc_attr( $container ); |
|
348 | - if ( $container_id ) { |
|
349 | - $fallback_output .= ' id="' . esc_attr( $container_id ) . '"'; |
|
346 | + if ($container) { |
|
347 | + $fallback_output .= '<' . esc_attr($container); |
|
348 | + if ($container_id) { |
|
349 | + $fallback_output .= ' id="' . esc_attr($container_id) . '"'; |
|
350 | 350 | } |
351 | - if ( $container_class ) { |
|
352 | - $fallback_output .= ' class="' . esc_attr( $container_class ) . '"'; |
|
351 | + if ($container_class) { |
|
352 | + $fallback_output .= ' class="' . esc_attr($container_class) . '"'; |
|
353 | 353 | } |
354 | 354 | $fallback_output .= '>'; |
355 | 355 | } |
356 | 356 | $fallback_output .= '<ul'; |
357 | - if ( $menu_id ) { |
|
358 | - $fallback_output .= ' id="' . esc_attr( $menu_id ) . '"'; } |
|
359 | - if ( $menu_class ) { |
|
360 | - $fallback_output .= ' class="' . esc_attr( $menu_class ) . '"'; } |
|
357 | + if ($menu_id) { |
|
358 | + $fallback_output .= ' id="' . esc_attr($menu_id) . '"'; } |
|
359 | + if ($menu_class) { |
|
360 | + $fallback_output .= ' class="' . esc_attr($menu_class) . '"'; } |
|
361 | 361 | $fallback_output .= '>'; |
362 | - $fallback_output .= '<li class="nav-item"><a href="' . esc_url( admin_url( 'nav-menus.php' ) ) . '" class="nav-link" title="' . esc_attr__( 'Add a menu', 'wp-bootstrap-navwalker' ) . '">' . esc_html__( 'Add a menu', 'wp-bootstrap-navwalker' ) . '</a></li>'; |
|
362 | + $fallback_output .= '<li class="nav-item"><a href="' . esc_url(admin_url('nav-menus.php')) . '" class="nav-link" title="' . esc_attr__('Add a menu', 'wp-bootstrap-navwalker') . '">' . esc_html__('Add a menu', 'wp-bootstrap-navwalker') . '</a></li>'; |
|
363 | 363 | $fallback_output .= '</ul>'; |
364 | - if ( $container ) { |
|
365 | - $fallback_output .= '</' . esc_attr( $container ) . '>'; |
|
364 | + if ($container) { |
|
365 | + $fallback_output .= '</' . esc_attr($container) . '>'; |
|
366 | 366 | } |
367 | 367 | |
368 | 368 | // If $args has 'echo' key and it's true echo, otherwise return. |
369 | - if ( array_key_exists( 'echo', $args ) && $args['echo'] ) { |
|
369 | + if (array_key_exists('echo', $args) && $args['echo']) { |
|
370 | 370 | echo $fallback_output; // WPCS: XSS OK. |
371 | 371 | return; |
372 | 372 | } |
@@ -382,10 +382,10 @@ discard block |
||
382 | 382 | * @param array $args The nav instance arguments. |
383 | 383 | * @return array $args The altered nav instance arguments. |
384 | 384 | */ |
385 | - public function add_schema_to_navbar_ul( $args ) { |
|
385 | + public function add_schema_to_navbar_ul($args) { |
|
386 | 386 | $wrap = $args['items_wrap']; |
387 | - if ( strpos( $wrap, 'SiteNavigationElement' ) === false ) { |
|
388 | - $args['items_wrap'] = preg_replace( '/(>).*>?\%3\$s/', ' itemscope itemtype="http://www.schema.org/SiteNavigationElement"$0', $wrap ); |
|
387 | + if (strpos($wrap, 'SiteNavigationElement') === false) { |
|
388 | + $args['items_wrap'] = preg_replace('/(>).*>?\%3\$s/', ' itemscope itemtype="http://www.schema.org/SiteNavigationElement"$0', $wrap); |
|
389 | 389 | } |
390 | 390 | |
391 | 391 | return $args; |
@@ -409,32 +409,32 @@ discard block |
||
409 | 409 | * |
410 | 410 | * @return array $classes a maybe modified array of classnames. |
411 | 411 | */ |
412 | - private function separate_linkmods_and_icons_from_classes( $classes, &$linkmod_classes, &$icon_classes, $depth ) { |
|
412 | + private function separate_linkmods_and_icons_from_classes($classes, &$linkmod_classes, &$icon_classes, $depth) { |
|
413 | 413 | // Loop through $classes array to find linkmod or icon classes. |
414 | - foreach ( $classes as $key => $class ) { |
|
414 | + foreach ($classes as $key => $class) { |
|
415 | 415 | /* |
416 | 416 | * If any special classes are found, store the class in it's |
417 | 417 | * holder array and and unset the item from $classes. |
418 | 418 | */ |
419 | - if ( preg_match( '/^disabled|^sr-only/i', $class ) ) { |
|
419 | + if (preg_match('/^disabled|^sr-only/i', $class)) { |
|
420 | 420 | // Test for .disabled or .sr-only classes. |
421 | 421 | $linkmod_classes[] = $class; |
422 | - unset( $classes[ $key ] ); |
|
423 | - } elseif ( preg_match( '/^dropdown-header|^dropdown-divider|^dropdown-item-text/i', $class ) && $depth > 0 ) { |
|
422 | + unset($classes[$key]); |
|
423 | + } elseif (preg_match('/^dropdown-header|^dropdown-divider|^dropdown-item-text/i', $class) && $depth > 0) { |
|
424 | 424 | /* |
425 | 425 | * Test for .dropdown-header or .dropdown-divider and a |
426 | 426 | * depth greater than 0 - IE inside a dropdown. |
427 | 427 | */ |
428 | 428 | $linkmod_classes[] = $class; |
429 | - unset( $classes[ $key ] ); |
|
430 | - } elseif ( preg_match( '/^fa-(\S*)?|^fa(s|r|l|b)?(\s?)?$/i', $class ) ) { |
|
429 | + unset($classes[$key]); |
|
430 | + } elseif (preg_match('/^fa-(\S*)?|^fa(s|r|l|b)?(\s?)?$/i', $class)) { |
|
431 | 431 | // Font Awesome. |
432 | 432 | $icon_classes[] = $class; |
433 | - unset( $classes[ $key ] ); |
|
434 | - } elseif ( preg_match( '/^glyphicon-(\S*)?|^glyphicon(\s?)$/i', $class ) ) { |
|
433 | + unset($classes[$key]); |
|
434 | + } elseif (preg_match('/^glyphicon-(\S*)?|^glyphicon(\s?)$/i', $class)) { |
|
435 | 435 | // Glyphicons. |
436 | 436 | $icon_classes[] = $class; |
437 | - unset( $classes[ $key ] ); |
|
437 | + unset($classes[$key]); |
|
438 | 438 | } |
439 | 439 | } |
440 | 440 | |
@@ -451,19 +451,19 @@ discard block |
||
451 | 451 | * |
452 | 452 | * @return string empty for default, a linkmod type string otherwise. |
453 | 453 | */ |
454 | - private function get_linkmod_type( $linkmod_classes = array() ) { |
|
454 | + private function get_linkmod_type($linkmod_classes = array()) { |
|
455 | 455 | $linkmod_type = ''; |
456 | 456 | // Loop through array of linkmod classes to handle their $atts. |
457 | - if ( ! empty( $linkmod_classes ) ) { |
|
458 | - foreach ( $linkmod_classes as $link_class ) { |
|
459 | - if ( ! empty( $link_class ) ) { |
|
457 | + if ( ! empty($linkmod_classes)) { |
|
458 | + foreach ($linkmod_classes as $link_class) { |
|
459 | + if ( ! empty($link_class)) { |
|
460 | 460 | |
461 | 461 | // Check for special class types and set a flag for them. |
462 | - if ( 'dropdown-header' === $link_class ) { |
|
462 | + if ('dropdown-header' === $link_class) { |
|
463 | 463 | $linkmod_type = 'dropdown-header'; |
464 | - } elseif ( 'dropdown-divider' === $link_class ) { |
|
464 | + } elseif ('dropdown-divider' === $link_class) { |
|
465 | 465 | $linkmod_type = 'dropdown-divider'; |
466 | - } elseif ( 'dropdown-item-text' === $link_class ) { |
|
466 | + } elseif ('dropdown-item-text' === $link_class) { |
|
467 | 467 | $linkmod_type = 'dropdown-item-text'; |
468 | 468 | } |
469 | 469 | } |
@@ -482,26 +482,26 @@ discard block |
||
482 | 482 | * |
483 | 483 | * @return array maybe updated array of attributes for item. |
484 | 484 | */ |
485 | - private function update_atts_for_linkmod_type( $atts = array(), $linkmod_classes = array() ) { |
|
486 | - if ( ! empty( $linkmod_classes ) ) { |
|
487 | - foreach ( $linkmod_classes as $link_class ) { |
|
488 | - if ( ! empty( $link_class ) ) { |
|
485 | + private function update_atts_for_linkmod_type($atts = array(), $linkmod_classes = array()) { |
|
486 | + if ( ! empty($linkmod_classes)) { |
|
487 | + foreach ($linkmod_classes as $link_class) { |
|
488 | + if ( ! empty($link_class)) { |
|
489 | 489 | /* |
490 | 490 | * Update $atts with a space and the extra classname |
491 | 491 | * so long as it's not a sr-only class. |
492 | 492 | */ |
493 | - if ( 'sr-only' !== $link_class ) { |
|
494 | - $atts['class'] .= ' ' . esc_attr( $link_class ); |
|
493 | + if ('sr-only' !== $link_class) { |
|
494 | + $atts['class'] .= ' ' . esc_attr($link_class); |
|
495 | 495 | } |
496 | 496 | // Check for special class types we need additional handling for. |
497 | - if ( 'disabled' === $link_class ) { |
|
497 | + if ('disabled' === $link_class) { |
|
498 | 498 | // Convert link to '#' and unset open targets. |
499 | 499 | $atts['href'] = '#'; |
500 | - unset( $atts['target'] ); |
|
501 | - } elseif ( 'dropdown-header' === $link_class || 'dropdown-divider' === $link_class || 'dropdown-item-text' === $link_class ) { |
|
500 | + unset($atts['target']); |
|
501 | + } elseif ('dropdown-header' === $link_class || 'dropdown-divider' === $link_class || 'dropdown-item-text' === $link_class) { |
|
502 | 502 | // Store a type flag and unset href and target. |
503 | - unset( $atts['href'] ); |
|
504 | - unset( $atts['target'] ); |
|
503 | + unset($atts['href']); |
|
504 | + unset($atts['target']); |
|
505 | 505 | } |
506 | 506 | } |
507 | 507 | } |
@@ -517,8 +517,8 @@ discard block |
||
517 | 517 | * @param string $text the string of text to be wrapped in a screen reader class. |
518 | 518 | * @return string the string wrapped in a span with the class. |
519 | 519 | */ |
520 | - private function wrap_for_screen_reader( $text = '' ) { |
|
521 | - if ( $text ) { |
|
520 | + private function wrap_for_screen_reader($text = '') { |
|
521 | + if ($text) { |
|
522 | 522 | $text = '<span class="sr-only">' . $text . '</span>'; |
523 | 523 | } |
524 | 524 | return $text; |
@@ -534,17 +534,17 @@ discard block |
||
534 | 534 | * |
535 | 535 | * @return string a string with the openign tag for the element with attribibutes added. |
536 | 536 | */ |
537 | - private function linkmod_element_open( $linkmod_type, $attributes = '' ) { |
|
537 | + private function linkmod_element_open($linkmod_type, $attributes = '') { |
|
538 | 538 | $output = ''; |
539 | - if ( 'dropdown-item-text' === $linkmod_type ) { |
|
539 | + if ('dropdown-item-text' === $linkmod_type) { |
|
540 | 540 | $output .= '<span class="dropdown-item-text"' . $attributes . '>'; |
541 | - } elseif ( 'dropdown-header' === $linkmod_type ) { |
|
541 | + } elseif ('dropdown-header' === $linkmod_type) { |
|
542 | 542 | /* |
543 | 543 | * For a header use a span with the .h6 class instead of a real |
544 | 544 | * header tag so that it doesn't confuse screen readers. |
545 | 545 | */ |
546 | 546 | $output .= '<span class="dropdown-header h6"' . $attributes . '>'; |
547 | - } elseif ( 'dropdown-divider' === $linkmod_type ) { |
|
547 | + } elseif ('dropdown-divider' === $linkmod_type) { |
|
548 | 548 | // This is a divider. |
549 | 549 | $output .= '<div class="dropdown-divider"' . $attributes . '>'; |
550 | 550 | } |
@@ -560,15 +560,15 @@ discard block |
||
560 | 560 | * |
561 | 561 | * @return string a string with the closing tag for this linkmod type. |
562 | 562 | */ |
563 | - private function linkmod_element_close( $linkmod_type ) { |
|
563 | + private function linkmod_element_close($linkmod_type) { |
|
564 | 564 | $output = ''; |
565 | - if ( 'dropdown-header' === $linkmod_type || 'dropdown-item-text' === $linkmod_type ) { |
|
565 | + if ('dropdown-header' === $linkmod_type || 'dropdown-item-text' === $linkmod_type) { |
|
566 | 566 | /* |
567 | 567 | * For a header use a span with the .h6 class instead of a real |
568 | 568 | * header tag so that it doesn't confuse screen readers. |
569 | 569 | */ |
570 | 570 | $output .= '</span>'; |
571 | - } elseif ( 'dropdown-divider' === $linkmod_type ) { |
|
571 | + } elseif ('dropdown-divider' === $linkmod_type) { |
|
572 | 572 | // This is a divider. |
573 | 573 | $output .= '</div>'; |
574 | 574 | } |