Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'module/Application/view/partial/breadcrumb.phtml')
-rw-r--r--module/Application/view/partial/breadcrumb.phtml24
1 files changed, 0 insertions, 24 deletions
diff --git a/module/Application/view/partial/breadcrumb.phtml b/module/Application/view/partial/breadcrumb.phtml
deleted file mode 100644
index 0ad34ab..0000000
--- a/module/Application/view/partial/breadcrumb.phtml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-<ul class="breadcrumb">
-
-<?php foreach($this->pages as $key => $page) : ?>
-
-<li>
-
-<?php if($key < count($this->pages) - 1) : ?>
-
-<a href="<?php echo getHref(); ?>"><?php echo $page->getLabel(); ?></a>
-
-<!-- <span class="divider">|</span> -->
-
-<?php else: ?>
-
-<?php echo $page->getLabel(); ?>
-
-<?php endif; ?>
-
-</li>
-
-<?php endforeach; ?>
-
-</ul>