You are here

function oa_sections_taxonomy_default_vocabularies in Open Atrium Core 7.2

Implements hook_taxonomy_default_vocabularies().

File

modules/oa_sections/oa_sections.features.taxonomy.inc, line 10
oa_sections.features.taxonomy.inc

Code

function oa_sections_taxonomy_default_vocabularies() {
  return array(
    'section_type' => array(
      'name' => 'Section Type',
      'machine_name' => 'section_type',
      'description' => 'Allow selection of Open Atrium sections',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
  );
}