woocommerce-multilingual
/
classes
/
Multicurrency
/
CurrencySwitcher
/
CurrencySwitcherTemplateInterface.php
CurrencySwitcherTemplateInterface.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Multicurrency\CurrencySwitcher; |
| 4 | |
| 5 | interface CurrencySwitcherTemplateInterface { |
| 6 | public function is_path_valid(): bool; |
| 7 | |
| 8 | public function set_model( $model ); |
| 9 | |
| 10 | public function has_styles(): bool; |
| 11 | |
| 12 | public function get_styles( bool $with_version = false ): array; |
| 13 | |
| 14 | public function get_scripts( bool $with_version = false ): array; |
| 15 | |
| 16 | public function get_resource_handler( string $index ): string; |
| 17 | |
| 18 | public function get_inline_style_handler(); |
| 19 | |
| 20 | public function get_template_data(): array; |
| 21 | |
| 22 | public function get_template(); |
| 23 | |
| 24 | public function get_view( $template = null, $model = null ); |
| 25 | } |