📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 08:36:33
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
elements
✏️
Editing: element-functions.php
<?php /** * Swipper Lib */ if(!function_exists('berich_elements_scripts')){ add_action( 'wp_enqueue_scripts', 'berich_elements_scripts'); function berich_elements_scripts() { $theme = wp_get_theme( get_template() ); wp_register_script( 'gsap', get_template_directory_uri() . '/assets/js/libs/gsap.min.js', array( 'jquery' ), '3.5.0', true ); wp_register_script( 'pxl-scroll-trigger', get_template_directory_uri() . '/assets/js/libs/scroll-trigger.js', array( 'jquery' ), '3.10.5', true ); wp_register_script( 'pxl-splitText', get_template_directory_uri() . '/assets/js/libs/split-text.js', array( 'jquery' ), '3.6.1', true ); wp_register_script( 'pxl-bundled-lenis', get_template_directory_uri() . '/assets/js/libs/bundled-lenis.min.js', array( 'jquery' ), '1.0.0', true ); wp_register_script( 'pxl-nice-scroll', get_template_directory_uri() . '/assets/js/libs/nice-scroll.min.js', array( 'jquery' ), '3.7.6', true ); wp_register_script('berich-particle', get_template_directory_uri() . '/elements/widgets/js/particle.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-parallax', get_template_directory_uri() . '/elements/widgets/js/parallax.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('pxl-post-grid', get_template_directory_uri() . '/elements/widgets/js/grid.js', [ 'isotope', 'jquery' ], $theme->get( 'Version' ), true); wp_localize_script('pxl-post-grid', 'main_data', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'wpnonce' => wp_create_nonce( '_ajax_nonce' ) ) ); wp_register_script('pxl-swiper', get_template_directory_uri() . '/elements/widgets/js/carousel.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('pxl-slick', get_template_directory_uri() . '/elements/widgets/js/slick.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-counter', get_template_directory_uri() . '/elements/widgets/js/counter.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-accordion', get_template_directory_uri() . '/elements/widgets/js/accordion.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-tabs', get_template_directory_uri() . '/elements/widgets/js/tabs.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-progressbar', get_template_directory_uri() . '/elements/widgets/js/progressbar.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-countdown', get_template_directory_uri() . '/elements/widgets/js/countdown.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('pxl-pie-chart', get_template_directory_uri() . '/assets/js/libs/pie-chart.min.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_register_script('berich-pie-chart', get_template_directory_uri() . '/elements/widgets/js/pie-chart.js', [ 'jquery' ], $theme->get( 'Version' ), true); wp_enqueue_script('berich-elementor', get_template_directory_uri() . '/elements/widgets/js/elementor.js', [ 'jquery' ], $theme->get( 'Version' ), true); } } /** * Extra Elementor Icons */ if(!function_exists('berich_register_custom_icon_library')){ add_filter('elementor/icons_manager/native', 'berich_register_custom_icon_library'); function berich_register_custom_icon_library($tabs){ $custom_tabs = [ 'pxl_icon1' => [ 'name' => 'flaticon', 'label' => esc_html__( 'Berich', 'berich' ), 'url' => false, 'enqueue' => false, 'prefix' => 'flaticon-', 'displayPrefix' => 'flaticon', 'labelIcon' => 'flaticon-nanotechnology', 'ver' => '1.0.0', 'fetchJson' => get_template_directory_uri() . '/assets/fonts/flaticon/flaticons.js', 'native' => true, ], ]; $tabs = array_merge($custom_tabs, $tabs); return $tabs; } } /** * Get class widget path */ if(!function_exists('berich_get_class_widget_path')){ function berich_get_class_widget_path(){ $upload_dir = wp_upload_dir(); $cls_path = $upload_dir['basedir'].'/elementor-widget/'; if(!is_dir($cls_path)) { wp_mkdir_p( $cls_path ); } return $cls_path; } } /** * Get post type options */ function berich_get_post_type_options($pt_supports=[]){ $post_types = get_post_types([ 'public' => true, ], 'objects'); $excluded_post_type = [ 'page', 'attachment', 'revision', 'nav_menu_item', 'custom_css', 'customize_changeset', 'oembed_cache', 'e-landing-page', 'header', 'footer', 'mega-menu', 'elementor_library' ]; $result_some = []; $result_any = []; if (!is_array($post_types)) return $result; foreach ($post_types as $post_type) { if (!$post_type instanceof WP_Post_Type) continue; if (in_array($post_type->name, $excluded_post_type)) continue; if(!empty($pt_supports) && in_array($post_type->name, $pt_supports)){ $result_some[$post_type->name] = $post_type->labels->singular_name; }else{ $result_any[$post_type->name] = $post_type->labels->singular_name; } } if(!empty($pt_supports)) return $result_some; else return $result_any; } /** * Start Post Grid Functions */ function berich_get_post_grid_layout($pt_supports = []){ $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $result[] = array( 'name' => 'layout_'.$name, 'label' => sprintf(esc_html__( 'Select Template of %s', 'berich' ), $label), 'type' => 'layoutcontrol', 'default' => 'post-1', 'options' => berich_get_grid_layout_options($name), 'prefix_class' => 'pxl-post-layout-', 'condition' => [ 'post_type' => [$name] ] ); } return $result; } function berich_get_grid_layout_options($posttype_name){ $option_layouts = []; switch ($posttype_name) { case 'portfolio': $option_layouts = [ 'portfolio-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_grid/portfolio-layout1.jpg' ], ]; break; case 'post': $option_layouts = [ 'post-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_grid/post-layout1.jpg' ], ]; break; } return $option_layouts; } function berich_get_grid_term_by_posttype($pt_supports = [], $args=[]){ $args = wp_parse_args($args, ['condition' => 'post_type', 'custom_condition' => []]); $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $taxonomy = get_object_taxonomies($name, 'names'); if($name == 'post') $taxonomy = ['category']; $result[] = array( 'name' => 'source_'.$name, 'label' => sprintf(esc_html__( 'Select Term of %s', 'berich' ), $label), 'type' => \Elementor\Controls_Manager::SELECT2, 'multiple' => true, 'options' => pxl_get_grid_term_options($name,$taxonomy), 'condition' => array_merge( [ $args['condition'] => [$name] ], $args['custom_condition'] ) ); } return $result; } function berich_get_grid_ids_by_posttype($pt_supports = [], $args = []){ $args = wp_parse_args($args, ['condition' => 'post_type', 'custom_condition' => []]); $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $posts = berich_list_post($name, false); $result[] = array( 'name' => 'source_' . $name . '_post_ids', 'label' => sprintf(esc_html__('Select posts', 'berich'), $label), 'type' => \Elementor\Controls_Manager::SELECT2, 'multiple' => true, 'options' => $posts, 'condition' => array_merge( [ $args['condition'] => [$name] ], $args['custom_condition'] ) ); } return $result; } /** * End Post Grid Functions */ /** * Start Post Carousel Functions */ function berich_get_post_carousel_layout($pt_supports = []){ $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $result[] = array( 'name' => 'layout_'.$name, 'label' => sprintf(esc_html__( 'Select Template of %s', 'berich' ), $label), 'type' => 'layoutcontrol', 'default' => 'post-1', 'options' => berich_get_carousel_layout_options($name), 'prefix_class' => 'post-layout-', 'condition' => [ 'post_type' => [$name] ] ); } return $result; } function berich_get_carousel_layout_options($posttype_name){ $option_layouts = []; switch ($posttype_name) { case 'portfolio': $option_layouts = [ 'portfolio-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/portfolio-layout1.jpg' ], 'portfolio-2' => [ 'label' => esc_html__( 'Layout 2', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/portfolio-layout2.jpg' ], ]; break; case 'service': $option_layouts = [ 'service-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/service-layout1.jpg' ], ]; break; case 'post': $option_layouts = [ 'post-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/post-layout1.jpg' ], 'post-2' => [ 'label' => esc_html__( 'Layout 2', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/post-layout2.jpg' ], 'post-3' => [ 'label' => esc_html__( 'Layout 3', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_carousel/post-layout3.jpg' ], ]; break; } return $option_layouts; } function berich_get_carousel_term_by_posttype($pt_supports = [], $args=[]){ $args = wp_parse_args($args, ['condition' => 'post_type', 'custom_condition' => []]); $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $taxonomy = get_object_taxonomies($name, 'names'); if($name == 'post') $taxonomy = ['category']; $result[] = array( 'name' => 'source_'.$name, 'label' => sprintf(esc_html__( 'Select Term of %s', 'berich' ), $label), 'type' => \Elementor\Controls_Manager::SELECT2, 'multiple' => true, 'options' => pxl_get_grid_term_options($name,$taxonomy), 'condition' => array_merge( [ $args['condition'] => [$name] ], $args['custom_condition'] ) ); } return $result; } /** * End Post Carousel Functions */ /** * Start Post Modern Functions */ function berich_get_post_modern_layout($pt_supports = []){ $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $result[] = array( 'name' => 'layout_'.$name, 'label' => sprintf(esc_html__( 'Select Template of %s', 'berich' ), $label), 'type' => 'layoutcontrol', 'default' => 'post-1', 'options' => berich_get_modern_layout_options($name), 'prefix_class' => 'post-layout-', 'condition' => [ 'post_type' => [$name] ] ); } return $result; } function berich_get_modern_layout_options($posttype_name){ $option_layouts = []; switch ($posttype_name) { case 'post': $option_layouts = [ 'post-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_modern/post-layout1.jpg' ], ]; break; } return $option_layouts; } /** * End Post Modern Functions */ /** * Start Post Slip Functions */ function berich_get_post_slip_layout($pt_supports = []){ $post_types = berich_get_post_type_options($pt_supports); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $name => $label) { $result[] = array( 'name' => 'layout_'.$name, 'label' => sprintf(esc_html__( 'Select Template of %s', 'berich' ), $label), 'type' => 'layoutcontrol', 'default' => 'portfolio-1', 'options' => berich_get_slip_layout_options($name), 'prefix_class' => 'portfolio-layout-', 'condition' => [ 'post_type' => [$name] ] ); } return $result; } function berich_get_slip_layout_options($posttype_name){ $option_layouts = []; switch ($posttype_name) { case 'portfolio': $option_layouts = [ 'portfolio-1' => [ 'label' => esc_html__( 'Layout 1', 'berich' ), 'image' => get_template_directory_uri() . '/elements/widgets/img-layout/pxl_post_slip/portfolio-layout1.jpg' ], ]; break; } return $option_layouts; } /** * End Post Slip Functions */ /* Icon render */ function berich_elementor_icon_render( $settings, $args = []){ $args = wp_parse_args($args, [ 'prefix' => '', 'id' => 'selected_icon', 'loop' => false, 'tag' => 'div', 'wrap_class' => '', 'class' => '', 'style' => '', 'before' => '', 'after' => '', 'atts' => [], 'animate_data' => '', 'default_icon' => [ 'value' => '', 'library' => '' ], 'echo' => true ]); if($args['loop']) { $icon = $args['id']; } else { $icon = $settings[$args['id']]; } if(empty($icon['value'])) $icon = $args['default_icon']; if (empty($icon['value'])) return; if ( 'svg' === $icon['library'] ){ $args['before'] = '<span class="'.$args['wrap_class'].' '.$args['class'].'" data-settings="'. esc_attr($args['animate_data']).'">'; $args['after'] = '</span>'; } ob_start(); printf('%s', $args['before']); ?> <?php \Elementor\Icons_Manager::render_icon( $icon, array_merge( [ 'aria-hidden' => 'true', 'class' => trim(implode(' ', ['pxl-icon', $args['class'], $args['wrap_class']])), 'style' => $args['style'] ], $args['atts'] ), $args['tag']); ?> <?php printf('%s', $args['after']); if($args['echo']){ echo ob_get_clean(); } else { return ob_get_clean(); } } /** * Animation List */ function berich_widget_animate() { $berich_animate = array( '' => 'None', 'wow bounce' => 'bounce', 'wow flash' => 'flash', 'wow pulse' => 'pulse', 'wow rubberBand' => 'rubberBand', 'wow shake' => 'shake', 'wow swing' => 'swing', 'wow tada' => 'tada', 'wow wobble' => 'wobble', 'wow bounceIn' => 'bounceIn', 'wow bounceInDown' => 'bounceInDown', 'wow bounceInLeft' => 'bounceInLeft', 'wow bounceInRight' => 'bounceInRight', 'wow bounceInUp' => 'bounceInUp', 'wow bounceOut' => 'bounceOut', 'wow bounceOutDown' => 'bounceOutDown', 'wow bounceOutLeft' => 'bounceOutLeft', 'wow bounceOutRight' => 'bounceOutRight', 'wow bounceOutUp' => 'bounceOutUp', 'wow fadeIn' => 'fadeIn', 'wow fadeInDown' => 'fadeInDown', 'wow fadeInDownBig' => 'fadeInDownBig', 'wow fadeInLeft' => 'fadeInLeft', 'wow fadeInLeftBig' => 'fadeInLeftBig', 'wow fadeInRight' => 'fadeInRight', 'wow fadeInRightBig' => 'fadeInRightBig', 'wow fadeInUp' => 'fadeInUp', 'wow fadeInUpBig' => 'fadeInUpBig', 'wow fadeOut' => 'fadeOut', 'wow fadeOutDown' => 'fadeOutDown', 'wow fadeOutDownBig' => 'fadeOutDownBig', 'wow fadeOutLeft' => 'fadeOutLeft', 'wow fadeOutLeftBig' => 'fadeOutLeftBig', 'wow fadeOutRight' => 'fadeOutRight', 'wow fadeOutRightBig' => 'fadeOutRightBig', 'wow fadeOutUp' => 'fadeOutUp', 'wow fadeOutUpBig' => 'fadeOutUpBig', 'wow flip' => 'flip', 'wow flipCase' => 'flipCase', 'wow flipInX' => 'flipInX', 'wow flipInY' => 'flipInY', 'wow flipOutX' => 'flipOutX', 'wow flipOutY' => 'flipOutY', 'wow lightSpeedIn' => 'lightSpeedIn', 'wow lightSpeedOut' => 'lightSpeedOut', 'wow rotateIn' => 'rotateIn', 'wow rotateInDownLeft' => 'rotateInDownLeft', 'wow rotateInDownRight' => 'rotateInDownRight', 'wow rotateInUpLeft' => 'rotateInUpLeft', 'wow rotateInUpRight' => 'rotateInUpRight', 'wow rotateOut' => 'rotateOut', 'wow rotateOutDownLeft' => 'rotateOutDownLeft', 'wow rotateOutDownRight' => 'rotateOutDownRight', 'wow rotateOutUpLeft' => 'rotateOutUpLeft', 'wow rotateOutUpRight' => 'rotateOutUpRight', 'wow hinge' => 'hinge', 'wow rollIn' => 'rollIn', 'wow rollOut' => 'rollOut', 'wow zoomInSmall' => 'zoomInSmall', 'wow zoomIn' => 'zoomInBig', 'wow zoomOut' => 'zoomOut', 'wow skewIn' => 'skewInLeft', 'wow skewInRight' => 'skewInRight', 'wow skewInBottom' => 'skewInBottom', 'wow RotatingY' => 'RotatingY', 'wow PXLfadeInUp' => 'PXLfadeInUp', 'fadeInPopup' => 'fadeInPopup', ); return $berich_animate; } function berich_widget_animate_v2() { $berich_animate_v2 = array( '' => 'None', 'wow bounce' => 'bounce', 'wow flash' => 'flash', 'wow pulse' => 'pulse', 'wow rubberBand' => 'rubberBand', 'wow shake' => 'shake', 'wow swing' => 'swing', 'wow tada' => 'tada', 'wow wobble' => 'wobble', 'wow bounceIn' => 'bounceIn', 'wow bounceInDown' => 'bounceInDown', 'wow bounceInLeft' => 'bounceInLeft', 'wow bounceInRight' => 'bounceInRight', 'wow bounceInUp' => 'bounceInUp', 'wow bounceOut' => 'bounceOut', 'wow bounceOutDown' => 'bounceOutDown', 'wow bounceOutLeft' => 'bounceOutLeft', 'wow bounceOutRight' => 'bounceOutRight', 'wow bounceOutUp' => 'bounceOutUp', 'wow fadeIn' => 'fadeIn', 'wow fadeInDown' => 'fadeInDown', 'wow fadeInDownBig' => 'fadeInDownBig', 'wow fadeInLeft' => 'fadeInLeft', 'wow fadeInLeftBig' => 'fadeInLeftBig', 'wow fadeInRight' => 'fadeInRight', 'wow fadeInRightBig' => 'fadeInRightBig', 'wow fadeInUp' => 'fadeInUp', 'wow fadeInUpBig' => 'fadeInUpBig', 'wow fadeOut' => 'fadeOut', 'wow fadeOutDown' => 'fadeOutDown', 'wow fadeOutDownBig' => 'fadeOutDownBig', 'wow fadeOutLeft' => 'fadeOutLeft', 'wow fadeOutLeftBig' => 'fadeOutLeftBig', 'wow fadeOutRight' => 'fadeOutRight', 'wow fadeOutRightBig' => 'fadeOutRightBig', 'wow fadeOutUp' => 'fadeOutUp', 'wow fadeOutUpBig' => 'fadeOutUpBig', 'wow flip' => 'flip', 'wow flipCase' => 'flipCase', 'wow flipInX' => 'flipInX', 'wow flipInY' => 'flipInY', 'wow flipOutX' => 'flipOutX', 'wow flipOutY' => 'flipOutY', 'wow lightSpeedIn' => 'lightSpeedIn', 'wow lightSpeedOut' => 'lightSpeedOut', 'wow rotateIn' => 'rotateIn', 'wow rotateInDownLeft' => 'rotateInDownLeft', 'wow rotateInDownRight' => 'rotateInDownRight', 'wow rotateInUpLeft' => 'rotateInUpLeft', 'wow rotateInUpRight' => 'rotateInUpRight', 'wow rotateOut' => 'rotateOut', 'wow rotateOutDownLeft' => 'rotateOutDownLeft', 'wow rotateOutDownRight' => 'rotateOutDownRight', 'wow rotateOutUpLeft' => 'rotateOutUpLeft', 'wow rotateOutUpRight' => 'rotateOutUpRight', 'wow hinge' => 'hinge', 'wow rollIn' => 'rollIn', 'wow rollOut' => 'rollOut', 'wow zoomInSmall' => 'zoomInSmall', 'wow zoomIn' => 'zoomInBig', 'wow zoomOut' => 'zoomOut', 'wow skewIn' => 'skewInLeft', 'wow skewInRight' => 'skewInRight', 'wow RotatingY' => 'RotatingY', 'wow PXLfadeInUp' => 'PXLfadeInUp', 'wow TextOutlineAnimation' => 'Text Outline Animation', 'pxl-split-text split-in-fade' => 'Slip Text In Fade', 'pxl-split-text split-in-right' => 'Slip Text In Right', 'pxl-split-text split-in-left' => 'Slip Text In Left', 'pxl-split-text split-in-up' => 'Slip Text In Up', 'pxl-split-text split-in-down' => 'Slip Text In Down', 'pxl-split-text split-in-rotate' => 'Slip Text In Rotate', 'pxl-split-text split-in-scale' => 'Slip Text In Scale', ); return $berich_animate_v2; } /** * Pagram Animation */ if(!function_exists('berich_widget_animation_settings')){ function berich_widget_animation_settings($args = []){ $args = wp_parse_args($args, [ 'tab' => \Elementor\Controls_Manager::TAB_STYLE, 'condition' => [] ]); return array( 'name' => 'section_animation', 'label' => esc_html__('Animation', 'berich'), 'tab' => $args['tab'], 'condition' => $args['condition'], 'controls' => array_merge( array( array( 'name' => 'pxl_animate', 'label' => esc_html__('Case Animate', 'berich' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => berich_widget_animate(), 'default' => '', ), array( 'name' => 'pxl_animate_delay', 'label' => esc_html__('Animate Delay', 'berich' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => '0', 'description' => 'Enter number. Default 0ms', ), ) ) ); } } if(!function_exists('berich_widget_color_type')){ function berich_widget_color_type($args = []){ $gradient_prefix_class = 'pxl-'; $gradient_return_value = 'gradient'; $args = wp_parse_args($args, [ 'label' => '', 'prefix' => '', 'selectors_class' => '', 'condition' => [] ]); $options = array( array( 'name' => $args['prefix'] .'_color_type', 'label' => esc_html__('Color Type', 'berich' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => [ 'normal' => 'Normal', 'gradient' => 'Gradient', ], 'default' => 'normal', ), array( 'name' => $args['prefix'] .'_normal_color', 'label' => esc_html__('Normal Color', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => 'color: {{VALUE}};', ], 'condition' => [ $args['prefix'].'_color_type' => ['normal'], ], ), array( 'name' => $args['prefix'].'_gradient_color', 'label' => $args['label'] .' '.esc_html__('Gradient Color', 'berich' ), 'type' => \Elementor\Controls_Manager::POPOVER_TOGGLE, 'prefix_class' => $gradient_prefix_class, 'return_value' => $gradient_return_value, 'condition' => [ $args['prefix'].'_color_type' => ['gradient'], ], ), array( 'name' => $args['prefix'].'pxl_start_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'Start Popover', 'berich' ), 'type' => 'pxl_start_popover', 'condition' => $args['condition'], ), array( 'name' => $args['prefix'].'_gradient_color_from', 'label' => esc_html__('From', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-from: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'].'_gradient_color_to', 'label' => esc_html__('To', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-to: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'].'pxl_end_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'End Popover', 'berich' ), 'type' => 'pxl_end_popover', 'condition' => $args['condition'], ), ); return $options; } } if(!function_exists('berich_widget_gradient_color')){ function berich_widget_gradient_color($args = []){ $gradient_prefix_class = 'pxl-'; $gradient_return_value = 'gradient'; $args = wp_parse_args($args, [ 'label' => '', 'prefix' => '', 'selectors_class' => '', 'condition' => [] ]); $options = array( array( 'name' => $args['prefix'] .'_gradient_color', 'label' => $args['label'] .' '.esc_html__('Gradient Color', 'berich' ), 'type' => \Elementor\Controls_Manager::POPOVER_TOGGLE, 'prefix_class' => $gradient_prefix_class, 'return_value' => $gradient_return_value, 'condition' => $args['condition'], ), array( 'name' => $args['prefix'] .'pxl_start_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'Start Popover', 'berich' ), 'type' => 'pxl_start_popover', 'condition' => $args['condition'], ), array( 'name' => $args['prefix'] .'_gradient_color_from', 'label' => esc_html__('From', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-from: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'] .'_gradient_color_to', 'label' => esc_html__('To', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-to: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'] .'pxl_end_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'End Popover', 'berich' ), 'type' => 'pxl_end_popover', 'condition' => $args['condition'], ), ); return $options; } } if(!function_exists('berich_widget_gradient_color_rotate')){ function berich_widget_gradient_color_rotate($args = []){ $gradient_prefix_class = 'pxl-'; $gradient_return_value = 'gradient'; $args = wp_parse_args($args, [ 'label' => '', 'prefix' => '', 'selectors_class' => '', 'condition' => [] ]); $options = array( array( 'name' => $args['prefix'] .'_gradient_color', 'label' => $args['label'] .' '.esc_html__('Gradient Color', 'berich' ), 'type' => \Elementor\Controls_Manager::POPOVER_TOGGLE, 'prefix_class' => $gradient_prefix_class, 'return_value' => $gradient_return_value, 'condition' => $args['condition'], ), array( 'name' => $args['prefix'] .'pxl_start_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'Start Popover', 'berich' ), 'type' => 'pxl_start_popover', 'condition' => $args['condition'], ), array( 'name' => $args['prefix'] .'_gradient_color_from', 'label' => esc_html__('From', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-from: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'] .'_gradient_color_to', 'label' => esc_html__('To', 'berich' ), 'type' => \Elementor\Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} '.$args['selectors_class'] => '--gradient-color-to: {{VALUE}};', ], 'condition' => [ $args['prefix'] .'_gradient_color!' => '', ], ), array( 'name' => $args['prefix'] .'_gradient_angle', 'label' => esc_html__('Angle', 'berich' ), 'type' => \Elementor\Controls_Manager::SLIDER, 'size_units' => [ 'px' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 360, 'step' => 10, ], ], ), array( 'name' => $args['prefix'] .'pxl_end_popover', 'label' => ucfirst( str_replace('_', '', $args['prefix']) ).' '. esc_html__( 'End Popover', 'berich' ), 'type' => 'pxl_end_popover', 'condition' => $args['condition'], ), ); return $options; } }
💾 Save Changes
❌ Cancel