/** * Deactivate the plugin. */ function deactivate_wp_plugin() { // Do something $settings = new Apple_Exporter\Settings(); foreach ($settings->all() as $name => $value) { delete_option($name); } }
/** * Constructor. * * @param string $page */ function __construct($page) { $this->page = $page; $base_settings = new \Apple_Exporter\Settings(); $this->base_settings = $base_settings->all(); $this->settings = apply_filters('apple_news_section_settings', $this->settings, $page); $this->groups = apply_filters('apple_news_section_groups', $this->groups, $page); self::$fonts = apply_filters('apple_news_fonts_list', self::$fonts); }