| 1 |
<?php |
<?php |
| 2 |
// $Id: taxonomy_manager.admin.inc,v 1.1.2.17.2.21 2009/08/10 13:47:46 mh86 Exp $ |
// $Id: taxonomy_manager.admin.inc,v 1.1.2.17.2.22 2009/08/11 06:56:26 mh86 Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* |
* |
| 62 |
drupal_set_title(t("Taxonomy Manager - %voc_name", array("%voc_name" => $voc->name))); |
drupal_set_title(t("Taxonomy Manager - %voc_name", array("%voc_name" => $voc->name))); |
| 63 |
|
|
| 64 |
if (!is_numeric($voc->vid)) { |
if (!is_numeric($voc->vid)) { |
| 65 |
$text = t('No vocabulary with this ID available!. '); |
$text = t('No vocabulary with this ID available! Check this <a href="!list">list</a> for available vocabularies or <a href="!create">create</a> a new one', array('!list' => url('admin/content/taxonomy_manager'), '!create' => url('admin/content/taxonomy/add/vocabulary'))); |
|
$text .= t('Check this !link_list for available vocabularies or !link_create a new one', array('!link_list' => l('list', 'admin/content/taxonomy_manager'), '!link_create' => l('create', 'admin/content/taxonomy/add/vocabulary'))); |
|
| 66 |
$form['text'] = array( |
$form['text'] = array( |
| 67 |
'#value' => $text, |
'#value' => $text, |
| 68 |
); |
); |