function mobile_tools_uninstall in Mobile Tools 6.2
Same name and namespace in other branches
- 5 mobile_tools.install \mobile_tools_uninstall()
- 6.3 mobile_tools.install \mobile_tools_uninstall()
- 6 mobile_tools.install \mobile_tools_uninstall()
- 7.3 mobile_tools.install \mobile_tools_uninstall()
- 7.2 mobile_tools.install \mobile_tools_uninstall()
Implementation of hook_uninstall().
File
- ./
mobile_tools.install, line 88 - Mobile Tools's install and uninstall code.
Code
function mobile_tools_uninstall() {
// Delete all Mobile Tools variables
variable_del('default_main_nodes_mobile');
variable_del('default_main_nodes_original');
variable_del('site_frontpage_mobile');
variable_del('mobile_tools_enable_build_mode');
variable_del('desktop_notification');
variable_del('mobile_notification');
variable_del('mobile_tools_redirect_exceptions');
variable_del('mobile_tools_redirect_exceptions_type');
variable_del('mobile_tools_cookie_session');
variable_del('mobile_tools_redirect');
variable_del('mobile_tools_desktop_url');
variable_del('mobile_tools_mobile_url');
variable_del('mobile-tools-theme-switch');
variable_del('mobile_tools_theme_name');
variable_del('mobile-tools-device-detection');
variable_del('mobile-tools-device-capabilities');
}