%PDF- %PDF-
| Direktori : /home/opti/public_html/stlc/wp-content/plugins/insur-addon/includes/Widgets/ |
| Current File : /home/opti/public_html/stlc/wp-content/plugins/insur-addon/includes/Widgets/FooterCopyright.php |
<?php
namespace Layerdrops\Insur\Widgets;
class FooterCopyright extends \Elementor\Widget_Base
{
public function get_name()
{
return 'footer-copyright';
}
public function get_title()
{
return __('Footer CopyRight', 'insur-addon');
}
public function get_icon()
{
return 'eicon-cogs';
}
public function get_categories()
{
return ['insur-category'];
}
protected function register_controls()
{
$this->start_controls_section(
'content_section',
[
'label' => __('Content', 'insur-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'title',
[
'label' => __('Add Text', 'insur-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'default' => __('© Layerdrops', 'insur-addon')
]
);
$this->end_controls_section();
//style
$this->start_controls_section(
'style_option',
[
'label' => esc_html__('Style Options', 'insur-addon'),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
]
);
//Copyright Text typography
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'copyright_text_typography',
'label' => esc_html__('Copyright Text Typography', 'insur-addon'),
'selector' => '{{WRAPPER}} .site-footer__bottom-text,{{WRAPPER}} .site-footer__bottom-text a',
]
);
$this->add_control(
'copyright_text_color',
[
'label' => __('Copyright Text Color', 'insur-addon'),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .site-footer__bottom-text,{{WRAPPER}} .site-footer__bottom-text a' => 'color: {{VALUE}}',
],
]
);
$this->end_controls_section();
}
protected function render()
{
$settings = $this->get_settings_for_display();
include insur_get_template('footer-copyright.php');
}
}