File "image-control.php"

Full Path: /home/elegucvf/public_html/elementor/modules/atomic-widgets/controls/types/image-control.php
File size: 456 bytes
MIME-type: text/x-php
Charset: utf-8

<?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(),
		];
	}
}