PluginProbe ʕ •ᴥ•ʔ
Zenchef widget integration / 1.2.0
Zenchef widget integration v1.2.0
1.0.1 1.2.0 trunk 1.0.0
zenchef-widget-integration / src / Widget / Backoffice / remove_settings.php
zenchef-widget-integration / src / Widget / Backoffice Last commit date
add_settings_page.php 1 month ago load_settings_page_assets.php 1 month ago register_settings.php 1 month ago remove_settings.php 1 year ago
remove_settings.php
15 lines
1 <?php
2
3 namespace Zenchef\Widget\Widget\Backoffice;
4
5 use function delete_option;
6 use const Zenchef\Widget\SETTINGS_OPTION_NAME;
7
8 /**
9 * @return void
10 */
11 function remove_settings()
12 {
13 delete_option(SETTINGS_OPTION_NAME);
14 }
15