X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fmenu.php;h=281ef7797be7c4af1c9aa2179cbd4df59ebbaf13;hb=0cd93c276136f849070b05965cf681734f7b9f09;hp=2713b44d50e8e8c86d722fc15c22b75a881b1d0a;hpb=7cf12f093ed48849ec901038b4cfd44595343c06;p=quix0rs-gnu-social.git diff --git a/lib/menu.php b/lib/menu.php index 2713b44d50..281ef7797b 100644 --- a/lib/menu.php +++ b/lib/menu.php @@ -49,6 +49,8 @@ class Menu extends Widget { var $action = null; var $actionName = null; + var $actionArgs = null; + /** * Construction * @@ -60,12 +62,52 @@ class Menu extends Widget $this->action = $action; $this->actionName = $action->trimmed('action'); + + $rtargs = $action->returnToArgs(); + + $this->actionArgs = $rtargs[1]; + } + + function getItems() + { + return array(); + } + + function tag() + { + return null; } + + function show() + { + $items = $this->getItems(); + $tag = $this->tag(); + + $attrs = array('class' => 'nav'); + + if (!is_null($tag)) { + $attrs['id'] = 'nav_' . $tag; + } - function item($actionName, $args, $label, $description, $id=null) + if (Event::handle('StartNav', array($this, &$tag, &$items))) { + + $this->out->elementStart('ul', $attrs); + + foreach ($items as $item) { + list($actionName, $args, $label, $description, $id) = $item; + $this->item($actionName, $args, $label, $description, $id); + } + + $this->out->elementEnd('ul'); + + Event::handle('EndNav', array($this, $tag, $items)); + } + } + + function item($actionName, $args, $label, $description, $id=null, $cls=null) { if (empty($id)) { - $id = $this->menuItemID($actionName); + $id = $this->menuItemID($actionName, $args); } $url = common_local_url($actionName, $args); @@ -73,13 +115,37 @@ class Menu extends Widget $this->out->menuItem($url, $label, $description, - $actionName == $this->actionName, - $id); + $this->isCurrent($actionName, $args), + $id, + $cls); } - function menuItemID($actionName) + function isCurrent($actionName, $args) + { + if ($actionName != $this->actionName) { + return false; + } + + foreach ($this->actionArgs as $k => $v) { + if (!array_key_exists($k, $args) || $args[$k] != $v) { + return false; + } + } + + return true; + } + + function menuItemID($actionName, $args = null) { - return sprintf('nav_%s', $actionName); + $id = sprintf('nav_%s', $actionName); + + if (!is_null($args)) { + foreach ($args as $key => $value) { + $id .= '_' . $key . '_' . $value; + } + } + + return $id; } function submenu($label, $menu)