add show button only appears for admin users

This commit is contained in:
Naomi 2011-02-10 11:25:28 -05:00
parent 718a039bcc
commit ac86fc50e8
3 changed files with 8 additions and 26 deletions

View file

@ -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()