← All changes
|
modules/atomic-widgets/elements/atomic-image/atomic-image.php
+14
-75
4.2.0-beta1
→
3.28.0-dev2
View file →
| @@ -1,21 +1,16 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Image; |
| 3 | 3 | |
| 4 | 4 | use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control; |
| 5 | -use Elementor\Modules\AtomicWidgets\Elements\Base\Has_Template; | |
| 5 | +use Elementor\Modules\AtomicWidgets\Elements\Has_Template; | |
| 6 | 6 | use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type; |
| 7 | 7 | use Elementor\Modules\AtomicWidgets\PropTypes\Image_Prop_Type; |
| 8 | 8 | use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type; |
| 9 | 9 | use Elementor\Modules\AtomicWidgets\Controls\Section; |
| 10 | -use Elementor\Modules\AtomicWidgets\Elements\Base\Atomic_Widget_Base; | |
| 11 | -use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type; | |
| 10 | +use Elementor\Modules\AtomicWidgets\Elements\Atomic_Widget_Base; | |
| 12 | 11 | use Elementor\Modules\AtomicWidgets\Controls\Types\Image_Control; |
| 13 | -use Elementor\Modules\AtomicWidgets\Utils\Image\Placeholder_Image; | |
| 14 | -use Elementor\Modules\AtomicWidgets\Styles\Style_Definition; | |
| 15 | -use Elementor\Modules\AtomicWidgets\Styles\Style_Variant; | |
| 16 | -use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control; | |
| 17 | -use Elementor\Modules\Components\PropTypes\Overridable_Prop_Type; | |
| 12 | +use Elementor\Modules\AtomicWidgets\Image\Placeholder_Image; | |
| 18 | 13 | |
| 19 | 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 20 | 15 | exit; // Exit if accessed directly. |
| 21 | 16 | } |
| @@ -22,31 +17,22 @@ | ||
| 22 | 17 | |
| 23 | 18 | class Atomic_Image extends Atomic_Widget_Base { |
| 24 | 19 | use Has_Template; |
| 25 | 20 | |
| 26 | - public static $widget_description = 'Display an image with customizable styles and link options.'; | |
| 27 | - | |
| 28 | - const LINK_BASE_STYLE_KEY = 'link-base'; | |
| 29 | - const BASE_STYLE_KEY = 'base'; | |
| 30 | - | |
| 31 | 21 | public static function get_element_type(): string { |
| 32 | - return 'e-image'; | |
| 22 | + return 'a-image'; | |
| 33 | 23 | } |
| 34 | 24 | |
| 35 | 25 | public function get_title() { |
| 36 | - return esc_html__( 'Image', 'elementor' ); | |
| 26 | + return esc_html__( 'Atomic Image', 'elementor' ); | |
| 37 | 27 | } |
| 38 | 28 | |
| 39 | - public function get_keywords() { | |
| 40 | - return [ 'ato', 'atom', 'atoms', 'atomic' ]; | |
| 41 | - } | |
| 42 | - | |
| 43 | 29 | public function get_icon() { |
| 44 | 30 | return 'eicon-e-image'; |
| 45 | 31 | } |
| 46 | 32 | |
| 47 | 33 | protected static function define_props_schema(): array { |
| 48 | - $props = [ | |
| 34 | + return [ | |
| 49 | 35 | 'classes' => Classes_Prop_Type::make() |
| 50 | 36 | ->default( [] ), |
| 51 | 37 | |
| 52 | 38 | 'image' => Image_Prop_Type::make() |
| @@ -53,57 +39,23 @@ | ||
| 53 | 39 | ->default_url( Placeholder_Image::get_placeholder_image() ) |
| 54 | 40 | ->default_size( 'full' ), |
| 55 | 41 | |
| 56 | 42 | 'link' => Link_Prop_Type::make(), |
| 57 | - | |
| 58 | - 'attributes' => Attributes_Prop_Type::make()->meta( Overridable_Prop_Type::ignore() ), | |
| 59 | 43 | ]; |
| 60 | - | |
| 61 | - return $props; | |
| 62 | 44 | } |
| 63 | 45 | |
| 64 | 46 | protected function define_atomic_controls(): array { |
| 65 | - return [ | |
| 66 | - Section::make() | |
| 67 | - ->set_label( esc_html__( 'Content', 'elementor' ) ) | |
| 68 | - ->set_id( 'content' ) | |
| 69 | - ->set_items( [ | |
| 70 | - Image_Control::bind_to( 'image' ) | |
| 71 | - ->set_label( __( 'Image', 'elementor' ) ), | |
| 72 | - ] ), | |
| 73 | - Section::make() | |
| 74 | - ->set_label( __( 'Settings', 'elementor' ) ) | |
| 75 | - ->set_id( 'settings' ) | |
| 76 | - ->set_items( $this->get_settings_controls() ), | |
| 77 | - ]; | |
| 78 | - } | |
| 47 | + $content_section = Section::make() | |
| 48 | + ->set_label( esc_html__( 'Content', 'elementor' ) ) | |
| 49 | + ->set_items( [ | |
| 50 | + Image_Control::bind_to( 'image' ), | |
| 79 | 51 | |
| 80 | - protected function get_settings_controls(): array { | |
| 81 | - return [ | |
| 82 | - Link_Control::bind_to( 'link' ) | |
| 83 | - ->set_placeholder( __( 'Type or paste your URL', 'elementor' ) ) | |
| 84 | - ->set_label( __( 'Link', 'elementor' ) ), | |
| 85 | - Text_Control::bind_to( '_cssid' ) | |
| 86 | - ->set_label( __( 'ID', 'elementor' ) ) | |
| 87 | - ->set_meta( $this->get_css_id_control_meta() ), | |
| 88 | - ]; | |
| 89 | - } | |
| 52 | + Link_Control::bind_to( 'link' ) | |
| 53 | + ->set_placeholder( __( 'Paste URL or type', 'elementor' ) ), | |
| 54 | + ] ); | |
| 90 | 55 | |
| 91 | - protected function define_base_styles(): array { | |
| 92 | 56 | return [ |
| 93 | - self::LINK_BASE_STYLE_KEY => Style_Definition::make() | |
| 94 | - ->add_variant( | |
| 95 | - Style_Variant::make() | |
| 96 | - ->add_prop( 'all', 'unset' ) | |
| 97 | - ->add_prop( 'display', 'inherit' ) | |
| 98 | - ->add_prop( 'width', 'fit-content' ) | |
| 99 | - ->add_prop( 'cursor', 'pointer' ) | |
| 100 | - ), | |
| 101 | - self::BASE_STYLE_KEY => Style_Definition::make() | |
| 102 | - ->add_variant( | |
| 103 | - Style_Variant::make() | |
| 104 | - ->add_prop( 'display', 'block' ) | |
| 105 | - ), | |
| 57 | + $content_section, | |
| 106 | 58 | ]; |
| 107 | 59 | } |
| 108 | 60 | |
| 109 | 61 | protected function get_templates(): array { |
| @@ -109,19 +61,6 @@ | ||
| 109 | 61 | protected function get_templates(): array { |
| 110 | 62 | return [ |
| 111 | 63 | 'elementor/elements/atomic-image' => __DIR__ . '/atomic-image.html.twig', |
| 112 | 64 | ]; |
| 113 | - } | |
| 114 | - | |
| 115 | - public function render_markdown(): string { | |
| 116 | - $settings = $this->get_atomic_settings(); | |
| 117 | - $src = $settings['image']['src'] ?? ''; | |
| 118 | - | |
| 119 | - if ( empty( $src ) ) { | |
| 120 | - return ''; | |
| 121 | - } | |
| 122 | - | |
| 123 | - $alt = $settings['image']['alt'] ?? ''; | |
| 124 | - | |
| 125 | - return ' . ')'; | |
| 126 | 65 | } |
| 127 | 66 | } |