Example #1
0
 function configTime()
 {
     $this->title = 'Calendar Time';
     $this->addYUI = 1;
     $this->menu = 'backup';
     $this->view = 'calendar/addedittime';
     $this->addAutocomplete = 1;
     $dbh = Connection::cal_ro();
     $obj_assignee = new calendarConfig();
     $admingrp = $obj_assignee->getAdmingroup($dbh, $team);
     $this->is_allowed = $this->checkUserPermission($admingrp);
     $time = $obj_assignee->getTimezoneDetail($dbh, Req::get('aid'));
     $this->pagetitle = 'Session Timing';
     $this->hideheader = 1;
     $this->time = $time;
     $this->action = 'updateTime';
 }