Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/inc/vendors/elementor/elements/general/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) || function_exists('Puca_Elementor_Our_Team') ) { exit; // Exit if accessed directly. } use Elementor\Controls_Manager; /** * Elementor tabs widget. * * Elementor widget that displays vertical or horizontal tabs with different * pieces of content. * * @since 1.0.0 */ class Puca_Elementor_Our_Team extends Puca_Elementor_Carousel_Base{ /** * Get widget name. * * Retrieve tabs widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'tbay-our-team'; } /** * Get widget title. * * Retrieve tabs widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'Puca Our Team', 'puca' ); } public function get_script_depends() { return [ 'slick', 'puca-custom-slick' ]; } /** * Get widget icon. * * Retrieve tabs widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-person'; } /** * Register tabs widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * @access protected */ protected function register_controls() { $this->register_controls_heading(); $this->register_remove_heading_element(); $this->start_controls_section( 'section_general', [ 'label' => esc_html__( 'General', 'puca' ), ] ); $this->add_control( 'layout_type', [ 'label' => esc_html__('Layout Type', 'puca'), 'type' => Controls_Manager::SELECT, 'default' => 'grid', 'options' => [ 'grid' => esc_html__('Grid', 'puca'), 'carousel' => esc_html__('Carousel', 'puca'), ], ] ); $repeater = $this->register_our_team_repeater(); $this->add_control( 'our_team', [ 'label' => esc_html__( 'Our Team Items', 'puca' ), 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'default' => $this->register_set_our_team_default(), 'our_team_field' => '{{{ our_team_image }}}', ] ); $this->end_controls_section(); $this->add_control_responsive(); $this->add_control_carousel(['layout_type' => 'carousel']); $this->remove_control('rows'); } private function register_our_team_repeater() { $repeater = new \Elementor\Repeater(); $repeater->add_control ( 'our_team_name', [ 'label' => esc_html__( 'Name', 'puca' ), 'type' => Controls_Manager::TEXT, ] ); $repeater->add_control ( 'our_team_job', [ 'label' => esc_html__( 'Job', 'puca' ), 'type' => Controls_Manager::TEXT, ] ); $repeater->add_control ( 'our_team_image', [ 'label' => esc_html__( 'Choose Image', 'puca' ), 'type' => Controls_Manager::MEDIA, ] ); $repeater->add_control ( 'our_team_link_fb', [ 'label' => esc_html__( 'FaceBook Link', 'puca' ), 'type' => Controls_Manager::URL, 'placeholder' => esc_html__( 'https://your-link.com', 'puca' ), ] ); $repeater->add_control ( 'our_team_link_tw', [ 'label' => esc_html__( 'Twitter Link', 'puca' ), 'type' => Controls_Manager::URL, 'placeholder' => esc_html__( 'https://your-link.com', 'puca' ), ] ); $repeater->add_control ( 'our_team_link_gg', [ 'label' => esc_html__( 'Goole Plus Link', 'puca' ), 'type' => Controls_Manager::URL, 'placeholder' => esc_html__( 'https://your-link.com', 'puca' ), ] ); $repeater->add_control ( 'our_team_link_linkin', [ 'label' => esc_html__( 'Linkin Link', 'puca' ), 'type' => Controls_Manager::URL, 'placeholder' => esc_html__( 'https://your-link.com', 'puca' ), ] ); $repeater->add_control ( 'our_team_link_instaram', [ 'label' => esc_html__( 'Instagram Link', 'puca' ), 'type' => Controls_Manager::URL, 'placeholder' => esc_html__( 'https://your-link.com', 'puca' ), ] ); return $repeater; } private function register_set_our_team_default() { $defaults = [ [ 'our_team_name' => esc_html__( 'Name 1', 'puca' ), 'our_team_job' => esc_html__( 'Job 1', 'puca' ), 'our_team_image' => [ 'url' => Elementor\Utils::get_placeholder_image_src(), ], 'our_team_link_fb' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_tw' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_gg' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_linkin' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_instaram' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], ], [ 'our_team_name' => esc_html__( 'Name 2', 'puca' ), 'our_team_job' => esc_html__( 'Job 2', 'puca' ), 'our_team_image' => [ 'url' => Elementor\Utils::get_placeholder_image_src(), ], 'our_team_link_fb' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_tw' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_gg' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_linkin' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_instaram' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], ], [ 'our_team_name' => esc_html__( 'Name 3', 'puca' ), 'our_team_job' => esc_html__( 'Job 3', 'puca' ), 'our_team_image' => [ 'url' => Elementor\Utils::get_placeholder_image_src(), ], 'our_team_link_fb' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_tw' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_gg' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_linkin' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_instaram' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], ], [ 'our_team_name' => esc_html__( 'Name 4', 'puca' ), 'our_team_job' => esc_html__( 'Job 4', 'puca' ), 'our_team_image' => [ 'url' => Elementor\Utils::get_placeholder_image_src(), ], 'our_team_link_fb' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_tw' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_gg' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_linkin' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], 'our_team_link_instaram' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, ], ], ]; return $defaults; } protected function render_item($item) { extract($item); ?> <div class="item-inside"> <div class="avarta"> <?php $array_link = [ 'fb' => 'icon-social-facebook', 'tw' => 'icon-social-twitter', 'gg' => 'icon-social-google', 'linkin' => 'icon-social-linkedin', 'instaram' => 'icon-social-instagram' ]; ?> <?php echo $this->get_widget_field_img($item['our_team_image']); ?> <ul class="social-link"> <?php foreach ($array_link as $key => $value) { $link = $item['our_team_link_'.$key]['url']; $attribute = ''; if( $item['our_team_link_'.$key]['is_external'] === 'on' ) { $attribute .= ' target="_blank"'; } if( $item['our_team_link_'.$key]['nofollow'] === 'on' ) { $attribute .= ' rel="nofollow"'; } ?> <?php if(!empty($link) && isset($link) ) { ?> <li> <a href="<?php echo esc_url($link); ?>"> <i class="icons <?php echo esc_attr($value); ?>"></i> </a> </li> <?php } ?> <?php } ?> </ul> </div> <div class="info"> <h3 class="name-team"> <?php echo trim($our_team_name) ?> </h3> <p class="job"> <?php echo trim($our_team_job) ?> </p> </div> </div> <?php } } $widgets_manager->register(new Puca_Elementor_Our_Team());