jetformbuilder
/
compatibility
/
jet-engine
/
blocks
/
check-mark
/
interfaces
/
attributes-interface.php
attributes-interface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Compatibility\Jet_Engine\Blocks\Check_Mark\Interfaces; |
| 4 | |
| 5 | interface Attributes_Interface { |
| 6 | |
| 7 | public function is_image_control(): bool; |
| 8 | |
| 9 | public function get_wrapper_attributes(): string; |
| 10 | |
| 11 | public function get_control_type(): string; |
| 12 | |
| 13 | public function set_control_type( $control_type ); |
| 14 | |
| 15 | public function get_default_icon_url(): string; |
| 16 | |
| 17 | public function set_default_icon_url( $icon_url ); |
| 18 | |
| 19 | public function get_checked_icon_url(): string; |
| 20 | |
| 21 | public function set_checked_icon_url( $icon_url ); |
| 22 | |
| 23 | } |
| 24 |