- Usability improvement and bugfix for translation issue with the taxonomy

module.  Patch #70 by Stefan.
4.3.x
Dries Buytaert 2003-07-08 09:51:22 +00:00
parent cd150ba731
commit 1482a56596
2 changed files with 6 additions and 4 deletions

View File

@ -70,7 +70,7 @@ function taxonomy_link($type, $node = NULL) {
function taxonomy_form_vocabulary($edit = array()) {
foreach (module_list() as $name) {
if (module_hook($name, "node")) {
$nodetypes[$name] = $name;
$nodetypes[$name] = module_invoke($name, "node", "name");
}
}
@ -280,9 +280,10 @@ function taxonomy_overview() {
$header = array(t("name"), t("node types"), array("data" => t("operations"), "colspan" => 3));
$vocabularies = taxonomy_get_vocabularies();
foreach ($vocabularies as $vocabulary) {
$links = array();
$rows[] = array($vocabulary->name, array("data" => $vocabulary->nodes, "align" => "center"), l(t("edit vocabulary"), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t("add term"), "admin/taxonomy/add/term/$vocabulary->vid"), l(t("preview form"), "admin/taxonomy/preview/vocabulary/$vocabulary->vid"));
$rows[] = array($vocabulary->name, array("data" => module_invoke($vocabulary->nodes, "node", "name"), "align" => "center"), l(t("edit vocabulary"), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t("add term"), "admin/taxonomy/add/term/$vocabulary->vid"), l(t("preview form"), "admin/taxonomy/preview/vocabulary/$vocabulary->vid"));
$tree = taxonomy_get_tree($vocabulary->vid);
if ($tree) {

View File

@ -70,7 +70,7 @@ function taxonomy_link($type, $node = NULL) {
function taxonomy_form_vocabulary($edit = array()) {
foreach (module_list() as $name) {
if (module_hook($name, "node")) {
$nodetypes[$name] = $name;
$nodetypes[$name] = module_invoke($name, "node", "name");
}
}
@ -280,9 +280,10 @@ function taxonomy_overview() {
$header = array(t("name"), t("node types"), array("data" => t("operations"), "colspan" => 3));
$vocabularies = taxonomy_get_vocabularies();
foreach ($vocabularies as $vocabulary) {
$links = array();
$rows[] = array($vocabulary->name, array("data" => $vocabulary->nodes, "align" => "center"), l(t("edit vocabulary"), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t("add term"), "admin/taxonomy/add/term/$vocabulary->vid"), l(t("preview form"), "admin/taxonomy/preview/vocabulary/$vocabulary->vid"));
$rows[] = array($vocabulary->name, array("data" => module_invoke($vocabulary->nodes, "node", "name"), "align" => "center"), l(t("edit vocabulary"), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t("add term"), "admin/taxonomy/add/term/$vocabulary->vid"), l(t("preview form"), "admin/taxonomy/preview/vocabulary/$vocabulary->vid"));
$tree = taxonomy_get_tree($vocabulary->vid);
if ($tree) {