diff --git a/application/views/scripts/objects/tree.phtml b/application/views/scripts/objects/tree.phtml deleted file mode 100644 index b7bc0827..00000000 --- a/application/views/scripts/objects/tree.phtml +++ /dev/null @@ -1,70 +0,0 @@ -children); - if ($level === 0) { - $class = 'root'; - } else { - //$class = 'host'; - $class = $self->objectTypeName; - } - - if ($hasChildren) { - $collapsed = ''; - } else { - $collapsed = ' class="collapsed"'; - } - - $html = ''; - if ($hasChildren) { - ksort($tree->children); - $html .= ' '; - } - - if ($level === 0) { - $html .= '' . $self->escape($tree->name) . ''; - } else { - $html .= $self->qlink( - $tree->name, - 'director/' . $self->objectTypeName, - array('name' => $tree->name), - array('class' => $class) - )/* . $self->qlink( - '=>', - 'director/' . $self->objectTypeName . '/childlist', - array('name' => $tree->name) - )*/; - } - - if ($hasChildren) { - $html .= ''; - } - $html .= "\n"; - return $html; -} - -?> -
-tabs ?> -

translate('Template tree') ?>

-
- -
- -