Form builder to list and manage vocabularies.
taxonomy_overview_vocabularies_submit()
theme_taxonomy_overview_vocabularies()
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;
}