Summary | registry.php: request new application status |
Queue | Horde Framework Packages |
Type | Enhancement |
State | Rejected |
Priority | 1. Low |
Owners | |
Requester | sca (at) andreasschulze (dot) de |
Created | 04/30/2015 (3696 days ago) |
Due | |
Updated | 04/30/2015 (3696 days ago) |
Assigned | |
Resolved | 04/30/2015 (3696 days ago) |
Milestone | |
Patch | No |
on anonymous access there is a menu "others" with one item "wiki" or "photos"
So I moved the item to top ( registry.local.php, [app][menu_parent] = '' )
I just found a solution to do that move only for unauth users by
placing the following code in
registry.local.php
<?php
global $registry;
if (!$registry->isAuthenticated()) {
$this->applications['wicked']['menu_parent'] = '';
}
State ⇒ Feedback
we may include the guest permissions when adding permissions for
authenticated users. Changing this would be a huge BC break.
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ registry.php: request new application status
Type ⇒ Enhancement
State ⇒ New
is not an admin.
I would request a new status "unauthenticated" or "anonymous"
That way it would be possible to show menu entries only to anonymous
users and hide them
after user logged in.