start making more menu work
This commit is contained in:
parent
74f8c51358
commit
1c917ac28f
@ -44,7 +44,7 @@ if (!defined('STATUSNET')) {
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
class GroupsNav extends Menu
|
class GroupsNav extends MoreMenu
|
||||||
{
|
{
|
||||||
protected $user;
|
protected $user;
|
||||||
protected $groups;
|
protected $groups;
|
||||||
|
@ -104,7 +104,7 @@ class Menu extends Widget
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function item($actionName, $args, $label, $description, $id=null)
|
function item($actionName, $args, $label, $description, $id=null, $cls=null)
|
||||||
{
|
{
|
||||||
if (empty($id)) {
|
if (empty($id)) {
|
||||||
$id = $this->menuItemID($actionName, $args);
|
$id = $this->menuItemID($actionName, $args);
|
||||||
@ -116,7 +116,8 @@ class Menu extends Widget
|
|||||||
$label,
|
$label,
|
||||||
$description,
|
$description,
|
||||||
$this->isCurrent($actionName, $args),
|
$this->isCurrent($actionName, $args),
|
||||||
$id);
|
$id,
|
||||||
|
$cls);
|
||||||
}
|
}
|
||||||
|
|
||||||
function isCurrent($actionName, $args)
|
function isCurrent($actionName, $args)
|
||||||
|
121
lib/moremenu.php
Normal file
121
lib/moremenu.php
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2011, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* A menu with a More... button to show more elements
|
||||||
|
*
|
||||||
|
* PHP version 5
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* @category Widget
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2011 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
// This check helps protect against security problems;
|
||||||
|
// your code file can't be executed directly from the web.
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A menu with a More... element to show more items
|
||||||
|
*
|
||||||
|
* @category General
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2011 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
class MoreMenu extends Menu
|
||||||
|
{
|
||||||
|
const SOFT_MAX = 5;
|
||||||
|
const HARD_MAX = 15;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show a menu with a limited number of elements
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
|
||||||
|
function show()
|
||||||
|
{
|
||||||
|
$items = $this->getItems();
|
||||||
|
$tag = $this->tag();
|
||||||
|
|
||||||
|
$attrs = array('class' => 'nav');
|
||||||
|
|
||||||
|
if (!is_null($tag)) {
|
||||||
|
$attrs['id'] = 'nav_' . $tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Event::handle('StartNav', array($this, &$tag, &$items))) {
|
||||||
|
|
||||||
|
$this->out->elementStart('ul', $attrs);
|
||||||
|
|
||||||
|
$total = count($items);
|
||||||
|
|
||||||
|
if ($total <= self::SOFT_MAX + 1) {
|
||||||
|
$toShow = $items;
|
||||||
|
} else {
|
||||||
|
$toShow = array_slice($items, 0, self::SOFT_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($toShow as $item) {
|
||||||
|
list($actionName, $args, $label, $description, $id) = $item;
|
||||||
|
$this->item($actionName, $args, $label, $description, $id);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($total > self::SOFT_MAX + 1) {
|
||||||
|
$this->out->elementStart('li');
|
||||||
|
$this->out->element('a', array('href' => '#'),
|
||||||
|
_('More ▼'));
|
||||||
|
$this->out->elementEnd('li');
|
||||||
|
|
||||||
|
$extended = array_slice($items, self::SOFT_MAX, self::HARD_MAX - self::SOFT_MAX);
|
||||||
|
|
||||||
|
foreach ($extended as $item) {
|
||||||
|
list($actionName, $args, $label, $description, $id) = $item;
|
||||||
|
$this->item($actionName, $args, $label, $description, $id, 'extended_menu');
|
||||||
|
}
|
||||||
|
|
||||||
|
$seeAll = $this->seeAllItem();
|
||||||
|
|
||||||
|
if (!empty($seeAll)) {
|
||||||
|
list($actionName, $args, $label, $description, $id) = $seeAll;
|
||||||
|
$this->item($actionName, $args, $label, $description, $id, 'extended_menu see_all');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->out->elementEnd('ul');
|
||||||
|
|
||||||
|
Event::handle('EndNav', array($this, $tag, $items));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function seeAllItem()
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -2229,6 +2229,10 @@ float:right;
|
|||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#site_nav_local_views li.extended_menu a {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
/*end of @media screen, projection, tv*/
|
/*end of @media screen, projection, tv*/
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user