zenchef-widget-integration
Last commit date
js
1 year ago
languages
1 year ago
src
1 month ago
views
1 month ago
README.md
1 year ago
README.txt
1 month ago
configuration.php
1 month ago
index.php
1 year ago
uninstall.php
1 year ago
zenchef-widget-integration.php
1 month ago
configuration.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Zenchef\Widget; |
| 4 | |
| 5 | /** The key used to store settings data in database, and also used as HTML form name attribute. */ |
| 6 | const SETTINGS_OPTION_NAME = 'zenchef_widget_parameters'; |
| 7 | |
| 8 | const SETTINGS_GROUP_SLUG = 'zenchef.widget.settings_group'; |
| 9 | |
| 10 | const ROOT_PATH = __DIR__ . '/'; |
| 11 | |
| 12 | const PLUGIN_VERSION = '1.2.0'; |
| 13 |