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
/
prop-types
/
contracts
:
prop-type.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Elementor\Modules\AtomicWidgets\PropTypes\Contracts; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } interface Prop_Type extends \JsonSerializable { public function get_default(); public function validate( $value ): bool; public function sanitize( $value ); public function get_meta(): array; public function get_meta_item( string $key, $default = null ); public function get_settings(): array; public function get_setting( string $key, $default = null ); }