first commit
This commit is contained in:
223
wp-content/plugins/thinkai-plugin/elementor/project_card.php
Normal file
223
wp-content/plugins/thinkai-plugin/elementor/project_card.php
Normal file
@@ -0,0 +1,223 @@
|
||||
<?php namespace THINKAIPLUGIN\Element;
|
||||
|
||||
use Elementor\Controls_Manager;
|
||||
use Elementor\Controls_Stack;
|
||||
use Elementor\Group_Control_Typography;
|
||||
use Elementor\Group_Control_Border;
|
||||
use Elementor\Repeater;
|
||||
use Elementor\Widget_Base;
|
||||
use Elementor\Utils;
|
||||
use Elementor\Group_Control_Text_Shadow;
|
||||
use \Elementor\Group_Control_Box_Shadow;
|
||||
use \Elementor\Group_Control_Background;
|
||||
use \Elementor\Group_Control_Image_Size;
|
||||
use \Elementor\Group_Control_Text_Stroke;
|
||||
use Elementor\Plugin;
|
||||
|
||||
/**
|
||||
* Elementor button widget.
|
||||
* Elementor widget that displays a button with the ability to control every
|
||||
* aspect of the button design.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
class Project_Card extends Widget_Base {
|
||||
|
||||
/**
|
||||
* Get widget name.
|
||||
* Retrieve button widget name.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
* @return string Widget name.
|
||||
*/
|
||||
public function get_name() {
|
||||
return 'thinkai_project_card';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get widget title.
|
||||
* Retrieve button widget title.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
* @return string Widget title.
|
||||
*/
|
||||
public function get_title() {
|
||||
return esc_html__( 'Thinkai Project Card', 'thinkai' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get widget icon.
|
||||
* Retrieve button widget icon.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
* @return string Widget icon.
|
||||
*/
|
||||
public function get_icon() {
|
||||
return 'eicon-gallery-grid';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get widget categories.
|
||||
* Retrieve the list of categories the button widget belongs to.
|
||||
* Used to determine where to display the widget in the editor.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @access public
|
||||
* @return array Widget categories.
|
||||
*/
|
||||
public function get_categories() {
|
||||
return [ 'thinkai' ];
|
||||
}
|
||||
|
||||
/**
|
||||
* Register button 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->start_controls_section(
|
||||
'project_card',
|
||||
[
|
||||
'label' => esc_html__( 'Thinkai Project Card', 'thinkai' ),
|
||||
]
|
||||
);
|
||||
|
||||
//BG Image
|
||||
$this->add_control(
|
||||
'feature_image',
|
||||
[
|
||||
'label' => __( 'Feature Image Url', 'thinkai' ),
|
||||
'type' => Controls_Manager::MEDIA,
|
||||
'default' => ['url' => Utils::get_placeholder_image_src(),],
|
||||
]
|
||||
);
|
||||
//Title
|
||||
$this->add_control(
|
||||
'title',
|
||||
[
|
||||
'label' => __( 'Title', 'thinkai' ),
|
||||
'type' => Controls_Manager::TEXT,
|
||||
'label_block' => true,
|
||||
'dynamic' => [
|
||||
'active' => true,
|
||||
],
|
||||
'default' => esc_html__( 'Image Generator', 'thinkai' ),
|
||||
]
|
||||
);
|
||||
//Text
|
||||
$this->add_control(
|
||||
'text',
|
||||
[
|
||||
'label' => __( 'Description', 'thinkai' ),
|
||||
'type' => Controls_Manager::TEXTAREA,
|
||||
'label_block' => true,
|
||||
'dynamic' => [
|
||||
'active' => true,
|
||||
],
|
||||
'default' => esc_html__( 'Convert text to image.', 'thinkai' ),
|
||||
]
|
||||
);
|
||||
//External Link
|
||||
$this->add_control(
|
||||
'link_option',
|
||||
[
|
||||
'label' => esc_html__( 'Select link Option', 'thinkai' ),
|
||||
'label_block' => true,
|
||||
'type' => Controls_Manager::SELECT,
|
||||
'default' => 'extranal',
|
||||
'options' => array(
|
||||
'extranal' => esc_html__( 'Extranal ', 'thinkai'),
|
||||
'page' => esc_html__( 'Page ', 'thinkai'),
|
||||
),
|
||||
]
|
||||
);
|
||||
$this->add_control(
|
||||
'link',
|
||||
[
|
||||
'label' => __( 'External Link', 'thinkai' ),
|
||||
'type' => Controls_Manager::URL,
|
||||
'label_block' => true,
|
||||
'placeholder' => __( 'https://your-link.com', 'thinkai' ),
|
||||
'show_external' => true,
|
||||
'default' => [
|
||||
'url' => '',
|
||||
'is_external' => true,
|
||||
'nofollow' => true,
|
||||
],
|
||||
'condition' => [
|
||||
'link_option' => 'extranal'
|
||||
]
|
||||
]
|
||||
);
|
||||
$this->add_control(
|
||||
'page_select',
|
||||
[
|
||||
'label' => esc_html__( 'Select Page', 'thinkai' ),
|
||||
'label_block' => true,
|
||||
'type' => Controls_Manager::SELECT2,
|
||||
'default' => 'extranal',
|
||||
'options' => thinkai_page_list(),
|
||||
'condition' => [
|
||||
'link_option' => 'page'
|
||||
]
|
||||
]
|
||||
);
|
||||
$this->end_controls_section();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Render button widget output on the frontend.
|
||||
* Written in PHP and used to generate the final HTML.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access protected
|
||||
*/
|
||||
protected function render() {
|
||||
$settings = $this->get_settings_for_display();
|
||||
$allowed_tags = wp_kses_allowed_html('post');
|
||||
|
||||
$page = $settings['link_option'];
|
||||
$page_select = $settings[ 'page_select' ];
|
||||
$ext_url = $settings[ 'link' ];
|
||||
|
||||
if( $page == 'page' ){
|
||||
$mount_link = get_page_link( $page_select );
|
||||
}else{
|
||||
$mount_link = $ext_url['url'];
|
||||
$target = $ext_url['is_external'] ? ' target="_blank"' : '';
|
||||
$nofollow = $ext_url['nofollow'] ? ' rel="nofollow"' : '';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="cases-style3__single">
|
||||
<div class="cases-style3__single-img">
|
||||
<div class="inner">
|
||||
<img src="<?php echo esc_url(wp_get_attachment_url($settings['feature_image']['id'])); ?>" alt="<?php bloginfo( 'name' ); ?>">
|
||||
<div class="overlay-text-box">
|
||||
<p>
|
||||
<?php echo wp_kses($settings['text'], true); ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="overlay-box">
|
||||
<div class="title-box">
|
||||
<h3><?php echo wp_kses($settings['title'], true); ?></h3>
|
||||
</div>
|
||||
<div class="btn-box">
|
||||
<a class="lightbox-image" data-fancybox="gallery" href="<?php echo esc_url(wp_get_attachment_url($settings['feature_image']['id'])); ?>">
|
||||
<span class="icon-right-arrow1"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user