add show button only appears for admin users
This commit is contained in:
parent
718a039bcc
commit
ac86fc50e8
3 changed files with 8 additions and 26 deletions
|
@ -95,6 +95,10 @@ class ScheduleController extends Zend_Controller_Action
|
|||
$this->view->repeats = $formRepeats;
|
||||
$this->view->who = $formWho;
|
||||
$this->view->style = $formStyle;
|
||||
|
||||
$userInfo = Zend_Auth::getInstance()->getStorage()->read();
|
||||
$user = new User($userInfo->id);
|
||||
$this->view->isAdmin = $user->isAdmin();
|
||||
}
|
||||
|
||||
public function eventFeedAction()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue