TRUE, 'query' => 'Removed support for the defunct FOSI ICRA meta tag.', ); } variable_del('nodewords_icra_validation_content'); return $ret; } /** * Converts the legacy "dc." meta tags to "dcterms." metatags. */ function nodewords_extra_update_6107() { $ret = array(); $ret[] = update_sql("UPDATE {nodewords} SET name=REPLACE(name, 'dc.', 'dcterms.') WHERE name LIKE 'dc.%'"); return $ret; } /** * Implements hook_uninstall(). */ function nodewords_extra_uninstall() { if (db_table_exists('nodewords')) { $metatags = array( 'dcterms.contributor', 'dcterms.creator', 'dcterms.date', 'dcterms.publisher', 'dcterms.title', 'geourl', 'location', ); db_query("DELETE FROM {nodewords} WHERE name IN (". db_placeholders($metatags, 'varchar') .")", $metatags); } }