You are here

function nodewords_og_uninstall in Nodewords: D6 Meta Tags 6

Implements hook_uninstall().

File

nodewords_og/nodewords_og.install, line 17
Installation file for nodewords_og.module.

Code

function nodewords_og_uninstall() {
  if (db_table_exists('nodewords')) {
    $metatags = array(
      'og:site_name',
      'og:title',
      'og:type',
      'og:image',
      'og:url',
      'og:description',
      'og:email',
      'og:phone_number',
      'og:fax_number',
      'og:latitude',
      'og:longitude',
      'og:street-address',
      'og:locality',
      'og:region',
      'og:postal-code',
      'og:country-name',
      'og:video',
      'og:video:width',
      'og:video:height',
      'og:video:type',
      'fb:admins',
      'fb:app_id',
    );
    db_query("DELETE FROM {nodewords} WHERE name IN (" . db_placeholders($metatags, 'varchar') . ")", $metatags);
  }
}