Hooks for: Public group nav in order to place a list-anchor item at
the start or end of the list.
This commit is contained in:
parent
753b699916
commit
78a715bc37
|
@ -88,9 +88,14 @@ StartShowLocalNavBlock: Showing the local nav menu
|
||||||
EndShowLocalNavBlock: At the end of the local nav menu
|
EndShowLocalNavBlock: At the end of the local nav menu
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
StartShowHTML: Chance to set document content type, charset, language, DOCTYPE and html element properties
|
StartShowHTML: Chance to set document headers (e.g., content type, charset, language), DOCTYPE and html element properties
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
EndShowHTML: Showing after the html element
|
EndShowHTML: Showing after the html element
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
|
StartPublicGroupNav: Showing the public group nav menu
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
EndPublicGroupNav: At the end of the public group nav menu
|
||||||
|
- $action: the current action
|
||||||
|
|
|
@ -39,6 +39,7 @@ require_once INSTALLDIR.'/lib/widget.php';
|
||||||
* @category Output
|
* @category Output
|
||||||
* @package Laconica
|
* @package Laconica
|
||||||
* @author Evan Prodromou <evan@controlyourself.ca>
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
||||||
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||||
* @link http://laconi.ca/
|
* @link http://laconi.ca/
|
||||||
*
|
*
|
||||||
|
@ -73,23 +74,26 @@ class PublicGroupNav extends Widget
|
||||||
|
|
||||||
$this->action->elementStart('ul', array('class' => 'nav'));
|
$this->action->elementStart('ul', array('class' => 'nav'));
|
||||||
|
|
||||||
$this->out->menuItem(common_local_url('public'), _('Public'),
|
if (Event::handle('StartPublicGroupNav', array($this))) {
|
||||||
_('Public timeline'), $action_name == 'public', 'nav_timeline_public');
|
$this->out->menuItem(common_local_url('public'), _('Public'),
|
||||||
|
_('Public timeline'), $action_name == 'public', 'nav_timeline_public');
|
||||||
|
|
||||||
$this->out->menuItem(common_local_url('groups'), _('Groups'),
|
$this->out->menuItem(common_local_url('groups'), _('Groups'),
|
||||||
_('User groups'), $action_name == 'groups', 'nav_groups');
|
_('User groups'), $action_name == 'groups', 'nav_groups');
|
||||||
|
|
||||||
$this->out->menuItem(common_local_url('publictagcloud'), _('Recent tags'),
|
$this->out->menuItem(common_local_url('publictagcloud'), _('Recent tags'),
|
||||||
_('Recent tags'), $action_name == 'publictagcloud', 'nav_recent-tags');
|
_('Recent tags'), $action_name == 'publictagcloud', 'nav_recent-tags');
|
||||||
|
|
||||||
if (count(common_config('nickname', 'featured')) > 0) {
|
if (count(common_config('nickname', 'featured')) > 0) {
|
||||||
$this->out->menuItem(common_local_url('featured'), _('Featured'),
|
$this->out->menuItem(common_local_url('featured'), _('Featured'),
|
||||||
_('Featured users'), $action_name == 'featured', 'nav_featured');
|
_('Featured users'), $action_name == 'featured', 'nav_featured');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->out->menuItem(common_local_url('favorited'), _('Popular'),
|
||||||
|
_("Popular notices"), $action_name == 'favorited', 'nav_timeline_favorited');
|
||||||
|
|
||||||
|
Event::handle('EndPublicGroupNav', array($this));
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out->menuItem(common_local_url('favorited'), _('Popular'),
|
|
||||||
_("Popular notices"), $action_name == 'favorited', 'nav_timeline_favorited');
|
|
||||||
|
|
||||||
$this->action->elementEnd('ul');
|
$this->action->elementEnd('ul');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user