Adv_Accordion.php
4 years ago
Adv_Tabs.php
4 years ago
Advanced_Data_Table.php
4 years ago
Better_Payment.php
4 years ago
Betterdocs_Category_Box.php
4 years ago
Betterdocs_Category_Grid.php
4 years ago
Betterdocs_Search_Form.php
4 years ago
Caldera_Forms.php
4 years ago
Career_Page.php
4 years ago
Contact_Form_7.php
4 years ago
Content_Ticker.php
4 years ago
Countdown.php
4 years ago
Creative_Button.php
4 years ago
Crowdfundly_All_Campaign.php
4 years ago
Crowdfundly_Organization.php
4 years ago
Crowdfundly_Single_Campaign.php
4 years ago
Cta_Box.php
4 years ago
Data_Table.php
4 years ago
Dual_Color_Header.php
4 years ago
EmbedPress.php
4 years ago
Event_Calendar.php
4 years ago
Facebook_Feed.php
4 years ago
Fancy_Text.php
4 years ago
Feature_List.php
4 years ago
Filterable_Gallery.php
4 years ago
Flip_Box.php
4 years ago
FluentForm.php
4 years ago
Formstack.php
4 years ago
GravityForms.php
4 years ago
Image_Accordion.php
4 years ago
Info_Box.php
4 years ago
Interactive_Circle.php
4 years ago
Login_Register.php
4 years ago
NinjaForms.php
4 years ago
Post_Grid.php
4 years ago
Post_Timeline.php
4 years ago
Pricing_Table.php
4 years ago
Product_Grid.php
4 years ago
Progress_Bar.php
4 years ago
Simple_Menu.php
4 years ago
Sticky_Video.php
4 years ago
Team_Member.php
4 years ago
Testimonial.php
4 years ago
Tooltip.php
4 years ago
Twitter_Feed.php
4 years ago
TypeForm.php
4 years ago
WeForms.php
4 years ago
Woo_Cart.php
4 years ago
Woo_Checkout.php
4 years ago
Woo_Product_Carousel.php
4 years ago
Woo_Product_Compare.php
4 years ago
Woo_Product_Gallery.php
4 years ago
Woocommerce_Review.php
4 years ago
WpForms.php
4 years ago
Crowdfundly_Organization.php
60 lines
| 1 | <?php |
| 2 | namespace Essential_Addons_Elementor\Elements; |
| 3 | |
| 4 | // If this file is called directly, abort. |
| 5 | if (!defined('ABSPATH')) { |
| 6 | exit; |
| 7 | } |
| 8 | |
| 9 | use \Elementor\Controls_Manager; |
| 10 | use \Elementor\Widget_Base; |
| 11 | |
| 12 | class Crowdfundly_Organization extends Widget_Base { |
| 13 | |
| 14 | public function get_name() { |
| 15 | return 'crowdfundly-organization'; |
| 16 | } |
| 17 | |
| 18 | public function get_title() { |
| 19 | return __( 'Crowdfundly Organization', 'crowdfundly' ); |
| 20 | } |
| 21 | |
| 22 | public function get_icon() { |
| 23 | return 'eaicon-crowdfundly-organization'; |
| 24 | } |
| 25 | |
| 26 | public function get_keywords() { |
| 27 | return [ 'crowdfundly', 'fund', 'donation', 'organization', 'ea', 'ea crowdfundly' ]; |
| 28 | } |
| 29 | |
| 30 | public function get_categories() { |
| 31 | return [ 'essential-addons-elementor' ]; |
| 32 | } |
| 33 | |
| 34 | protected function register_controls() { |
| 35 | $this->start_controls_section( |
| 36 | 'eael_global_warning', |
| 37 | [ |
| 38 | 'label' => __('Warning!', 'essential-addons-for-elementor-lite'), |
| 39 | ] |
| 40 | ); |
| 41 | |
| 42 | $this->add_control( |
| 43 | 'eael_global_warning_text', |
| 44 | [ |
| 45 | 'type' => Controls_Manager::RAW_HTML, |
| 46 | 'raw' => __('<strong>Crowdfundly</strong> is not installed/activated on your site. Please install and activate <a href="plugin-install.php?s=crowdfundly&tab=search&type=term" target="_blank">Crowdfundly</a> first.', |
| 47 | 'essential-addons-for-elementor-lite'), |
| 48 | 'content_classes' => 'eael-warning', |
| 49 | ] |
| 50 | ); |
| 51 | |
| 52 | $this->end_controls_section(); |
| 53 | } |
| 54 | |
| 55 | |
| 56 | protected function render() { |
| 57 | return; |
| 58 | } |
| 59 | } |
| 60 |