whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
themes
/
medizin
/
elementor
/
widgets
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/themes/medizin/elementor/widgets/shapes.php
<?php namespace Medizin_Elementor; use Elementor\Controls_Manager; use Elementor\Scheme_Color; defined( 'ABSPATH' ) || exit; class Widget_Shapes extends Base { public function get_name() { return 'tm-shapes'; } public function get_title() { return esc_html__( 'Modern Shapes', 'medizin' ); } public function get_icon_part() { return 'eicon-favorite'; } public function get_keywords() { return [ 'shapes' ]; } protected function _register_controls() { $this->add_content_section(); } private function add_content_section() { $this->start_controls_section( 'content_section', [ 'label' => esc_html__( 'Shape', 'medizin' ), ] ); $this->add_control( 'type', [ 'label' => esc_html__( 'Type', 'medizin' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'circle' => esc_html__( 'Circle', 'medizin' ), 'border-circle' => esc_html__( 'Border Circle', 'medizin' ), 'distortion' => esc_html__( 'Distortion', 'medizin' ), ], 'default' => 'circle', 'prefix_class' => 'medizin-shape-', ] ); $this->add_responsive_control( 'shape_size', [ 'label' => esc_html__( 'Size', 'medizin' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 5, 'max' => 500, ], ], 'default' => [ 'unit' => 'px', 'size' => 50, ], 'selectors' => [ '{{WRAPPER}} .shape' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};', '{{WRAPPER}} svg' => 'width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'shape_border_size', [ 'label' => esc_html__( 'Border', 'medizin' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 1, 'max' => 50, ], ], 'default' => [ 'unit' => 'px', 'size' => 3, ], 'selectors' => [ '{{WRAPPER}} .shape' => 'border-width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'type' => [ 'border-circle' ], ], ] ); $this->add_control( 'shape_color', [ 'label' => esc_html__( 'Color', 'medizin' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .shape' => 'color: {{VALUE}};', '{{WRAPPER}} .elementor-shape-fill' => 'fill: {{VALUE}};', ], 'scheme' => [ 'type' => Scheme_Color::get_type(), 'value' => Scheme_Color::COLOR_1, ], ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $this->add_render_attribute( 'box', 'class', 'medizin-shape' ); ?> <div <?php $this->print_render_attribute_string( 'box' ) ?>> <?php if ( 'distortion' === $settings['type'] ): ?> <?php echo \Medizin_Helper::get_file_contents( MEDIZIN_THEME_DIR . '/assets/shape/' . $settings['type'] . '.svg' ); ?> <?php else: ?> <div class="shape"></div> <?php endif; ?> </div> <?php } }
Copyright ©2021 || Defacer Indonesia