You are here

function media_vimeo_uninstall in Media: Vimeo 6

Same name and namespace in other branches
  1. 7 media_vimeo.install \media_vimeo_uninstall()

Implementation of hook_uninstall().

File

./media_vimeo.install, line 21
This is Media: Vimeo's installation, configuration, and removal file.

Code

function media_vimeo_uninstall() {
  foreach (media_vimeo_variable_default() as $variable => $value) {
    media_vimeo_variable_del($variable);
  }
  return array(
    array(
      'success' => TRUE,
      'query' => "Deleted all variables in the Media: Vimeo namespace.",
    ),
  );
}