AdvancedTab.php
1 week ago
AppearanceTab.php
1 week ago
DisplayTab.php
1 week ago
GeneralTab.php
1 week ago
LogicTab.php
1 week ago
PricingTab.php
1 week ago
TabAbstract.php
1 week ago
TabIntegration.php
1 week ago
TabInterface.php
1 week ago
TabInterface.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Settings\Tab; |
| 4 | |
| 5 | /** |
| 6 | * Interface for settings tab of field. |
| 7 | */ |
| 8 | interface TabInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns name of tab. |
| 12 | * |
| 13 | * @return string Tab name. |
| 14 | */ |
| 15 | public function get_tab_name(): string; |
| 16 | |
| 17 | /** |
| 18 | * Returns label of tab. |
| 19 | * |
| 20 | * @return string Tab label. |
| 21 | */ |
| 22 | public function get_tab_label(): string; |
| 23 | |
| 24 | /** |
| 25 | * Returns tab icon as CSS Class supported by Icomoon. |
| 26 | * |
| 27 | * @return string Tab icon. |
| 28 | */ |
| 29 | public function get_tab_icon(): string; |
| 30 | } |
| 31 |