🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
mnt
/
web613
/
c2
/
38
/
570372438
/
htdocs
/
STRATO-apps
/
wordpress_02
/
app
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
prop-types
/
concerns
✏️
Editing: has-settings.php
<?php namespace Elementor\Modules\AtomicWidgets\PropTypes\Concerns; use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Prop_Type; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } trait Has_Settings { protected array $settings = []; /** * @param $key * @param $value * * @return $this */ public function setting( $key, $value ) { $this->settings[ $key ] = $value; return $this; } public function get_settings(): array { return $this->settings; } public function get_setting( string $key, $default_value = null ) { return array_key_exists( $key, $this->settings ) ? $this->settings[ $key ] : $default_value; } }
💾 Save Changes
❌ Cancel