Your IP : 216.73.216.0
<?php
namespace Layerdrops\Zeinet\Widgets;
class Shape extends \Elementor\Widget_Base
{
public function get_name()
{
return 'zeinet-shape';
}
public function get_title()
{
return __('Shape', 'zeinet-addon');
}
public function get_icon()
{
return 'eicon-cogs';
}
public function get_categories()
{
return ['zeinet-category'];
}
protected function register_controls()
{
$this->start_controls_section(
'layout_section',
[
'label' => __('Layout', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'layout_type',
[
'label' => __('Select Layout', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::SELECT2,
'default' => 'layout_one',
'options' => [
'layout_one' => __('Layout One', 'zeinet-addon'),
'layout_two' => __('Layout Two', 'zeinet-addon'),
]
]
);
$this->end_controls_section();
$this->start_controls_section(
'layout_one_content_section',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'condition' => [
'layout_type' => ['layout_one', 'layout_two']
]
]
);
$this->add_control(
'shape_one',
[
'label' => __('Shape One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
}
protected function render()
{
$settings = $this->get_settings_for_display();
include zeinet_get_template('shape-one.php');
include zeinet_get_template('shape-two.php');
}
}