function recipe_install in Recipe 7.2
Same name and namespace in other branches
- 5 recipe.install \recipe_install()
 - 6 recipe.install \recipe_install()
 
Implements hook_install().
File
- ./
recipe.install, line 11  - Install, update and uninstall functions for the recipe module.
 
Code
function recipe_install() {
  // Set up the recipe node type.
  require_once dirname(__FILE__) . '/includes/recipe.node_type.inc';
  _recipe_install_node_type();
}