You are here

function restful_uninstall in RESTful 7.2

Same name and namespace in other branches
  1. 7 restful.install \restful_uninstall()

Implements hook_uninstall().

File

./restful.install, line 114
Install, update, and uninstall functions for the RESTful module.

Code

function restful_uninstall() {
  variable_del('restful_default_output_formatter');
  variable_del('restful_enable_discovery_resource');
  variable_del('restful_file_upload');
  variable_del('restful_file_upload_allow_anonymous_user');
  variable_del('restful_hijack_api_pages');
  variable_del('restful_hook_menu_base_path');
  variable_del('restful_enable_user_login_resource');
  variable_del('restful_global_rate_limit');
  variable_del('restful_global_rate_period');
  variable_del('restful_enable_users_resource');
  variable_del('restful_render_cache');
  variable_del('restful_skip_basic_auth');
  variable_del('restful_allowed_origin');
}