118 lines
3.3 KiB
PHP
118 lines
3.3 KiB
PHP
<?php
|
|
namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Image;
|
|
|
|
use Elementor\Modules\AtomicWidgets\Controls\Types\Link_Control;
|
|
use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
|
|
use Elementor\Modules\AtomicWidgets\Elements\Has_Template;
|
|
use Elementor\Modules\AtomicWidgets\Module;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Image_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Link_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\Controls\Section;
|
|
use Elementor\Modules\AtomicWidgets\Elements\Atomic_Widget_Base;
|
|
use Elementor\Modules\AtomicWidgets\Controls\Types\Image_Control;
|
|
use Elementor\Modules\AtomicWidgets\Image\Placeholder_Image;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
|
|
use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
|
|
use Elementor\Plugin;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Atomic_Image extends Atomic_Widget_Base {
|
|
use Has_Template;
|
|
|
|
const LINK_BASE_STYLE_KEY = 'link-base';
|
|
const BASE_STYLE_KEY = 'base';
|
|
|
|
public static function get_element_type(): string {
|
|
return 'e-image';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Image', 'elementor' );
|
|
}
|
|
|
|
public function get_keywords() {
|
|
return [ 'ato', 'atom', 'atoms', 'atomic' ];
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-e-image';
|
|
}
|
|
|
|
protected static function define_props_schema(): array {
|
|
$props = [
|
|
'classes' => Classes_Prop_Type::make()
|
|
->default( [] ),
|
|
|
|
'image' => Image_Prop_Type::make()
|
|
->default_url( Placeholder_Image::get_placeholder_image() )
|
|
->default_size( 'full' ),
|
|
|
|
'link' => Link_Prop_Type::make(),
|
|
];
|
|
|
|
if ( Plugin::$instance->experiments->is_feature_active( Module::EXPERIMENT_VERSION_3_30 ) ) {
|
|
$props['_cssid'] = String_Prop_Type::make();
|
|
}
|
|
|
|
return $props;
|
|
}
|
|
|
|
protected function define_atomic_controls(): array {
|
|
$content_section = Section::make()
|
|
->set_label( esc_html__( 'Content', 'elementor' ) )
|
|
->set_items( [
|
|
Image_Control::bind_to( 'image' )
|
|
->set_show_mode( 'media' ),
|
|
] );
|
|
|
|
$settings_section_items = [
|
|
Image_Control::bind_to( 'image' )
|
|
->set_show_mode( 'sizes' ),
|
|
Link_Control::bind_to( 'link' )->set_meta( [
|
|
'topDivider' => true,
|
|
] )->set_label( __( 'Link', 'elementor' ) ),
|
|
];
|
|
|
|
if ( Plugin::$instance->experiments->is_feature_active( Module::EXPERIMENT_VERSION_3_30 ) ) {
|
|
$settings_section_items[] = Text_Control::bind_to( '_cssid' )->set_label( __( 'ID', 'elementor' ) )->set_meta( [
|
|
'layout' => 'two-columns',
|
|
'topDivider' => true,
|
|
] );
|
|
}
|
|
|
|
return [
|
|
$content_section,
|
|
Section::make()
|
|
->set_label( esc_html__( 'Settings', 'elementor' ) )
|
|
->set_items( $settings_section_items ),
|
|
];
|
|
}
|
|
|
|
protected function define_base_styles(): array {
|
|
return [
|
|
self::LINK_BASE_STYLE_KEY => Style_Definition::make()
|
|
->add_variant(
|
|
Style_Variant::make()
|
|
->add_prop( 'display', 'inherit' )
|
|
->add_prop( 'width', 'fit-content' )
|
|
),
|
|
self::BASE_STYLE_KEY => Style_Definition::make()
|
|
->add_variant(
|
|
Style_Variant::make()
|
|
->add_prop( 'display', 'block' )
|
|
),
|
|
];
|
|
}
|
|
|
|
protected function get_templates(): array {
|
|
return [
|
|
'elementor/elements/atomic-image' => __DIR__ . '/atomic-image.html.twig',
|
|
];
|
|
}
|
|
}
|