Ejemplo n.º 1
0
 function ShowGroupSchedulesDaily ($group_id, $start_time, $resources_groups = null) {
     $this->dow = false;
     $this->group_id = $group_id;
     parent::ShowSemSchedules(null, null, null);
     $this->start_time = $start_time ? strtotime('midnight', $start_time) : strtotime('today');
     $this->end_time = strtotime('tomorrow', $this->start_time) - 1;
     if(is_object($resources_groups)) $this->resources_groups = $resources_groups;
     else $this->resources_groups = RoomGroups::GetInstance();
 }
Ejemplo n.º 2
0
            </tr>
            </table>
            <?
                } else {
        echo "</td></tr>";
        $msg->displayMsg(15);
    }
}

/*****************************************************************************
Belegungen ausgeben, views: view_schedule, openobject_schedule
/*****************************************************************************/
if ($view == "view_sem_schedule") {
    require_once ($RELATIVE_PATH_RESOURCES."/views/ShowSemSchedules.class.php");
    if ($_SESSION['resources_data']["actual_object"]) {
        $ViewSchedules = new ShowSemSchedules($_SESSION['resources_data']["actual_object"], $_SESSION['resources_data']['sem_schedule_semester_id'],$_SESSION['resources_data']['sem_schedule_timespan']);
        $ViewSchedules->setUsedView($view);
        $ViewSchedules->navigator(Request::option('print_view'));
        ?>                      </td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <td class="blank" valign ="top">
            <table width="100%" cellspacing="0" cellpadding="0" border="0">
            <tr>
                <td valign ="top">
Ejemplo n.º 3
0
 function ShowGroupSchedules ($group_id, $semester_id = null, $timespan = 'sem_time', $dow = 1) {
     $this->dow = $dow;
     $this->group_id = $group_id;
     parent::ShowSemSchedules(null, $semester_id, $timespan);
 }