shell bypass 403
GrazzMean Shell
: /home/workvvfb/www/wp-content/plugins/happy-elementor-addons/widgets/archive-title/ [ drwxr-xr-x ]
<?php
/**
* Archive Title widget class
*
* @package Happy_Addons
*/
namespace Happy_Addons\Elementor\Widget;
use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
defined( 'ABSPATH' ) || die();
class Archive_Title extends Base {
/**
* Get widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Archive Title', 'happy-elementor-addons' );
}
public function get_custom_help_url() {
return 'https://happyaddons.com/docs/happy-addons-for-elementor/widgets/archive-title/';
}
/**
* Get widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'hm hm-tb-archieve-title';
}
public function get_keywords() {
return [ 'archive title', 'Title', 'text' ];
}
public function get_categories() {
return [ 'happy_addons_category', 'happy_addons_theme_builder' ];
}
/**
* Register widget content controls
*/
protected function register_content_controls() {
$this->__archive_title_controls();
}
protected function __archive_title_controls(){
$this->start_controls_section(
'_section_archive_title',
[
'label' => __( 'Archive Title', 'happy-elementor-addons' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'archive_title_tag',
[
'label' => __( 'Title HTML Tag', 'happy-elementor-addons' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'h1' => [
'title' => __( 'H1', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h1'
],
'h2' => [
'title' => __( 'H2', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h2'
],
'h3' => [
'title' => __( 'H3', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h3'
],
'h4' => [
'title' => __( 'H4', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h4'
],
'h5' => [
'title' => __( 'H5', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h5'
],
'h6' => [
'title' => __( 'H6', 'happy-elementor-addons' ),
'icon' => 'eicon-editor-h6'
]
],
'default' => 'h2',
'toggle' => false,
]
);
$this->add_control(
'size',
[
'label' => esc_html__( 'Size', 'happy-elementor-addons' ),
'type' => Controls_Manager::SELECT,
'default' => 'default',
'options' => [
'default' => esc_html__( 'Default', 'happy-elementor-addons' ),
'small' => esc_html__( 'Small', 'happy-elementor-addons' ),
'medium' => esc_html__( 'Medium', 'happy-elementor-addons' ),
'large' => esc_html__( 'Large', 'happy-elementor-addons' ),
'xl' => esc_html__( 'XL', 'happy-elementor-addons' ),
'xxl' => esc_html__( 'XXL', 'happy-elementor-addons' ),
],
]
);
$this->add_responsive_control(
'align',
[
'label' => __( 'Alignment', 'happy-elementor-addons' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => __( 'Left', 'happy-elementor-addons' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => __( 'Center', 'happy-elementor-addons' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => __( 'Right', 'happy-elementor-addons' ),
'icon' => 'eicon-text-align-right',
],
'justify' => [
'title' => __( 'Justify', 'happy-elementor-addons' ),
'icon' => 'eicon-text-align-justify',
],
],
'toggle' => true,
'selectors' => [
'{{WRAPPER}} .elementor-widget-container' => 'text-align: {{VALUE}};',
'{{WRAPPER}}:not(:has(.elementor-widget-container)) .ha-archive-title' => 'text-align: {{VALUE}};'
]
]
);
$this->end_controls_section();
}
/**
* Register styles related controls
*/
protected function register_style_controls() {
$this->__archive_title_style_controls();
}
protected function __archive_title_style_controls() {
$this->start_controls_section(
'_section_style_archive',
[
'label' => __( 'Text', 'happy-elementor-addons' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'archive_color',
[
'label' => esc_html__( 'Color', 'happy-elementor-addons' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ha-archive-title' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'archive_title_typography',
'label' => __( 'Typography', 'happy-elementor-addons' ),
'selector' => '{{WRAPPER}} .ha-archive-title',
'global' => [
'default' => Global_Typography::TYPOGRAPHY_SECONDARY,
],
]
);
$this->add_group_control(
Group_Control_Text_Shadow::get_type(),
[
'name' => 'archive_text_shadow',
'selector' => '{{WRAPPER}} .ha-archive-title',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
$this->add_render_attribute('title', 'class', 'ha-archive-title');
if ( ! empty( $settings['size'] ) ) {
$this->add_render_attribute('title', 'class', 'elementor-size-' . $settings['size']);
}
printf('<%1$s %2$s>%3$s</%1$s>',
ha_escape_tags($settings['archive_title_tag']),
$this->get_render_attribute_string('title'),
get_the_archive_title()
);
}
}