You are here

function recipe_update_7001 in Recipe 7.2

Same name and namespace in other branches
  1. 7 recipe.install \recipe_update_7001()

Rebuilds the rdf mapping table.

File

./recipe.install, line 319
Install, update and uninstall functions for the recipe module.

Code

function recipe_update_7001() {
  if (module_exists("rdf")) {
    $modules = module_implements('rdf_mapping');
    rdf_modules_installed($modules);
  }
}