1 telemetry.install | telemetry_uninstall() |
Implements hook_uninstall().
File
- core/
modules/ telemetry/ telemetry.install, line 10 - Install, update and uninstall functions for the Telemetry module.
Code
function telemetry_uninstall() {
$state_settings = array(
'telemetry_cron_last',
);
foreach ($state_settings as $setting) {
state_del($setting);
}
}