1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293:
<?php
namespace Inteve\Navigation;
use Nette\Utils\Strings;
class Navigation
{
private $pages = array();
private $items = array();
private $beforeItems = array();
private $afterItems = array();
private $currentPage;
private $defaultPage;
public function setDefaultPage($defaultPage)
{
$this->defaultPage = $defaultPage !== NULL ? self::formatPageId($defaultPage) : NULL;
return $this;
}
public function setCurrentPage($currentPage)
{
$this->currentPage = $currentPage !== NULL ? self::formatPageId($currentPage) : NULL;
return $this;
}
public function getCurrentPage()
{
return isset($this->currentPage) ? $this->currentPage : $this->defaultPage;
}
public function isPageCurrent($page)
{
return self::formatPageId($page) === $this->getCurrentPage();
}
public function isPageActive($page)
{
$page = self::formatPageId($page);
$currentPage = $this->getCurrentPage();
if ($currentPage === NULL) {
return FALSE;
}
if ($page === $currentPage || $page === '') {
return TRUE;
}
return Strings::startsWith($currentPage, "$page/");
}
public function addPage($id, $label, $link = NULL, array $parameters = NULL)
{
$id = self::formatPageId($id);
if (isset($this->pages[$id])) {
throw new DuplicateException("Page '$id' already exists.");
}
$this->pages[$id] = $this->createItem($label, $link, $parameters);
return $this;
}
public function setPageLabel($pageId, $label)
{
$page = $this->getPage($pageId);
$page->setLabel($label);
return $this;
}
public function getPage($pageId)
{
$pageId = self::formatPageId($pageId);
if (!isset($this->pages[$pageId])) {
throw new MissingException("Page '$pageId' not found.");
}
return $this->pages[$pageId];
}
public function getPages()
{
return $this->pages;
}
public function hasChildren($pageId)
{
$pageId = self::formatPageId($pageId);
if ($pageId === '') {
return TRUE;
}
$pageId .= '/';
foreach ($this->pages as $childId => $item) {
if (Strings::startsWith($childId, $pageId)) {
return TRUE;
}
}
return FALSE;
}
public function addItem($label, $link = NULL, array $parameters = NULL)
{
$this->items[] = $this->createItem($label, $link, $parameters);
return $this;
}
public function addItemBefore($pageId, $label, $link = NULL, array $parameters = NULL)
{
$pageId = self::formatPageId($pageId);
$this->beforeItems[$pageId][] = $this->createItem($label, $link, $parameters);
return $this;
}
public function addItemAfter($pageId, $label, $link = NULL, array $parameters = NULL)
{
$pageId = self::formatPageId($pageId);
$this->afterItems[$pageId][] = $this->createItem($label, $link, $parameters);
return $this;
}
public function getBreadcrumbs()
{
$items = array();
$currentPage = $this->getCurrentPage();
if (isset($currentPage)) {
do {
if (isset($this->pages[$currentPage])) {
if (isset($this->afterItems[$currentPage])) {
$items = array_merge($items, array_reverse($this->afterItems[$currentPage]));
}
$items[] = $this->pages[$currentPage];
if (isset($this->beforeItems[$currentPage])) {
$items = array_merge($items, array_reverse($this->beforeItems[$currentPage]));
}
}
if ($currentPage === '') {
break;
}
if (($pos = strrpos($currentPage, '/')) !== FALSE) {
$currentPage = substr($currentPage, 0, $pos);
} else {
$currentPage = '';
}
} while ($currentPage !== FALSE);
$items = array_reverse($items);
}
foreach ($this->items as $item) {
$items[] = $item;
}
return $items;
}
private function createItem($label, $link = NULL, array $parameters = NULL)
{
if ($label instanceof NavigationItem) {
return $label;
} else {
return new NavigationItem($label, $link, $parameters);
}
}
public static function formatPageId($pageId)
{
return trim($pageId, '/');
}
}