Controls
1 year ago
Fields
1 month ago
DragDropBuilder.php
1 year ago
FieldBase.php
3 months ago
FieldInterface.php
5 years ago
Metabox.php
1 year ago
google-web-fonts.txt
5 years ago
FieldInterface.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Admin\SettingsPages\DragDropBuilder; |
| 4 | |
| 5 | |
| 6 | interface FieldInterface |
| 7 | { |
| 8 | public function field_type(); |
| 9 | |
| 10 | public static function field_icon(); |
| 11 | |
| 12 | public function field_title(); |
| 13 | |
| 14 | public function field_bar_title(); |
| 15 | |
| 16 | public function field_settings(); |
| 17 | |
| 18 | public function field_settings_tabs(); |
| 19 | |
| 20 | public function category(); |
| 21 | } |