Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
controls
/
types
✏️
Editing: chips-control.php
<?php namespace Elementor\Modules\AtomicWidgets\Controls\Types; use Elementor\Modules\AtomicWidgets\Controls\Base\Atomic_Control_Base; if ( ! defined( 'ABSPATH' ) ) { exit; } class Chips_Control extends Atomic_Control_Base { private array $options = []; private bool $free_chips = false; public function get_type(): string { return 'chips'; } public function set_options( array $options ): self { $this->options = $options; return $this; } public function get_props(): array { return [ 'options' => $this->options, 'freeChips' => $this->free_chips, ]; } public function set_free_chips( bool $free_chips ): self { $this->free_chips = $free_chips; return $this; } }
💾 Save Changes
❌ Cancel