Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
elementor
/
modules
/
atomic-widgets
/
controls
/
types
:
image-control.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Elementor\Modules\AtomicWidgets\Controls\Types; use Elementor\Modules\AtomicWidgets\Base\Atomic_Control_Base; use Elementor\Modules\AtomicWidgets\Image_Sizes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Image_Control extends Atomic_Control_Base { public function get_type(): string { return 'image'; } public function get_props(): array { return [ 'sizes' => Image_Sizes::get_all(), ]; } }