function taxonomy_overview_vocabularies

Form builder to list and manage vocabularies.

See also

taxonomy_overview_vocabularies_submit()

theme_taxonomy_overview_vocabularies()

Related topics

1 string reference to 'taxonomy_overview_vocabularies'
taxonomy_menu in drupal/core/modules/taxonomy/taxonomy.module
Implements hook_menu().

File

drupal/core/modules/taxonomy/taxonomy.admin.inc, line 18
Administrative page callbacks for the taxonomy module.

Code

function taxonomy_overview_vocabularies($form) {
  $vocabularies = taxonomy_vocabulary_load_multiple();
  $form['#tree'] = TRUE;
  foreach ($vocabularies as $vocabulary) {
    $form[$vocabulary->vid]['#vocabulary'] = $vocabulary;
    $form[$vocabulary->vid]['name'] = array(
      '#markup' => check_plain($vocabulary->name),
    );
    $form[$vocabulary->vid]['weight'] = array(
      '#type' => 'weight',
      '#title' => t('Weight for @title', array(
        '@title' => $vocabulary->name,
      )),
      '#title_display' => 'invisible',
      '#delta' => 10,
      '#default_value' => $vocabulary->weight,
    );
    $links = array();
    $links['edit'] = array(
      'title' => t('edit vocabulary'),
      'href' => "admin/structure/taxonomy/{$vocabulary->machine_name}/edit",
    );
    $links['list'] = array(
      'title' => t('list terms'),
      'href' => "admin/structure/taxonomy/{$vocabulary->machine_name}",
    );
    $links['add'] = array(
      'title' => t('add terms'),
      'href' => "admin/structure/taxonomy/{$vocabulary->machine_name}/add",
    );
    $form[$vocabulary->vid]['operations'] = array(
      '#type' => 'operations',
      '#links' => $links,
    );
  }

  // Only make this form include a submit button and weight if more than one
  // vocabulary exists.
  if (count($vocabularies) > 1) {
    $form['actions'] = array(
      '#type' => 'actions',
    );
    $form['actions']['submit'] = array(
      '#type' => 'submit',
      '#value' => t('Save'),
    );
  }
  elseif (isset($vocabulary)) {
    unset($form[$vocabulary->vid]['weight']);
  }
  return $form;
}