Current File : /home/kelaby89/diamondtiptiling.com/wp-content/plugins/floens-addon/includes/Widgets/Shape.php |
<?php
namespace Layerdrops\Floens\Widgets;
class Shape extends \Elementor\Widget_Base
{
public function get_name()
{
return 'floens-shape';
}
public function get_title()
{
return __('Shape', 'floens-addon');
}
public function get_icon()
{
return 'eicon-cogs';
}
public function get_categories()
{
return ['floens-category'];
}
protected function register_controls()
{
$this->start_controls_section(
'layout_section',
[
'label' => __('Layout', 'floens-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'layout_type',
[
'label' => __('Select Layout', 'floens-addon'),
'type' => \Elementor\Controls_Manager::SELECT2,
'default' => 'layout_one',
'options' => [
'layout_one' => __('Layout One', 'floens-addon'),
]
]
);
$this->end_controls_section();
$this->start_controls_section(
'layout_one_content_section',
[
'label' => __('Content', 'floens-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'shape',
[
'label' => __('Shape', 'floens-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
//General style
$this->start_controls_section(
'general_style',
[
'label' => esc_html__('Content Style', 'floens-addon'),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
]
);
$this->end_controls_section();
}
protected function render()
{
$settings = $this->get_settings_for_display();
include floens_get_template('shape-one.php');
}
}