first commit
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
namespace Essential_Addons_Elementor\Elements;
|
||||
|
||||
// If this file is called directly, abort.
|
||||
if (!defined('ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
use \Elementor\Controls_Manager;
|
||||
use \Elementor\Widget_Base;
|
||||
|
||||
class EmbedPress extends Widget_Base {
|
||||
|
||||
public function get_name() {
|
||||
return 'eael-embedpress';
|
||||
}
|
||||
|
||||
public function get_title() {
|
||||
return esc_html__( 'EmbedPress', 'essential-addons-for-elementor-lite');
|
||||
}
|
||||
|
||||
public function get_icon() {
|
||||
return 'eaicon-embedpress';
|
||||
}
|
||||
|
||||
public function get_categories() {
|
||||
return [ 'essential-addons-elementor' ];
|
||||
}
|
||||
|
||||
public function get_keywords() {
|
||||
return [
|
||||
'embedpress',
|
||||
'ea embedpress',
|
||||
'audio',
|
||||
'video',
|
||||
'map',
|
||||
'youtube',
|
||||
'vimeo',
|
||||
'wistia',
|
||||
'google',
|
||||
'ea',
|
||||
'essential addons'
|
||||
];
|
||||
}
|
||||
|
||||
public function get_custom_help_url() {
|
||||
return 'https://embedpress.com/documentation';
|
||||
}
|
||||
|
||||
protected function register_controls() {
|
||||
$this->start_controls_section(
|
||||
'eael_global_warning',
|
||||
[
|
||||
'label' => __('Warning!', 'essential-addons-for-elementor-lite'),
|
||||
]
|
||||
);
|
||||
|
||||
$this->add_control(
|
||||
'eael_global_warning_text',
|
||||
[
|
||||
'type' => Controls_Manager::RAW_HTML,
|
||||
'raw' => __('<strong>EmbedPress</strong> is not installed/activated on your site. Please install and activate <a href="plugin-install.php?s=embedpress&tab=search&type=term" target="_blank">EmbedPress</a> first.',
|
||||
'essential-addons-for-elementor-lite'),
|
||||
'content_classes' => 'eael-warning',
|
||||
]
|
||||
);
|
||||
|
||||
$this->end_controls_section();
|
||||
}
|
||||
|
||||
|
||||
protected function render() {
|
||||
return;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user