File: /home/nyiet8349bzl/public_html/oldwebsite.sbsc.in/wp-content/plugins/eikra-core/elementor/base.php
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
use Elementor\Widget_Base;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
abstract class Custom_Widget_Base extends Widget_Base {
public $rt_name;
public $rt_base;
public $rt_category;
public $rt_icon;
public $rt_translate;
public $rt_dir;
public function __construct( $data = [], $args = null ) {
$this->rt_category = EIKRA_CORE_THEME_PREFIX . '-widgets'; // Category /@dev
$this->rt_icon = 'rdtheme-el-custom';
$this->rt_dir = dirname( ( new ReflectionClass( $this ) )->getFileName() );
parent::__construct( $data, $args );
}
abstract public function rt_fields();
public function get_name() {
return $this->rt_base;
}
public function get_title() {
return $this->rt_name;
}
public function get_icon() {
return $this->rt_icon;
}
public function get_categories() {
return array( $this->rt_category );
}
protected function register_controls() {
$fields = $this->rt_fields();
foreach ( $fields as $field ) {
if ( isset( $field['mode'] ) && $field['mode'] == 'section_start' ) {
$id = $field['id'];
unset( $field['id'] );
unset( $field['mode'] );
$this->start_controls_section( $id, $field );
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'section_end' ) {
$this->end_controls_section();
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'tabs_start' ) {
$id = $field['id'];
unset( $field['id'] );
unset( $field['mode'] );
$this->start_controls_tabs( $id );
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'tabs_end' ) {
$this->end_controls_tabs();
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'tab_start' ) {
$id = $field['id'];
unset( $field['id'] );
unset( $field['mode'] );
$this->start_controls_tab( $id, $field );
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'tab_end' ) {
$this->end_controls_tab();
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'group' ) {
$type = $field['type'];
$field['name'] = $field['id'];
unset( $field['mode'] );
unset( $field['type'] );
unset( $field['id'] );
$this->add_group_control( $type, $field );
}
elseif ( isset( $field['mode'] ) && $field['mode'] == 'responsive' ) {
$id = $field['id'];
unset( $field['id'] );
unset( $field['mode'] );
$this->add_responsive_control( $id, $field );
}
else {
$id = $field['id'];
unset( $field['id'] );
$this->add_control( $id, $field );
}
}
}
public function rt_template( $template, $data ) {
$template_name = DIRECTORY_SEPARATOR . 'elementor-custom' . DIRECTORY_SEPARATOR . basename( $this->rt_dir ) . DIRECTORY_SEPARATOR . $template . '.php';
if ( file_exists( STYLESHEETPATH . $template_name ) ) {
$file = STYLESHEETPATH . $template_name;
}
elseif ( file_exists( TEMPLATEPATH . $template_name ) ) {
$file = TEMPLATEPATH . $template_name;
}
else {
$file = $this->rt_dir . DIRECTORY_SEPARATOR . $template . '.php';
}
ob_start();
include $file;
echo ob_get_clean();
}
public function rt_alignment_options(){
return array(
'left' => array(
'title' => __( 'Left', 'metro-core' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => __( 'Center', 'metro-core' ),
'icon' => 'eicon-text-align-center',
),
'right' => array(
'title' => __( 'Right', 'metro-core' ),
'icon' => 'eicon-text-align-right',
),
);
}
/**
* Get Custom post category:
* @param $cat
*
* @return array
*/
protected function rt_get_taxonomy( $cat ) {
$terms = get_terms( [
'taxonomy' => $cat,
'hide_empty' => true,
] );
$options = [];
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
foreach ( $terms as $term ) {
$options[ $term->slug ] = $term->name;
}
return $options;
}
}
}