function pmteam_install in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmteam/pmteam.install \pmteam_install()
- 7.3 pmteam/pmteam.install \pmteam_install()
- 7 pmteam/pmteam.install \pmteam_install()
Implements hook_install().
File
- pmteam/
pmteam.install, line 10 - Install, uninstall and update functions for the PM Team module.
Code
function pmteam_install() {
// Create and attaches fields to pmteam content type.
module_load_include('inc', 'pmteam', 'includes/pmteam.migrate');
variable_set('pmpermission_field_parent_reference_for_pmteam', 'pmteam_organization');
// Parameter $sandbox is passed as a placeholder.
$sandbox = array();
pmteam_migrate_create_fields($sandbox);
variable_set("pmpermission_node_pmteam_enabled", TRUE);
}