Same name and namespace in other branches
  1. 4.6.x modules/taxonomy.module \taxonomy_form_all()
  2. 4.7.x modules/taxonomy.module \taxonomy_form_all()
  3. 5.x modules/taxonomy/taxonomy.module \taxonomy_form_all()

Generate a set of options for selecting a term from all vocabularies.

File

modules/taxonomy/taxonomy.module, line 451
Enables the organization of content into categories.

Code

function taxonomy_form_all($free_tags = 0) {
  $vocabularies = taxonomy_get_vocabularies();
  $options = array();
  foreach ($vocabularies as $vid => $vocabulary) {
    if ($vocabulary->tags && !$free_tags) {
      continue;
    }
    $tree = taxonomy_get_tree($vid);
    if ($tree && count($tree) > 0) {
      $options[$vocabulary->name] = array();
      foreach ($tree as $term) {
        $options[$vocabulary->name][$term->tid] = str_repeat('-', $term->depth) . $term->name;
      }
    }
  }
  return $options;
}