@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage sanitize |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_sanitize_choices' ) ) : |
|
13 | +if ( ! function_exists('lsx_sanitize_choices')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Sanitize a value from a list of allowed values. |
@@ -22,18 +22,18 @@ discard block |
||
22 | 22 | * @param mixed $setting The setting for which the sanitizing is occurring. |
23 | 23 | * @return mixed The sanitized value. |
24 | 24 | */ |
25 | - function lsx_sanitize_choices( $value, $setting ) { |
|
26 | - if ( is_object( $setting ) ) { |
|
25 | + function lsx_sanitize_choices($value, $setting) { |
|
26 | + if (is_object($setting)) { |
|
27 | 27 | $setting = $setting->id; |
28 | 28 | } |
29 | 29 | |
30 | - $choices = lsx_customizer_sanitize_get_choices( $setting ); |
|
30 | + $choices = lsx_customizer_sanitize_get_choices($setting); |
|
31 | 31 | |
32 | - if ( ! is_wp_error( $choices ) && ! empty( $choices ) ) { |
|
33 | - $allowed_choices = array_keys( $choices ); |
|
32 | + if ( ! is_wp_error($choices) && ! empty($choices)) { |
|
33 | + $allowed_choices = array_keys($choices); |
|
34 | 34 | |
35 | - if ( ! in_array( $value, $allowed_choices ) ) { |
|
36 | - $value = lsx_customizer_sanitize_get_default( $setting ); |
|
35 | + if ( ! in_array($value, $allowed_choices)) { |
|
36 | + $value = lsx_customizer_sanitize_get_default($setting); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | return $value; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | endif; |
46 | 46 | |
47 | -if ( ! function_exists( 'lsx_customizer_sanitize_get_choices' ) ) : |
|
47 | +if ( ! function_exists('lsx_customizer_sanitize_get_choices')) : |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Helper function to return the choices for a field. |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | * @param string |
56 | 56 | * @return mixed $field |
57 | 57 | */ |
58 | - function lsx_customizer_sanitize_get_choices( $id ) { |
|
58 | + function lsx_customizer_sanitize_get_choices($id) { |
|
59 | 59 | global $lsx_customizer; |
60 | 60 | |
61 | - $can_validate = method_exists( 'WP_Customize_Setting', 'validate' ); |
|
62 | - $field = $lsx_customizer->get_control( $id ); |
|
61 | + $can_validate = method_exists('WP_Customize_Setting', 'validate'); |
|
62 | + $field = $lsx_customizer->get_control($id); |
|
63 | 63 | |
64 | - if ( ! isset( $field['choices'] ) ) { |
|
65 | - return $can_validate ? new WP_Error( 'notexists', esc_html__( 'Choice doesn\'t exist', 'lsx' ) ) : false; |
|
64 | + if ( ! isset($field['choices'])) { |
|
65 | + return $can_validate ? new WP_Error('notexists', esc_html__('Choice doesn\'t exist', 'lsx')) : false; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return $field['choices']; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | endif; |
72 | 72 | |
73 | -if ( ! function_exists( 'lsx_customizer_sanitize_get_default' ) ) : |
|
73 | +if ( ! function_exists('lsx_customizer_sanitize_get_default')) : |
|
74 | 74 | |
75 | 75 | /** |
76 | 76 | * Helper function to return defaults. |
@@ -81,11 +81,11 @@ discard block |
||
81 | 81 | * @param string |
82 | 82 | * @return mixed $default |
83 | 83 | */ |
84 | - function lsx_customizer_sanitize_get_default( $id ) { |
|
84 | + function lsx_customizer_sanitize_get_default($id) { |
|
85 | 85 | global $lsx_customizer; |
86 | - $setting = $lsx_customizer->get_setting( $id ); |
|
86 | + $setting = $lsx_customizer->get_setting($id); |
|
87 | 87 | |
88 | - if ( isset( $setting['default'] ) ) { |
|
88 | + if (isset($setting['default'])) { |
|
89 | 89 | return $setting['default']; |
90 | 90 | } |
91 | 91 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | endif; |
96 | 96 | |
97 | -if ( ! function_exists( 'lsx_sanitize_checkbox' ) ) : |
|
97 | +if ( ! function_exists('lsx_sanitize_checkbox')) : |
|
98 | 98 | |
99 | 99 | /** |
100 | 100 | * Sanitizes an single or multiple checkbox input. |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | * @param array $input |
106 | 106 | * @return array $output |
107 | 107 | */ |
108 | - function lsx_sanitize_checkbox( $input ) { |
|
109 | - $can_validate = method_exists( 'WP_Customize_Setting', 'validate' ); |
|
108 | + function lsx_sanitize_checkbox($input) { |
|
109 | + $can_validate = method_exists('WP_Customize_Setting', 'validate'); |
|
110 | 110 | |
111 | - if ( ! is_bool( $input ) ) { |
|
112 | - return $can_validate ? new WP_Error( 'notboolean', esc_html__( 'Not a boolean', 'lsx' ) ) : false; |
|
111 | + if ( ! is_bool($input)) { |
|
112 | + return $can_validate ? new WP_Error('notboolean', esc_html__('Not a boolean', 'lsx')) : false; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | return $input; |
@@ -7,13 +7,13 @@ discard block |
||
7 | 7 | * @category bootstrap-walker |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -add_filter( 'nav_menu_item_id', '__return_null' ); |
|
14 | +add_filter('nav_menu_item_id', '__return_null'); |
|
15 | 15 | |
16 | -if ( ! function_exists( 'lsx_nav_menu_css_class' ) ) : |
|
16 | +if ( ! function_exists('lsx_nav_menu_css_class')) : |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Remove the id="" on nav menu items. |
@@ -23,22 +23,22 @@ discard block |
||
23 | 23 | * @subpackage navigation |
24 | 24 | * @category bootstrap-walker |
25 | 25 | */ |
26 | - function lsx_nav_menu_css_class( $classes, $item ) { |
|
27 | - $slug = sanitize_title( $item->title ); |
|
28 | - $classes = preg_replace( '/(current(-menu-|[-_]page[-_])(item|parent|ancestor))/', 'active', $classes ); |
|
29 | - $classes = preg_replace( '/^((menu|page)[-_\w+]+)+/', '', $classes ); |
|
26 | + function lsx_nav_menu_css_class($classes, $item) { |
|
27 | + $slug = sanitize_title($item->title); |
|
28 | + $classes = preg_replace('/(current(-menu-|[-_]page[-_])(item|parent|ancestor))/', 'active', $classes); |
|
29 | + $classes = preg_replace('/^((menu|page)[-_\w+]+)+/', '', $classes); |
|
30 | 30 | |
31 | 31 | $classes[] = 'menu-' . $slug; |
32 | - $classes = array_unique( $classes ); |
|
32 | + $classes = array_unique($classes); |
|
33 | 33 | |
34 | - return array_filter( $classes, 'lsx_is_element_empty' ); |
|
34 | + return array_filter($classes, 'lsx_is_element_empty'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | endif; |
38 | 38 | |
39 | -add_filter( 'nav_menu_css_class', 'lsx_nav_menu_css_class', 10, 2 ); |
|
39 | +add_filter('nav_menu_css_class', 'lsx_nav_menu_css_class', 10, 2); |
|
40 | 40 | |
41 | -if ( ! function_exists( 'lsx_nav_menu_args' ) ) : |
|
41 | +if ( ! function_exists('lsx_nav_menu_args')) : |
|
42 | 42 | |
43 | 43 | /** |
44 | 44 | * Clean up wp_nav_menu_args. |
@@ -50,24 +50,24 @@ discard block |
||
50 | 50 | * @subpackage navigation |
51 | 51 | * @category bootstrap-walker |
52 | 52 | */ |
53 | - function lsx_nav_menu_args( $args = '' ) { |
|
53 | + function lsx_nav_menu_args($args = '') { |
|
54 | 54 | $roots_nav_menu_args['container'] = false; |
55 | 55 | |
56 | - if ( ! $args['items_wrap'] ) { |
|
56 | + if ( ! $args['items_wrap']) { |
|
57 | 57 | $roots_nav_menu_args['items_wrap'] = '<ul class="%2$s">%3$s</ul>'; |
58 | 58 | } |
59 | 59 | |
60 | - if ( current_theme_supports( 'bootstrap-top-navbar' ) && ! $args['depth'] ) { |
|
60 | + if (current_theme_supports('bootstrap-top-navbar') && ! $args['depth']) { |
|
61 | 61 | $roots_nav_menu_args['depth'] = 2; |
62 | 62 | } |
63 | 63 | |
64 | - if ( ! $args['walker'] ) { |
|
64 | + if ( ! $args['walker']) { |
|
65 | 65 | $roots_nav_menu_args['walker'] = new LSX_Nav_Walker(); |
66 | 66 | } |
67 | 67 | |
68 | - return array_merge( $args, $roots_nav_menu_args ); |
|
68 | + return array_merge($args, $roots_nav_menu_args); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | endif; |
72 | 72 | |
73 | -add_filter( 'wp_nav_menu_args', 'lsx_nav_menu_args' ); |
|
73 | +add_filter('wp_nav_menu_args', 'lsx_nav_menu_args'); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage comment-walker |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_get_avatar' ) ) : |
|
13 | +if ( ! function_exists('lsx_get_avatar')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Comment Form Field Filter. |
@@ -18,25 +18,25 @@ discard block |
||
18 | 18 | * @package lsx |
19 | 19 | * @subpackage comment-walker |
20 | 20 | */ |
21 | - function lsx_get_avatar( $avatar ) { |
|
22 | - $avatar = str_replace( "class='avatar", "class='avatar pull-left media-object ", $avatar ); |
|
23 | - $avatar = str_replace( 'class="avatar', 'class="avatar pull-left media-object ', $avatar ); |
|
21 | + function lsx_get_avatar($avatar) { |
|
22 | + $avatar = str_replace("class='avatar", "class='avatar pull-left media-object ", $avatar); |
|
23 | + $avatar = str_replace('class="avatar', 'class="avatar pull-left media-object ', $avatar); |
|
24 | 24 | return $avatar; |
25 | 25 | } |
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -add_filter( 'get_avatar', 'lsx_get_avatar' ); |
|
29 | +add_filter('get_avatar', 'lsx_get_avatar'); |
|
30 | 30 | |
31 | -add_action( 'admin_bar_menu', function() { |
|
32 | - remove_filter( 'get_avatar', 'lsx_get_avatar' ); |
|
33 | -}, 0 ); |
|
31 | +add_action('admin_bar_menu', function() { |
|
32 | + remove_filter('get_avatar', 'lsx_get_avatar'); |
|
33 | +}, 0); |
|
34 | 34 | |
35 | -add_action( 'wp_after_admin_bar_render', function() { |
|
36 | - add_filter( 'get_avatar','lsx_get_avatar' ); |
|
35 | +add_action('wp_after_admin_bar_render', function() { |
|
36 | + add_filter('get_avatar', 'lsx_get_avatar'); |
|
37 | 37 | } ); |
38 | 38 | |
39 | -if ( ! function_exists( 'lsx_comment_form_fields_filter' ) ) : |
|
39 | +if ( ! function_exists('lsx_comment_form_fields_filter')) : |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Comment Form Field Filter. |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | * @package lsx |
45 | 45 | * @subpackage comment-walker |
46 | 46 | */ |
47 | - function lsx_comment_form_fields_filter( $fields ) { |
|
48 | - foreach ( $fields as &$field ) { |
|
49 | - if ( stristr( 'class=', $field ) ) { |
|
50 | - $field = str_replace( 'class="', 'class="form-control ', $field ); |
|
47 | + function lsx_comment_form_fields_filter($fields) { |
|
48 | + foreach ($fields as &$field) { |
|
49 | + if (stristr('class=', $field)) { |
|
50 | + $field = str_replace('class="', 'class="form-control ', $field); |
|
51 | 51 | } else { |
52 | - $field = str_replace( '<input', '<input class="form-control" ', $field ); |
|
52 | + $field = str_replace('<input', '<input class="form-control" ', $field); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
@@ -58,4 +58,4 @@ discard block |
||
58 | 58 | |
59 | 59 | endif; |
60 | 60 | |
61 | -add_filter( 'comment_form_default_fields', 'lsx_comment_form_fields_filter' ); |
|
61 | +add_filter('comment_form_default_fields', 'lsx_comment_form_fields_filter'); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage widgets |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_widget_area_init' ) ) : |
|
13 | +if ( ! function_exists('lsx_widget_area_init')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Register widgetized area and update sidebar with default widgets. |
@@ -19,48 +19,48 @@ discard block |
||
19 | 19 | * @subpackage widgets |
20 | 20 | */ |
21 | 21 | function lsx_widget_area_init() { |
22 | - register_sidebar( array( |
|
23 | - 'name' => esc_html__( 'Home', 'lsx' ), |
|
22 | + register_sidebar(array( |
|
23 | + 'name' => esc_html__('Home', 'lsx'), |
|
24 | 24 | 'id' => 'sidebar-home', |
25 | 25 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
26 | 26 | 'after_widget' => '</aside>', |
27 | 27 | 'before_title' => '<h3 class="widget-title">', |
28 | 28 | 'after_title' => '</h3>', |
29 | - ) ); |
|
29 | + )); |
|
30 | 30 | |
31 | - register_sidebar( array( |
|
32 | - 'name' => esc_html__( 'Sidebar', 'lsx' ), |
|
31 | + register_sidebar(array( |
|
32 | + 'name' => esc_html__('Sidebar', 'lsx'), |
|
33 | 33 | 'id' => 'sidebar-1', |
34 | 34 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
35 | 35 | 'after_widget' => '</aside>', |
36 | 36 | 'before_title' => '<h3 class="widget-title">', |
37 | 37 | 'after_title' => '</h3>', |
38 | - ) ); |
|
38 | + )); |
|
39 | 39 | |
40 | - register_sidebar( array( |
|
41 | - 'name' => esc_html__( 'Footer', 'lsx' ), |
|
40 | + register_sidebar(array( |
|
41 | + 'name' => esc_html__('Footer', 'lsx'), |
|
42 | 42 | 'id' => 'sidebar-footer', |
43 | 43 | 'before_widget' => '<div class="styler"><aside id="%1$s" class="widget %2$s">', |
44 | 44 | 'after_widget' => '</aside></div>', |
45 | 45 | 'before_title' => '<h3 class="widget-title">', |
46 | 46 | 'after_title' => '</h3>', |
47 | - ) ); |
|
47 | + )); |
|
48 | 48 | |
49 | - register_sidebar( array( |
|
50 | - 'name' => esc_html__( 'Footer Call to Action', 'lsx' ), |
|
49 | + register_sidebar(array( |
|
50 | + 'name' => esc_html__('Footer Call to Action', 'lsx'), |
|
51 | 51 | 'id' => 'sidebar-footer-cta', |
52 | 52 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
53 | 53 | 'after_widget' => '</aside>', |
54 | 54 | 'before_title' => '<h3 class="widget-title">', |
55 | 55 | 'after_title' => '</h3>', |
56 | - ) ); |
|
56 | + )); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | endif; |
60 | 60 | |
61 | -add_action( 'widgets_init', 'lsx_widget_area_init' ); |
|
61 | +add_action('widgets_init', 'lsx_widget_area_init'); |
|
62 | 62 | |
63 | -if ( ! function_exists( 'lsx_sidebar_footer_params' ) ) : |
|
63 | +if ( ! function_exists('lsx_sidebar_footer_params')) : |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Register widgetized area and update sidebar with default widgets. |
@@ -68,13 +68,13 @@ discard block |
||
68 | 68 | * @package lsx |
69 | 69 | * @subpackage widgets |
70 | 70 | */ |
71 | - function lsx_sidebar_footer_params( $params ) { |
|
71 | + function lsx_sidebar_footer_params($params) { |
|
72 | 72 | $sidebar_id = $params[0]['id']; |
73 | 73 | |
74 | - if ( 'sidebar-footer' === $sidebar_id ) { |
|
74 | + if ('sidebar-footer' === $sidebar_id) { |
|
75 | 75 | $total_widgets = wp_get_sidebars_widgets(); |
76 | - $sidebar_widgets = count( $total_widgets[ $sidebar_id ] ); |
|
77 | - $params[0]['before_widget'] = str_replace( 'class="styler', 'class="col-md-' . floor( 12 / $sidebar_widgets ), $params[0]['before_widget'] ); |
|
76 | + $sidebar_widgets = count($total_widgets[$sidebar_id]); |
|
77 | + $params[0]['before_widget'] = str_replace('class="styler', 'class="col-md-' . floor(12 / $sidebar_widgets), $params[0]['before_widget']); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | return $params; |
@@ -82,4 +82,4 @@ discard block |
||
82 | 82 | |
83 | 83 | endif; |
84 | 84 | |
85 | -add_filter( 'dynamic_sidebar_params', 'lsx_sidebar_footer_params' ); |
|
85 | +add_filter('dynamic_sidebar_params', 'lsx_sidebar_footer_params'); |
@@ -6,15 +6,15 @@ discard block |
||
6 | 6 | * @subpackage comment |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'Walker_Comment' ) ) { |
|
13 | +if ( ! class_exists('Walker_Comment')) { |
|
14 | 14 | return; |
15 | 15 | } |
16 | 16 | |
17 | -if ( ! class_exists( 'LSX_Walker_Comment' ) ) : |
|
17 | +if ( ! class_exists('LSX_Walker_Comment')) : |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Use Bootstrap's media object for listing comments. |
@@ -26,35 +26,35 @@ discard block |
||
26 | 26 | */ |
27 | 27 | class LSX_Walker_Comment extends Walker_Comment { |
28 | 28 | |
29 | - function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
29 | + function start_lvl(&$output, $depth = 0, $args = array()) { |
|
30 | 30 | $GLOBALS['comment_depth'] = $depth + 1; ?> |
31 | - <ul <?php comment_class( 'media media-reply unstyled list-unstyled comment-' . get_comment_ID() ); ?>> |
|
31 | + <ul <?php comment_class('media media-reply unstyled list-unstyled comment-' . get_comment_ID()); ?>> |
|
32 | 32 | <?php |
33 | 33 | } |
34 | 34 | |
35 | - function end_lvl( &$output, $depth = 0, $args = array() ) { |
|
35 | + function end_lvl(&$output, $depth = 0, $args = array()) { |
|
36 | 36 | $GLOBALS['comment_depth'] = $depth + 1; |
37 | 37 | echo '</ul>'; |
38 | 38 | } |
39 | 39 | |
40 | - function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) { |
|
40 | + function start_el(&$output, $comment, $depth = 0, $args = array(), $id = 0) { |
|
41 | 41 | $depth++; |
42 | 42 | $GLOBALS['comment_depth'] = $depth; |
43 | 43 | $GLOBALS['comment'] = $comment; |
44 | 44 | |
45 | - if ( ! empty( $args['callback'] ) ) { |
|
46 | - call_user_func( $args['callback'], $comment, $args, $depth ); |
|
45 | + if ( ! empty($args['callback'])) { |
|
46 | + call_user_func($args['callback'], $comment, $args, $depth); |
|
47 | 47 | return; |
48 | 48 | }?> |
49 | 49 | |
50 | - <li id="comment-<?php comment_ID(); ?>" <?php comment_class( 'media comment-' . get_comment_ID() ); ?>> |
|
51 | - <?php get_template_part( 'comment' ); ?> |
|
50 | + <li id="comment-<?php comment_ID(); ?>" <?php comment_class('media comment-' . get_comment_ID()); ?>> |
|
51 | + <?php get_template_part('comment'); ?> |
|
52 | 52 | <?php |
53 | 53 | } |
54 | 54 | |
55 | - function end_el( &$output, $comment, $depth = 0, $args = array() ) { |
|
56 | - if ( ! empty( $args['end-callback'] ) ) { |
|
57 | - call_user_func( $args['end-callback'], $comment, $args, $depth ); |
|
55 | + function end_el(&$output, $comment, $depth = 0, $args = array()) { |
|
56 | + if ( ! empty($args['end-callback'])) { |
|
57 | + call_user_func($args['end-callback'], $comment, $args, $depth); |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category core |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -if ( ! class_exists( 'WP_Customize_Control' ) ) { |
|
14 | +if ( ! class_exists('WP_Customize_Control')) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'LSX_Customize_Core_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Core_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Core_Control Class |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | public function render_content() { |
35 | 35 | ?> |
36 | 36 | <label> |
37 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
38 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
37 | + <?php if ( ! empty($this->label)) { ?> |
|
38 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
39 | 39 | <?php } |
40 | - if ( ! empty( $this->description ) ) { ?> |
|
41 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
40 | + if ( ! empty($this->description)) { ?> |
|
41 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
42 | 42 | <?php } ?> |
43 | - <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); ?>> |
|
43 | + <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr($this->value()); ?>" <?php $this->input_attrs(); ?>> |
|
44 | 44 | </label> |
45 | 45 | <?php |
46 | 46 | } |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage welcome-page |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_activation_admin_notice_dismiss' ) ) : |
|
13 | +if ( ! function_exists('lsx_activation_admin_notice_dismiss')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Dismiss the admin notice (successful activation). |
@@ -19,15 +19,15 @@ discard block |
||
19 | 19 | * @subpackage welcome-page |
20 | 20 | */ |
21 | 21 | function lsx_activation_admin_notice_dismiss() { |
22 | - update_option( 'lsx-notice-dismissed', '1' ); |
|
22 | + update_option('lsx-notice-dismissed', '1'); |
|
23 | 23 | wp_die(); |
24 | 24 | } |
25 | 25 | |
26 | 26 | endif; |
27 | 27 | |
28 | -add_action( 'wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss' ); |
|
28 | +add_action('wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss'); |
|
29 | 29 | |
30 | -if ( ! function_exists( 'lsx_activation_admin_notice' ) ) : |
|
30 | +if ( ! function_exists('lsx_activation_admin_notice')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Adds an admin notice upon successful activation. |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | * @subpackage welcome-page |
37 | 37 | */ |
38 | 38 | function lsx_activation_admin_notice() { |
39 | - if ( empty( get_option( 'lsx-notice-dismissed' ) ) ) { |
|
40 | - add_action( 'admin_notices', 'lsx_welcome_admin_notice', 99 ); |
|
39 | + if (empty(get_option('lsx-notice-dismissed'))) { |
|
40 | + add_action('admin_notices', 'lsx_welcome_admin_notice', 99); |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | 44 | endif; |
45 | 45 | |
46 | -add_action( 'admin_notices', 'lsx_activation_admin_notice' ); |
|
46 | +add_action('admin_notices', 'lsx_activation_admin_notice'); |
|
47 | 47 | |
48 | -if ( ! function_exists( 'lsx_welcome_admin_notice' ) ) : |
|
48 | +if ( ! function_exists('lsx_welcome_admin_notice')) : |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Display an admin notice linking to the welcome screen. |
@@ -60,20 +60,20 @@ discard block |
||
60 | 60 | <?php |
61 | 61 | printf( |
62 | 62 | /* Translators: 1: HTML open tag link, 2: HTML close tag link */ |
63 | - esc_html__( 'Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx' ), |
|
64 | - '<a href="' . esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ) . '">', |
|
63 | + esc_html__('Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx'), |
|
64 | + '<a href="' . esc_url(admin_url('themes.php?page=lsx-welcome')) . '">', |
|
65 | 65 | '</a>' |
66 | 66 | ); |
67 | 67 | ?> |
68 | 68 | </p> |
69 | - <p><a href="<?php echo esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e( 'Get started with LSX', 'lsx' ); ?></a></p> |
|
69 | + <p><a href="<?php echo esc_url(admin_url('themes.php?page=lsx-welcome')); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e('Get started with LSX', 'lsx'); ?></a></p> |
|
70 | 70 | </div> |
71 | 71 | <?php |
72 | 72 | } |
73 | 73 | |
74 | 74 | endif; |
75 | 75 | |
76 | -if ( ! function_exists( 'lsx_welcome_style' ) ) : |
|
76 | +if ( ! function_exists('lsx_welcome_style')) : |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Load welcome screen css. |
@@ -83,19 +83,19 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @param string $hook_suffix the current page hook suffix. |
85 | 85 | */ |
86 | - function lsx_welcome_style( $hook_suffix ) { |
|
87 | - if ( 'appearance_page_lsx-welcome' === $hook_suffix ) { |
|
88 | - wp_enqueue_style( 'lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION ); |
|
89 | - wp_enqueue_style( 'lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array( 'lsx-welcome-screen-mailchimp' ), LSX_VERSION ); |
|
90 | - wp_style_add_data( 'lsx-welcome-screen', 'rtl', 'replace' ); |
|
86 | + function lsx_welcome_style($hook_suffix) { |
|
87 | + if ('appearance_page_lsx-welcome' === $hook_suffix) { |
|
88 | + wp_enqueue_style('lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION); |
|
89 | + wp_enqueue_style('lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array('lsx-welcome-screen-mailchimp'), LSX_VERSION); |
|
90 | + wp_style_add_data('lsx-welcome-screen', 'rtl', 'replace'); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | 94 | endif; |
95 | 95 | |
96 | -add_action( 'admin_enqueue_scripts', 'lsx_welcome_style' ); |
|
96 | +add_action('admin_enqueue_scripts', 'lsx_welcome_style'); |
|
97 | 97 | |
98 | -if ( ! function_exists( 'lsx_welcome_register_menu' ) ) : |
|
98 | +if ( ! function_exists('lsx_welcome_register_menu')) : |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Creates the dashboard page. |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | * @subpackage welcome-page |
105 | 105 | */ |
106 | 106 | function lsx_welcome_register_menu() { |
107 | - add_theme_page( 'LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen' ); |
|
107 | + add_theme_page('LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen'); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -add_action( 'admin_menu', 'lsx_welcome_register_menu' ); |
|
112 | +add_action('admin_menu', 'lsx_welcome_register_menu'); |
|
113 | 113 | |
114 | -if ( ! function_exists( 'lsx_welcome_screen' ) ) : |
|
114 | +if ( ! function_exists('lsx_welcome_screen')) : |
|
115 | 115 | |
116 | 116 | /** |
117 | 117 | * The welcome screen. |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | * @subpackage welcome-page |
121 | 121 | */ |
122 | 122 | function lsx_welcome_screen() { |
123 | - require_once( ABSPATH . 'wp-load.php' ); |
|
124 | - require_once( ABSPATH . 'wp-admin/admin.php' ); |
|
125 | - require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
123 | + require_once(ABSPATH . 'wp-load.php'); |
|
124 | + require_once(ABSPATH . 'wp-admin/admin.php'); |
|
125 | + require_once(ABSPATH . 'wp-admin/admin-header.php'); |
|
126 | 126 | ?> |
127 | 127 | <div class="wrap about-wrap"> |
128 | 128 | <?php |
@@ -133,14 +133,14 @@ discard block |
||
133 | 133 | * @hooked lsx_welcome_enhance - 20 |
134 | 134 | * @hooked lsx_welcome_footer - 30 |
135 | 135 | */ |
136 | - do_action( 'lsx_welcome' ); ?> |
|
136 | + do_action('lsx_welcome'); ?> |
|
137 | 137 | </div> |
138 | 138 | <?php |
139 | 139 | } |
140 | 140 | |
141 | 141 | endif; |
142 | 142 | |
143 | -if ( ! function_exists( 'lsx_welcome_header' ) ) : |
|
143 | +if ( ! function_exists('lsx_welcome_header')) : |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * Welcome screen intro. |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | * @subpackage welcome-page |
150 | 150 | */ |
151 | 151 | function lsx_welcome_header() { |
152 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-header.php' ); |
|
152 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-header.php'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | endif; |
156 | 156 | |
157 | -add_action( 'lsx_welcome', 'lsx_welcome_header', 10 ); |
|
157 | +add_action('lsx_welcome', 'lsx_welcome_header', 10); |
|
158 | 158 | |
159 | -if ( ! function_exists( 'lsx_welcome_enhance' ) ) : |
|
159 | +if ( ! function_exists('lsx_welcome_enhance')) : |
|
160 | 160 | |
161 | 161 | /** |
162 | 162 | * Welcome screen enhance section. |
@@ -165,14 +165,14 @@ discard block |
||
165 | 165 | * @subpackage welcome-page |
166 | 166 | */ |
167 | 167 | function lsx_welcome_enhance() { |
168 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php' ); |
|
168 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | endif; |
172 | 172 | |
173 | -add_action( 'lsx_welcome', 'lsx_welcome_enhance', 20 ); |
|
173 | +add_action('lsx_welcome', 'lsx_welcome_enhance', 20); |
|
174 | 174 | |
175 | -if ( ! function_exists( 'lsx_welcome_footer' ) ) : |
|
175 | +if ( ! function_exists('lsx_welcome_footer')) : |
|
176 | 176 | |
177 | 177 | /** |
178 | 178 | * Welcome screen contribute section. |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | * @subpackage welcome-page |
182 | 182 | */ |
183 | 183 | function lsx_welcome_footer() { |
184 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-footer.php' ); |
|
184 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-footer.php'); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | endif; |
188 | 188 | |
189 | -add_action( 'lsx_welcome', 'lsx_welcome_footer', 30 ); |
|
189 | +add_action('lsx_welcome', 'lsx_welcome_footer', 30); |