Backoffice
2 months ago
build_widget_data_attributes.php
2 months ago
enqueue_widget_sdk.php
2 weeks ago
get_widget_settings.php
2 months ago
load_script_file.php
2 weeks ago
load_script_template_file.php
2 weeks ago
load_translations.php
2 years ago
register_consent_api.php
2 weeks ago
register_shortcode.php
2 weeks ago
sanitize_restaurant_id.php
2 months ago
sanitize_widget_settings.php
2 months ago
load_translations.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Zenchef\Widget\Widget; |
| 4 | |
| 5 | use function load_plugin_textdomain; |
| 6 | use const Zenchef\Widget\ROOT_PATH; |
| 7 | |
| 8 | /** |
| 9 | * @return void |
| 10 | */ |
| 11 | function load_translations() |
| 12 | { |
| 13 | load_plugin_textdomain( |
| 14 | 'zenchef-widget-integration', |
| 15 | false, |
| 16 | ROOT_PATH . 'languages' |
| 17 | ); |
| 18 | } |
| 19 |