|
From: <gem...@li...> - 2011-10-12 07:55:37
|
Revision: 92
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=92&view=rev
Author: mennodekker
Date: 2011-10-12 07:55:30 +0000 (Wed, 12 Oct 2011)
Log Message:
-----------
Menu updates:
-Removed duplicate 'staff' item that caused jumping branches when clicked from within setup item
-Removed 'acl' as it provides no useful information not mentioned elsewhere
Modified Paths:
--------------
trunk/library/classes/Gems/Default/RoleAction.php
trunk/library/classes/Gems/Menu.php
Modified: trunk/library/classes/Gems/Default/RoleAction.php
===================================================================
--- trunk/library/classes/Gems/Default/RoleAction.php 2011-10-11 16:24:36 UTC (rev 91)
+++ trunk/library/classes/Gems/Default/RoleAction.php 2011-10-12 07:55:30 UTC (rev 92)
@@ -53,12 +53,6 @@
$this->html[] = $table;
}
- public function aclAction()
- {
- $this->html->h2($this->_('Access Control Lists'));
- $this->_showTable($this->_('ACL\'s'), $this->acl->getRoles());
- }
-
/**
* Adds elements from the model to the bridge that creates the form.
*
Modified: trunk/library/classes/Gems/Menu.php
===================================================================
--- trunk/library/classes/Gems/Menu.php 2011-10-11 16:24:36 UTC (rev 91)
+++ trunk/library/classes/Gems/Menu.php 2011-10-12 07:55:30 UTC (rev 92)
@@ -193,7 +193,6 @@
// ROLES CONTROLLER
$page = $setup->addBrowsePage($this->_('Roles'), 'pr.role', 'role');
- $page->addAction($this->_('ACL'), null, 'acl');
$page->addAction($this->_('Assigned'), null, 'overview');
$page->addAction($this->_('Privileges'), null, 'privilege');
@@ -520,9 +519,6 @@
// PROJECT INFO
$this->addProjectPage($this->_('Project'));
- // MAIN STAFF ITEM
- $this->addStaffPage($this->_('Staff'), array('order'=>40));
-
// SETUP CONTAINER
$this->addGemsSetupContainer($this->_('Setup'));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|