@@ -11,14 +11,14 @@ |
||
| 11 | 11 | <html <?php language_attributes(); ?>> |
| 12 | 12 | <head> |
| 13 | 13 | <?php lsx_head_top(); ?> |
| 14 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
| 14 | + <meta charset="<?php bloginfo('charset'); ?>"> |
|
| 15 | 15 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
| 16 | - <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
|
| 16 | + <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>"> |
|
| 17 | 17 | <?php lsx_head_bottom(); ?> |
| 18 | 18 | <?php wp_head(); ?> |
| 19 | 19 | </head> |
| 20 | 20 | |
| 21 | - <body <?php body_class( 'lsx' ); ?>> |
|
| 21 | + <body <?php body_class('lsx'); ?>> |
|
| 22 | 22 | <?php lsx_body_top(); ?> |
| 23 | 23 | |
| 24 | 24 | <div class="header-wrap"> |
@@ -7,11 +7,11 @@ discard block |
||
| 7 | 7 | * @category bootstrap-navigation-walker |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if ( ! defined('ABSPATH')) { |
|
| 11 | 11 | exit; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -if ( ! function_exists( 'lsx_wpml_nav_language_switcher_fix' ) ) : |
|
| 14 | +if ( ! function_exists('lsx_wpml_nav_language_switcher_fix')) : |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | 17 | * Add in our custom classes to the menus. |
@@ -20,12 +20,12 @@ discard block |
||
| 20 | 20 | * @subpackage navigation |
| 21 | 21 | * @category bootstrap-navigation-walker |
| 22 | 22 | */ |
| 23 | - function lsx_wpml_nav_language_switcher_fix( $items, $args ) { |
|
| 24 | - $items = str_replace( 'menu-item-language-current','menu-item-language-current dropdown', $items ); |
|
| 25 | - $items = str_replace( 'submenu-languages','submenu-languages dropdown-menu', $items ); |
|
| 23 | + function lsx_wpml_nav_language_switcher_fix($items, $args) { |
|
| 24 | + $items = str_replace('menu-item-language-current', 'menu-item-language-current dropdown', $items); |
|
| 25 | + $items = str_replace('submenu-languages', 'submenu-languages dropdown-menu', $items); |
|
| 26 | 26 | return $items; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | endif; |
| 30 | 30 | |
| 31 | -add_filter( 'wp_nav_menu_items', 'lsx_wpml_nav_language_switcher_fix', 10, 2 ); |
|
| 31 | +add_filter('wp_nav_menu_items', 'lsx_wpml_nav_language_switcher_fix', 10, 2); |
|
@@ -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,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage lazyload |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! class_exists( 'LSX_Lazy_Load_Images' ) ) : |
|
| 13 | +if ( ! class_exists('LSX_Lazy_Load_Images')) : |
|
| 14 | 14 | |
| 15 | 15 | /* |
| 16 | 16 | * LSX Lazy Load Images Class |
@@ -39,143 +39,143 @@ discard block |
||
| 39 | 39 | protected static $noscripts = array(); |
| 40 | 40 | |
| 41 | 41 | static function init() { |
| 42 | - if ( is_admin() ) { |
|
| 42 | + if (is_admin()) { |
|
| 43 | 43 | return; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if ( get_theme_mod( 'lsx_lazyload_status', '1' ) === false ) { |
|
| 46 | + if (get_theme_mod('lsx_lazyload_status', '1') === false) { |
|
| 47 | 47 | self::$enabled = false; |
| 48 | 48 | return; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - if ( ! apply_filters( 'lsx_lazyload_is_enabled', true ) ) { |
|
| 51 | + if ( ! apply_filters('lsx_lazyload_is_enabled', true)) { |
|
| 52 | 52 | self::$enabled = false; |
| 53 | 53 | return; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - add_action( 'wp_enqueue_scripts', array( __CLASS__, 'add_scripts' ) ); |
|
| 57 | - add_action( 'wp_head', array( __CLASS__, 'setup_filters' ), 9999 ); |
|
| 58 | - add_filter( 'wp_kses_allowed_html', array( __CLASS__, 'kses_allowed_html' ), 10, 2 ); |
|
| 56 | + add_action('wp_enqueue_scripts', array(__CLASS__, 'add_scripts')); |
|
| 57 | + add_action('wp_head', array(__CLASS__, 'setup_filters'), 9999); |
|
| 58 | + add_filter('wp_kses_allowed_html', array(__CLASS__, 'kses_allowed_html'), 10, 2); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | static function setup_filters() { |
| 62 | 62 | // WordPress |
| 63 | - add_filter( 'the_content', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 64 | - add_filter( 'widget_text', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 65 | - add_filter( 'post_thumbnail_html', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 66 | - add_filter( 'get_avatar', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 63 | + add_filter('the_content', array(__CLASS__, 'filter_images'), 200); |
|
| 64 | + add_filter('widget_text', array(__CLASS__, 'filter_images'), 200); |
|
| 65 | + add_filter('post_thumbnail_html', array(__CLASS__, 'filter_images'), 200); |
|
| 66 | + add_filter('get_avatar', array(__CLASS__, 'filter_images'), 200); |
|
| 67 | 67 | |
| 68 | 68 | // LSX |
| 69 | - add_filter( 'lsx_lazyload_filter_images', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 69 | + add_filter('lsx_lazyload_filter_images', array(__CLASS__, 'filter_images'), 200); |
|
| 70 | 70 | |
| 71 | 71 | // Envira Gallery |
| 72 | - add_filter( 'envira_gallery_output_image', array( __CLASS__, 'filter_images' ), 200 ); |
|
| 72 | + add_filter('envira_gallery_output_image', array(__CLASS__, 'filter_images'), 200); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | static function add_scripts() { |
| 76 | - wp_enqueue_script( 'lazysizes', get_template_directory_uri() . '/assets/js/vendor/lazysizes.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
| 76 | + wp_enqueue_script('lazysizes', get_template_directory_uri() . '/assets/js/vendor/lazysizes.min.js', array('jquery'), LSX_VERSION, true); |
|
| 77 | 77 | // Plugin that enables use lazysizes in brackground images |
| 78 | 78 | //wp_enqueue_script( 'lazysizes', get_template_directory_uri() . '/assets/js/vendor/ls.unveilhooks.min.js', array( 'jquery', 'lazysizes' ), LSX_VERSION, true ); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - static function filter_images( $content ) { |
|
| 82 | - if ( ! self::is_enabled() ) { |
|
| 81 | + static function filter_images($content) { |
|
| 82 | + if ( ! self::is_enabled()) { |
|
| 83 | 83 | return $content; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - $http_user_agent = sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); |
|
| 87 | - $http_user_agent = ! empty( $http_user_agent ) ? $http_user_agent : ''; |
|
| 86 | + $http_user_agent = sanitize_text_field(wp_unslash($_SERVER['HTTP_USER_AGENT'])); |
|
| 87 | + $http_user_agent = ! empty($http_user_agent) ? $http_user_agent : ''; |
|
| 88 | 88 | |
| 89 | - if ( is_feed() |
|
| 89 | + if (is_feed() |
|
| 90 | 90 | || is_preview() |
| 91 | - || 1 === intval( get_query_var( 'print' ) ) |
|
| 92 | - || 1 === intval( get_query_var( 'printpage' ) ) |
|
| 93 | - || strpos( $http_user_agent, 'Opera Mini' ) !== false |
|
| 91 | + || 1 === intval(get_query_var('print')) |
|
| 92 | + || 1 === intval(get_query_var('printpage')) |
|
| 93 | + || strpos($http_user_agent, 'Opera Mini') !== false |
|
| 94 | 94 | ) { |
| 95 | 95 | return $content; |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | $skip_images_regex = '/class=".*(lazyload|disable-lazyload).*"/'; |
| 99 | - $placeholder_image = apply_filters( 'lsx_lazyload_placeholder_image', get_template_directory_uri() . '/assets/images/empty.gif' ); |
|
| 99 | + $placeholder_image = apply_filters('lsx_lazyload_placeholder_image', get_template_directory_uri() . '/assets/images/empty.gif'); |
|
| 100 | 100 | |
| 101 | 101 | $matches = array(); |
| 102 | 102 | $search = array(); |
| 103 | 103 | $replace = array(); |
| 104 | 104 | |
| 105 | - $content = preg_replace_callback( '~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content ); |
|
| 106 | - preg_match_all( '/<img[^>]*>/', $content, $matches ); |
|
| 105 | + $content = preg_replace_callback('~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content); |
|
| 106 | + preg_match_all('/<img[^>]*>/', $content, $matches); |
|
| 107 | 107 | |
| 108 | - foreach ( $matches[0] as $img_html ) { |
|
| 109 | - if ( ! ( preg_match( $skip_images_regex, $img_html ) ) ) { |
|
| 108 | + foreach ($matches[0] as $img_html) { |
|
| 109 | + if ( ! (preg_match($skip_images_regex, $img_html))) { |
|
| 110 | 110 | $add_class = false; |
| 111 | 111 | |
| 112 | - if ( ! preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) && preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) { |
|
| 113 | - $replace_html = preg_replace( '/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html ); |
|
| 112 | + if ( ! preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html) && preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) { |
|
| 113 | + $replace_html = preg_replace('/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html); |
|
| 114 | 114 | |
| 115 | - if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) { |
|
| 116 | - $replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html ); |
|
| 115 | + if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) { |
|
| 116 | + $replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html); |
|
| 117 | 117 | } else { |
| 118 | - $replace_html = preg_replace( '/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html ); |
|
| 118 | + $replace_html = preg_replace('/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | $add_class = true; |
| 122 | - } elseif ( preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) ) { |
|
| 123 | - $replace_html = preg_replace( '/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html ); |
|
| 122 | + } elseif (preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html)) { |
|
| 123 | + $replace_html = preg_replace('/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html); |
|
| 124 | 124 | |
| 125 | - if ( preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) { |
|
| 126 | - if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) { |
|
| 127 | - $replace_html = preg_replace( '/srcset=/i', 'data-srcset=', $replace_html ); |
|
| 128 | - $replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html ); |
|
| 125 | + if (preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) { |
|
| 126 | + if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) { |
|
| 127 | + $replace_html = preg_replace('/srcset=/i', 'data-srcset=', $replace_html); |
|
| 128 | + $replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html); |
|
| 129 | 129 | } else { |
| 130 | - $replace_html = preg_replace( '/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html ); |
|
| 130 | + $replace_html = preg_replace('/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html); |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | $add_class = true; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - if ( $add_class ) { |
|
| 138 | - $replace_html = self::add_class( $replace_html, 'lazyload' ); |
|
| 137 | + if ($add_class) { |
|
| 138 | + $replace_html = self::add_class($replace_html, 'lazyload'); |
|
| 139 | 139 | $replace_html .= '<noscript>' . $img_html . '</noscript>'; |
| 140 | 140 | |
| 141 | - array_push( $search, $img_html ); |
|
| 142 | - array_push( $replace, $replace_html ); |
|
| 141 | + array_push($search, $img_html); |
|
| 142 | + array_push($replace, $replace_html); |
|
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - $content = str_replace( $search, $replace, $content ); |
|
| 148 | - $content = preg_replace_callback( '~' . chr( 20 ) . '([0-9]+)' . chr( 20 ) . '~', 'self::noscripts_restore', $content ); |
|
| 147 | + $content = str_replace($search, $replace, $content); |
|
| 148 | + $content = preg_replace_callback('~' . chr(20) . '([0-9]+)' . chr(20) . '~', 'self::noscripts_restore', $content); |
|
| 149 | 149 | return $content; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - static function noscripts_remove( $match ) { |
|
| 152 | + static function noscripts_remove($match) { |
|
| 153 | 153 | self::$noscript_id++; |
| 154 | - self::$noscripts[ self::$noscript_id ] = $match[0]; |
|
| 155 | - return chr( 20 ) . self::$noscript_id . chr( 20 ); |
|
| 154 | + self::$noscripts[self::$noscript_id] = $match[0]; |
|
| 155 | + return chr(20) . self::$noscript_id . chr(20); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - static function noscripts_restore( $match ) { |
|
| 159 | - return self::$noscripts[ (int) $match[1] ]; |
|
| 158 | + static function noscripts_restore($match) { |
|
| 159 | + return self::$noscripts[(int) $match[1]]; |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - static function add_class( $html_string = '', $new_class ) { |
|
| 162 | + static function add_class($html_string = '', $new_class) { |
|
| 163 | 163 | $pattern = '/class=[\'"]([^\'"]*)[\'"]/'; |
| 164 | 164 | |
| 165 | - if ( preg_match( $pattern, $html_string, $matches ) ) { |
|
| 166 | - $defined_classes = explode( ' ', $matches[1] ); |
|
| 165 | + if (preg_match($pattern, $html_string, $matches)) { |
|
| 166 | + $defined_classes = explode(' ', $matches[1]); |
|
| 167 | 167 | |
| 168 | - if ( ! in_array( $new_class, $defined_classes ) ) { |
|
| 168 | + if ( ! in_array($new_class, $defined_classes)) { |
|
| 169 | 169 | $defined_classes[] = $new_class; |
| 170 | 170 | |
| 171 | 171 | $html_string = str_replace( |
| 172 | 172 | $matches[0], |
| 173 | - sprintf( 'class="%s"', implode( ' ', $defined_classes ) ), |
|
| 173 | + sprintf('class="%s"', implode(' ', $defined_classes)), |
|
| 174 | 174 | $html_string |
| 175 | 175 | ); |
| 176 | 176 | } |
| 177 | 177 | } else { |
| 178 | - $html_string = preg_replace( '/(\<.+\s)/', sprintf( '$1class="%s" ', $new_class ), $html_string ); |
|
| 178 | + $html_string = preg_replace('/(\<.+\s)/', sprintf('$1class="%s" ', $new_class), $html_string); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | return $html_string; |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | return self::$enabled; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - static function kses_allowed_html( $allowedtags, $context ) { |
|
| 188 | + static function kses_allowed_html($allowedtags, $context) { |
|
| 189 | 189 | $allowedtags['noscript'] = array(); |
| 190 | 190 | |
| 191 | 191 | $allowedtags['img']['data-src'] = true; |
@@ -198,4 +198,4 @@ discard block |
||
| 198 | 198 | |
| 199 | 199 | endif; |
| 200 | 200 | |
| 201 | -add_action( 'init', array( 'LSX_Lazy_Load_Images', 'init' ) ); |
|
| 201 | +add_action('init', array('LSX_Lazy_Load_Images', 'init')); |
|
@@ -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 | |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage customizer |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! class_exists( 'LSX_Theme_Customizer' ) ) : |
|
| 13 | +if ( ! class_exists('LSX_Theme_Customizer')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Customizer Configuration File |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | /** |
| 27 | 27 | * Initialize the plugin by setting localization and loading public scripts and styles. |
| 28 | 28 | */ |
| 29 | - public function __construct( $controls ) { |
|
| 29 | + public function __construct($controls) { |
|
| 30 | 30 | require get_template_directory() . '/includes/classes/class-lsx-customize-core-control.php'; |
| 31 | 31 | require get_template_directory() . '/includes/classes/class-lsx-customize-layout-control.php'; |
| 32 | 32 | require get_template_directory() . '/includes/classes/class-lsx-customize-font-control.php'; |
@@ -34,83 +34,83 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | $this->controls = $controls; |
| 36 | 36 | |
| 37 | - add_action( 'customize_preview_init', array( $this, 'customize_preview_js' ), 20 ); |
|
| 38 | - add_action( 'customize_register', array( $this, 'customizer' ), 11 ); |
|
| 37 | + add_action('customize_preview_init', array($this, 'customize_preview_js'), 20); |
|
| 38 | + add_action('customize_register', array($this, 'customizer'), 11); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. |
| 43 | 43 | */ |
| 44 | 44 | public function customize_preview_js() { |
| 45 | - wp_enqueue_script( 'lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array( 'customize-preview' ), LSX_VERSION, true ); |
|
| 45 | + wp_enqueue_script('lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array('customize-preview'), LSX_VERSION, true); |
|
| 46 | 46 | |
| 47 | - wp_localize_script( 'lsx_customizer', 'lsx_customizer_params', array( |
|
| 47 | + wp_localize_script('lsx_customizer', 'lsx_customizer_params', array( |
|
| 48 | 48 | 'template_directory' => get_template_directory_uri(), |
| 49 | - ) ); |
|
| 49 | + )); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Create customiser controls. |
| 54 | 54 | */ |
| 55 | - public function customizer( $wp_customize ) { |
|
| 55 | + public function customizer($wp_customize) { |
|
| 56 | 56 | // Start panels |
| 57 | - if ( ! empty( $this->controls['panels'] ) ) { |
|
| 58 | - foreach ( $this->controls['panels'] as $panel_slug => $args ) { |
|
| 59 | - $this->add_panel( $panel_slug, $args, $wp_customize ); |
|
| 57 | + if ( ! empty($this->controls['panels'])) { |
|
| 58 | + foreach ($this->controls['panels'] as $panel_slug => $args) { |
|
| 59 | + $this->add_panel($panel_slug, $args, $wp_customize); |
|
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Start sections |
| 64 | - if ( ! empty( $this->controls['sections'] ) ) { |
|
| 65 | - foreach ( $this->controls['sections'] as $section_slug => $args ) { |
|
| 66 | - $this->add_section( $section_slug, $args, $wp_customize ); |
|
| 64 | + if ( ! empty($this->controls['sections'])) { |
|
| 65 | + foreach ($this->controls['sections'] as $section_slug => $args) { |
|
| 66 | + $this->add_section($section_slug, $args, $wp_customize); |
|
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // Start settings |
| 71 | - if ( ! empty( $this->controls['settings'] ) ) { |
|
| 72 | - foreach ( $this->controls['settings'] as $settings_slug => $args ) { |
|
| 73 | - $this->add_setting( $settings_slug, $args, $wp_customize ); |
|
| 71 | + if ( ! empty($this->controls['settings'])) { |
|
| 72 | + foreach ($this->controls['settings'] as $settings_slug => $args) { |
|
| 73 | + $this->add_setting($settings_slug, $args, $wp_customize); |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | // Start fields |
| 78 | - if ( ! empty( $this->controls['fields'] ) ) { |
|
| 79 | - foreach ( $this->controls['fields'] as $field_slug => $args ) { |
|
| 80 | - $this->add_control( $field_slug, $args, $wp_customize ); |
|
| 78 | + if ( ! empty($this->controls['fields'])) { |
|
| 79 | + foreach ($this->controls['fields'] as $field_slug => $args) { |
|
| 80 | + $this->add_control($field_slug, $args, $wp_customize); |
|
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | // Start selective refresh |
| 85 | - if ( ! empty( $this->controls['selective_refresh'] ) ) { |
|
| 86 | - foreach ( $this->controls['selective_refresh'] as $field_slug => $args ) { |
|
| 87 | - $this->add_selective_refresh( $field_slug, $args, $wp_customize ); |
|
| 85 | + if ( ! empty($this->controls['selective_refresh'])) { |
|
| 86 | + foreach ($this->controls['selective_refresh'] as $field_slug => $args) { |
|
| 87 | + $this->add_selective_refresh($field_slug, $args, $wp_customize); |
|
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; |
|
| 92 | - $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; |
|
| 93 | - $wp_customize->get_setting( 'background_color' )->transport = 'postMessage'; |
|
| 91 | + $wp_customize->get_setting('blogname')->transport = 'postMessage'; |
|
| 92 | + $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; |
|
| 93 | + $wp_customize->get_setting('background_color')->transport = 'postMessage'; |
|
| 94 | 94 | |
| 95 | - $wp_customize->selective_refresh->add_partial( 'blogname', array( |
|
| 95 | + $wp_customize->selective_refresh->add_partial('blogname', array( |
|
| 96 | 96 | 'selector' => 'h1.site-title a', |
| 97 | 97 | 'render_callback' => function() { |
| 98 | - bloginfo( 'name' ); |
|
| 98 | + bloginfo('name'); |
|
| 99 | 99 | }, |
| 100 | - ) ); |
|
| 100 | + )); |
|
| 101 | 101 | |
| 102 | - $wp_customize->selective_refresh->add_partial( 'blogdescription', array( |
|
| 102 | + $wp_customize->selective_refresh->add_partial('blogdescription', array( |
|
| 103 | 103 | 'selector' => '.site-description', |
| 104 | 104 | 'render_callback' => function() { |
| 105 | - bloginfo( 'description' ); |
|
| 105 | + bloginfo('description'); |
|
| 106 | 106 | }, |
| 107 | - ) ); |
|
| 107 | + )); |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
| 111 | 111 | * Create a panel. |
| 112 | 112 | */ |
| 113 | - private function add_panel( $slug, $args, $wp_customize ) { |
|
| 113 | + private function add_panel($slug, $args, $wp_customize) { |
|
| 114 | 114 | $default_args = array( |
| 115 | 115 | 'title' => null, |
| 116 | 116 | 'description' => null, |
@@ -118,57 +118,57 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | $wp_customize->add_panel( |
| 120 | 120 | $slug, |
| 121 | - array_merge( $default_args, $args ) |
|
| 121 | + array_merge($default_args, $args) |
|
| 122 | 122 | ); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | 126 | * Create a section. |
| 127 | 127 | */ |
| 128 | - private function add_section( $slug, $args, $wp_customize ) { |
|
| 128 | + private function add_section($slug, $args, $wp_customize) { |
|
| 129 | 129 | $default_args = array( |
| 130 | 130 | 'capability' => 'edit_theme_options', |
| 131 | 131 | 'description' => null, |
| 132 | 132 | ); |
| 133 | 133 | |
| 134 | - $wp_customize->add_section( $slug, array_merge( $default_args, $args ) ); |
|
| 134 | + $wp_customize->add_section($slug, array_merge($default_args, $args)); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
| 138 | 138 | * Create a setting. |
| 139 | 139 | */ |
| 140 | - private function add_setting( $slug, $args, $wp_customize ) { |
|
| 141 | - $wp_customize->add_setting( $slug, |
|
| 142 | - array_merge( array( |
|
| 140 | + private function add_setting($slug, $args, $wp_customize) { |
|
| 141 | + $wp_customize->add_setting($slug, |
|
| 142 | + array_merge(array( |
|
| 143 | 143 | 'default' => null, |
| 144 | 144 | 'type' => 'theme_mod', |
| 145 | 145 | 'capability' => 'edit_theme_options', |
| 146 | 146 | 'transport' => 'postMessage', |
| 147 | 147 | 'sanitize_callback' => 'lsx_sanitize_choices', |
| 148 | - ), $args ) |
|
| 148 | + ), $args) |
|
| 149 | 149 | ); |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | /** |
| 153 | 153 | * Create a control. |
| 154 | 154 | */ |
| 155 | - private function add_control( $slug, $args, $wp_customize ) { |
|
| 155 | + private function add_control($slug, $args, $wp_customize) { |
|
| 156 | 156 | $default_args = array(); |
| 157 | 157 | |
| 158 | - if ( isset( $args['control'] ) && class_exists( $args['control'] ) ) { |
|
| 158 | + if (isset($args['control']) && class_exists($args['control'])) { |
|
| 159 | 159 | $control_class = $args['control']; |
| 160 | - unset( $args['control'] ); |
|
| 160 | + unset($args['control']); |
|
| 161 | 161 | |
| 162 | - $control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) ); |
|
| 163 | - $wp_customize->add_control( $control ); |
|
| 162 | + $control = new $control_class($wp_customize, $slug, array_merge($default_args, $args)); |
|
| 163 | + $wp_customize->add_control($control); |
|
| 164 | 164 | } else { |
| 165 | - if ( isset( $args['control'] ) ) { |
|
| 166 | - unset( $args['control'] ); |
|
| 165 | + if (isset($args['control'])) { |
|
| 166 | + unset($args['control']); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | $wp_customize->add_control( |
| 170 | 170 | $slug, |
| 171 | - array_merge( $default_args, $args ) |
|
| 171 | + array_merge($default_args, $args) |
|
| 172 | 172 | ); |
| 173 | 173 | } |
| 174 | 174 | } |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | /** |
| 177 | 177 | * Create a selective refresh. |
| 178 | 178 | */ |
| 179 | - private function add_selective_refresh( $slug, $args, $wp_customize ) { |
|
| 179 | + private function add_selective_refresh($slug, $args, $wp_customize) { |
|
| 180 | 180 | $default_args = array( |
| 181 | 181 | 'selector' => null, |
| 182 | 182 | 'render_callback' => null, |
@@ -184,23 +184,23 @@ discard block |
||
| 184 | 184 | |
| 185 | 185 | $wp_customize->selective_refresh->add_partial( |
| 186 | 186 | $slug, |
| 187 | - array_merge( $default_args, $args ) |
|
| 187 | + array_merge($default_args, $args) |
|
| 188 | 188 | ); |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | /** |
| 192 | 192 | * Returns a registered field. |
| 193 | 193 | */ |
| 194 | - public function get_control( $id ) { |
|
| 195 | - $field = $this->controls['fields'][ $id ]; |
|
| 194 | + public function get_control($id) { |
|
| 195 | + $field = $this->controls['fields'][$id]; |
|
| 196 | 196 | return $field; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
| 200 | 200 | * Returns a registered setting. |
| 201 | 201 | */ |
| 202 | - public function get_setting( $id ) { |
|
| 203 | - $setting = $this->controls['settings'][ $id ]; |
|
| 202 | + public function get_setting($id) { |
|
| 203 | + $setting = $this->controls['settings'][$id]; |
|
| 204 | 204 | return $setting; |
| 205 | 205 | } |
| 206 | 206 | |