Adv_Accordion.php
1 month ago
Adv_Tabs.php
1 month ago
Advanced_Data_Table.php
3 months ago
Better_Payment.php
4 years ago
Betterdocs_Category_Box.php
2 months ago
Betterdocs_Category_Grid.php
2 months ago
Betterdocs_Search_Form.php
2 months ago
Breadcrumbs.php
1 month ago
Business_Reviews.php
2 months ago
Caldera_Forms.php
1 month ago
Career_Page.php
4 years ago
Code_Snippet.php
3 months ago
Contact_Form_7.php
1 month ago
Content_Ticker.php
3 months ago
Countdown.php
1 month ago
Creative_Button.php
1 month ago
Cta_Box.php
1 month ago
Data_Table.php
1 month ago
Dual_Color_Header.php
1 month ago
EmbedPress.php
4 years ago
Event_Calendar.php
2 months ago
Facebook_Feed.php
3 months ago
Fancy_Text.php
1 month ago
Feature_List.php
3 months ago
Filterable_Gallery.php
1 month ago
Flip_Box.php
1 month ago
FluentForm.php
1 month ago
Formstack.php
1 month ago
GravityForms.php
1 month ago
Image_Accordion.php
1 month ago
Info_Box.php
1 month ago
Interactive_Circle.php
1 month ago
Login_Register.php
3 weeks ago
NFT_Gallery.php
3 months ago
NinjaForms.php
1 month ago
Post_Grid.php
3 months ago
Post_Timeline.php
9 months ago
Pricing_Table.php
1 month ago
Product_Grid.php
3 months ago
Progress_Bar.php
1 month ago
SVG_Draw.php
3 months ago
Simple_Menu.php
2 months ago
Sticky_Video.php
3 months ago
Team_Member.php
3 months ago
Testimonial.php
1 month ago
Tooltip.php
1 month ago
Twitter_Feed.php
3 months ago
TypeForm.php
5 months ago
WeForms.php
1 year ago
Woo_Add_To_Cart.php
1 month ago
Woo_Cart.php
3 months ago
Woo_Checkout.php
3 months ago
Woo_Product_Carousel.php
3 months ago
Woo_Product_Compare.php
1 year ago
Woo_Product_Gallery.php
3 months ago
Woo_Product_Images.php
1 month ago
Woo_Product_List.php
1 month ago
Woo_Product_Price.php
1 month ago
Woo_Product_Rating.php
1 month ago
WpForms.php
1 month ago
index.php
3 years ago
Career_Page.php
71 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 | class Career_Page extends Widget_Base { |
| 12 | |
| 13 | public function get_name() { |
| 14 | return 'eael-career-page'; |
| 15 | } |
| 16 | |
| 17 | public function get_title() { |
| 18 | return esc_html__( 'EasyJobs Career Page', 'essential-addons-for-elementor-lite'); |
| 19 | } |
| 20 | |
| 21 | public function get_icon() { |
| 22 | return 'eaicon-easyjobs'; |
| 23 | } |
| 24 | |
| 25 | public function get_categories() { |
| 26 | return [ 'essential-addons-elementor' ]; |
| 27 | } |
| 28 | |
| 29 | public function get_keywords() { |
| 30 | return [ |
| 31 | 'easyjobs', |
| 32 | 'addons', |
| 33 | 'ea', |
| 34 | 'career', |
| 35 | 'job', |
| 36 | 'career page', |
| 37 | 'essential addons', |
| 38 | ]; |
| 39 | } |
| 40 | |
| 41 | public function get_custom_help_url() { |
| 42 | return 'https://easy.jobs/docs/'; |
| 43 | } |
| 44 | |
| 45 | protected function register_controls() { |
| 46 | $this->start_controls_section( |
| 47 | 'eael_global_warning', |
| 48 | [ |
| 49 | 'label' => __('Warning!', 'essential-addons-for-elementor-lite'), |
| 50 | ] |
| 51 | ); |
| 52 | |
| 53 | $this->add_control( |
| 54 | 'eael_global_warning_text', |
| 55 | [ |
| 56 | 'type' => Controls_Manager::RAW_HTML, |
| 57 | 'raw' => __('<strong>EasyJobs</strong> is not installed/activated on your site. Please install and activate <a href="plugin-install.php?s=easyjobs&tab=search&type=term" target="_blank">EasyJobs</a> first.', |
| 58 | 'essential-addons-for-elementor-lite'), |
| 59 | 'content_classes' => 'eael-warning', |
| 60 | ] |
| 61 | ); |
| 62 | |
| 63 | $this->end_controls_section(); |
| 64 | } |
| 65 | |
| 66 | |
| 67 | protected function render() { |
| 68 | return; |
| 69 | } |
| 70 | } |
| 71 |