This hook can be used for doing some actions after resetting the options.
Changelog
since 7.0.0 version
Parameters
1. $tab (type: string) - the tab where the options are being reset
Usage
add_action("wpdiscuz_reset_options", function ($tab) {
if ($tab === WpdiscuzCore::TAB_GENERAL) {
$customOptionValue = 0;
}
});