zenchef-widget-integration
Last commit date
languages
2 weeks ago
src
2 weeks ago
views
2 weeks ago
README.txt
2 weeks ago
configuration.php
2 weeks ago
index.php
2 years ago
uninstall.php
2 years ago
zenchef-widget-integration.php
2 weeks ago
configuration.php
16 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 | /** Absolute path to the plugin bootstrap file, for APIs keyed on the plugin basename. */ |
| 13 | const PLUGIN_FILE = __DIR__ . '/zenchef-widget-integration.php'; |
| 14 | |
| 15 | const PLUGIN_VERSION = '1.3.0'; |
| 16 |