Server IP : 170.150.155.74 / Your IP : 18.116.27.43 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/neve/inc/customizer/options/ |
Upload File : |
<?php /** * Container layout section. * * Author: Andrei Baicus <andrei@themeisle.com> * Created on: 20/08/2018 * * @package Neve\Customizer\Options */ namespace Neve\Customizer\Options; use Neve\Customizer\Base_Customizer; use Neve\Customizer\Types\Control; use Neve\Customizer\Types\Section; /** * Class Layout_Container * * @package Neve\Customizer\Options */ class Layout_Container extends Base_Customizer { /** * Function that should be extended to add customizer controls. * * @return void */ public function add_controls() { $this->section_container(); $this->control_container_width(); $this->control_container_style(); } /** * Add customize section */ private function section_container() { $this->add_section( new Section( 'neve_container', array( 'priority' => 25, 'title' => esc_html__( 'Container', 'neve' ), 'panel' => 'neve_layout', ) ) ); } /** * Add container width control */ private function control_container_width() { $this->add_control( new Control( 'neve_container_width', [ 'sanitize_callback' => 'neve_sanitize_range_value', 'transport' => $this->selective_refresh, 'default' => '{ "mobile": 748, "tablet": 992, "desktop": 1170 }', ], [ 'label' => esc_html__( 'Container width', 'neve' ), 'section' => 'neve_container', 'type' => 'neve_responsive_range_control', 'input_attrs' => [ 'min' => 200, 'max' => 2000, 'units' => [ 'px' ], 'defaultVal' => [ 'mobile' => 748, 'tablet' => 992, 'desktop' => 1170, ], ], 'live_refresh_selector' => true, 'live_refresh_css_prop' => [ 'cssVar' => [ 'selector' => 'body', 'vars' => '--container', 'responsive' => true, 'suffix' => 'px', ], ], 'priority' => 25, ], '\Neve\Customizer\Controls\React\Responsive_Range' ) ); } /** * Add container style controls */ private function control_container_style() { $container_style_controls = array( 'neve_default_container_style' => array( 'priority' => 30, 'label' => __( 'Default Container Style', 'neve' ), ), 'neve_blog_archive_container_style' => array( 'priority' => 35, 'label' => __( 'Blog / Archive Container Style', 'neve' ), ), 'neve_single_post_container_style' => array( 'priority' => 40, 'label' => __( 'Single Post Container Style', 'neve' ), ), ); if ( class_exists( 'WooCommerce', false ) ) { $container_style_controls = array_merge( $container_style_controls, array( 'neve_shop_archive_container_style' => array( 'priority' => 45, 'label' => __( 'Shop / Archive Container Style', 'neve' ), ), 'neve_single_product_container_style' => array( 'priority' => 50, 'label' => __( 'Single Product Container Style', 'neve' ), ), ) ); } foreach ( $container_style_controls as $control_id => $control ) { $this->add_control( new Control( $control_id, array( 'sanitize_callback' => 'neve_sanitize_container_layout', 'transport' => $this->selective_refresh, 'default' => 'contained', ), array( 'label' => $control['label'], 'section' => 'neve_container', 'type' => 'select', 'priority' => $control['priority'], 'choices' => array( 'contained' => __( 'Contained', 'neve' ), 'full-width' => __( 'Full Width', 'neve' ), ), ) ) ); } } }