traits
2 years ago
base-vui-banner-box.php
2 years ago
base-vui-box.php
2 years ago
base-vui-panel-box.php
2 years ago
boxes-repository.php
2 years ago
base-vui-box.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Admin\Vui_Boxes; |
| 5 | |
| 6 | use Jet_Form_Builder\Classes\Arrayable\Arrayable; |
| 7 | use JFB_Components\Repository\Repository_Item_Instance_Trait; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | abstract class Base_Vui_Box implements Repository_Item_Instance_Trait, Arrayable { |
| 15 | |
| 16 | const TYPE_PANEL = 'panel'; |
| 17 | const TYPE_BANNER = 'banner'; |
| 18 | |
| 19 | abstract public function get_slug(): string; |
| 20 | |
| 21 | abstract public function get_type(): string; |
| 22 | |
| 23 | public function rep_item_id() { |
| 24 | return $this->get_slug(); |
| 25 | } |
| 26 | |
| 27 | public function get_classes(): array { |
| 28 | return array(); |
| 29 | } |
| 30 | |
| 31 | public function to_array(): array { |
| 32 | return array( |
| 33 | 'slug' => $this->get_slug(), |
| 34 | 'type' => $this->get_type(), |
| 35 | 'classes' => $this->get_classes(), |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | } |
| 40 |