ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilSessionAppointment Class Reference

class ilSessionAppointment More...

+ Inheritance diagram for ilSessionAppointment:
+ Collaboration diagram for ilSessionAppointment:

Public Member Functions

 ilSessionAppointment ($a_appointment_id=null)
 isFullday ()
 is fullday
 getStart ()
 get start
 setStart ($a_start)
 set start
 getEnd ()
 get end
 setEnd ($a_end)
 set end
 setAppointmentId ($a_appointment_id)
 getAppointmentId ()
 setSessionId ($a_session_id)
 getSessionId ()
 setStartingTime ($a_starting_time)
 getStartingTime ()
 setEndingTime ($a_ending_time)
 getEndingTime ()
 toggleFullTime ($a_status)
 enabledFullTime ()
 formatTime ()
 _timeToString ($start, $end)
 appointmentToString ()
 cloneObject ($new_id)
 clone appointment
 create ()
 update ()
 delete ()
 _delete ($a_appointment_id)
 _deleteBySession ($a_event_id)
 _readAppointmentsBySession ($a_event_id)
 validate ()
 __read ()

Static Public Member Functions

static _lookupAppointment ($a_obj_id)
 lookup appointment
static lookupNextSessionByCourse ($a_ref_id)
 public
static lookupLastSessionByCourse ($a_ref_id)
 public
static _appointmentToString ($start, $end, $fulltime)

Data Fields

 $ilErr
 $ilDB
 $tree
 $lng
 $starting_time = null
 $ending_time = null

Protected Attributes

 $start = null
 $end = null

Detailed Description

class ilSessionAppointment

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 34 of file class.ilSessionAppointment.php.

Member Function Documentation

ilSessionAppointment::__read ( )

Definition at line 416 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, getAppointmentId(), IL_CAL_DATETIME, isFullday(), setSessionId(), and toggleFullTime().

Referenced by ilSessionAppointment().

{
global $ilDB;
if(!$this->getAppointmentId())
{
return null;
}
$query = "SELECT * FROM event_appointment ".
"WHERE appointment_id = ".$ilDB->quote($this->getAppointmentId() ,'integer')." ";
$res = $this->db->query($query);
while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
{
$this->setSessionId($row->event_id);
$this->toggleFullTime($row->fulltime);
if($this->isFullday())
{
$this->start = new ilDate($row->e_start,IL_CAL_DATETIME);
$this->end = new ilDate($row->e_end,IL_CAL_DATETIME);
}
else
{
$this->start = new ilDateTime($row->e_start,IL_CAL_DATETIME,'UTC');
$this->end = new ilDateTime($row->e_end,IL_CAL_DATETIME,'UTC');
}
$this->starting_time = $this->start->getUnixTime();
$this->ending_time = $this->end->getUnixTime();
}
return true;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static ilSessionAppointment::_appointmentToString (   $start,
  $end,
  $fulltime 
)
static

Definition at line 279 of file class.ilSessionAppointment.php.

References $end, $lng, $start, ilDatePresentation\formatPeriod(), and IL_CAL_UNIX.

Referenced by ilCourseContentGUI\__renderEvent(), appointmentToString(), and ilObjSessionListGUI\getTitle().

{
global $lng;
if($fulltime)
{
#new ilDate($end,IL_CAL_UNIX)).' ('.$lng->txt('event_full_time_info').')';
}
else
{
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilSessionAppointment::_delete (   $a_appointment_id)

Definition at line 367 of file class.ilSessionAppointment.php.

References $ilDB, $query, and $res.

Referenced by delete().

{
global $ilDB;
$query = "DELETE FROM event_appointment ".
"WHERE appointment_id = ".$ilDB->quote($a_appointment_id ,'integer')." ";
$res = $ilDB->manipulate($query);
return true;
}

+ Here is the caller graph for this function:

ilSessionAppointment::_deleteBySession (   $a_event_id)

Definition at line 378 of file class.ilSessionAppointment.php.

References $ilDB, $query, and $res.

Referenced by ilObjSession\delete().

{
global $ilDB;
$query = "DELETE FROM event_appointment ".
"WHERE event_id = ".$ilDB->quote($a_event_id ,'integer')." ";
$res = $ilDB->manipulate($query);
return true;
}

+ Here is the caller graph for this function:

static ilSessionAppointment::_lookupAppointment (   $a_obj_id)
static

lookup appointment

public

Parameters
intobj_id

Definition at line 66 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, and IL_CAL_DATETIME.

Referenced by ilCourseItems\__getItemData(), ilLPStatusEvent\_getStatusInfo(), and ilObjSessionListGUI\getAppointmentInfo().

{
global $ilDB;
$query = "SELECT * FROM event_appointment ".
"WHERE event_id = ".$ilDB->quote($a_obj_id ,'integer')." ";
$res = $ilDB->query($query);
while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
{
$info['fullday'] = $row->fulltime;
$date = new ilDateTime($row->e_start,IL_CAL_DATETIME,'UTC');
$info['start'] = $date->getUnixTime();
$date = new ilDateTime($row->e_end,IL_CAL_DATETIME,'UTC');
$info['end'] = $date->getUnixTime();
return $info;
}
return array();
}

+ Here is the caller graph for this function:

ilSessionAppointment::_readAppointmentsBySession (   $a_event_id)

Definition at line 389 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, $row, DB_FETCHMODE_OBJECT, and ilSessionAppointment().

Referenced by ilObjSession\initAppointments().

{
global $ilDB;
$query = "SELECT * FROM event_appointment ".
"WHERE event_id = ".$ilDB->quote($a_event_id ,'integer')." ".
"ORDER BY starting_time";
$res = $ilDB->query($query);
while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
{
$appointments[] =& new ilSessionAppointment($row->appointment_id);
}
return is_array($appointments) ? $appointments : array();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilSessionAppointment::_timeToString (   $start,
  $end 
)

Definition at line 269 of file class.ilSessionAppointment.php.

References $end, $lng, and $start.

Referenced by formatTime().

{
global $ilUser,$lng;
$start = date($this->lng->txt('lang_timeformat_no_sec'),$start);
$end = date($this->lng->txt('lang_timeformat_no_sec'),$end);
return $start.' - '. $end;
}

+ Here is the caller graph for this function:

ilSessionAppointment::appointmentToString ( )

Definition at line 298 of file class.ilSessionAppointment.php.

References _appointmentToString(), enabledFullTime(), getEndingTime(), and getStartingTime().

+ Here is the call graph for this function:

ilSessionAppointment::cloneObject (   $new_id)

clone appointment

public

Parameters
@return

Definition at line 310 of file class.ilSessionAppointment.php.

References getEndingTime(), getStartingTime(), ilSessionAppointment(), and isFullday().

{
$new_app = new ilSessionAppointment();
$new_app->setSessionId($new_id);
$new_app->setStartingTime($this->getStartingTime());
$new_app->setEndingTime($this->getEndingTime());
$new_app->toggleFullTime($this->isFullday());
$new_app->create();
return $new_app;
}

+ Here is the call graph for this function:

ilSessionAppointment::create ( )

Definition at line 321 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, enabledFullTime(), getEnd(), getSessionId(), getStart(), and IL_CAL_DATETIME.

{
global $ilDB;
if(!$this->getSessionId())
{
return false;
}
$next_id = $ilDB->nextId('event_appointment');
$query = "INSERT INTO event_appointment (appointment_id,event_id,e_start,e_end,fulltime) ".
"VALUES( ".
$ilDB->quote($next_id,'integer').", ".
$ilDB->quote($this->getSessionId() ,'integer').", ".
$ilDB->quote($this->getStart()->get(IL_CAL_DATETIME,'','UTC') ,'timestamp').", ".
$ilDB->quote($this->getEnd()->get(IL_CAL_DATETIME,'','UTC') ,'timestamp').", ".
$ilDB->quote($this->enabledFullTime() ,'integer')." ".
")";
$this->appointment_id = $next_id;
$res = $ilDB->manipulate($query);
return true;
}

+ Here is the call graph for this function:

ilSessionAppointment::delete ( )

Definition at line 362 of file class.ilSessionAppointment.php.

References _delete(), and getAppointmentId().

+ Here is the call graph for this function:

ilSessionAppointment::enabledFullTime ( )

Definition at line 259 of file class.ilSessionAppointment.php.

Referenced by appointmentToString(), create(), isFullday(), and update().

{
return $this->fulltime;
}

+ Here is the caller graph for this function:

ilSessionAppointment::formatTime ( )

Definition at line 264 of file class.ilSessionAppointment.php.

References _timeToString(), getEndingTime(), and getStartingTime().

+ Here is the call graph for this function:

ilSessionAppointment::getAppointmentId ( )

Definition at line 220 of file class.ilSessionAppointment.php.

Referenced by __read(), delete(), and update().

{
return $this->appointment_id;
}

+ Here is the caller graph for this function:

ilSessionAppointment::getEnd ( )

get end

public

Returns
ilDateTime

Implements ilDatePeriod.

Definition at line 199 of file class.ilSessionAppointment.php.

References IL_CAL_DATETIME.

Referenced by create(), and update().

{
return $this->end ? $this->end : $this->end = new ilDateTime(date('Y-m-d').' 16:00:00',IL_CAL_DATETIME);
}

+ Here is the caller graph for this function:

ilSessionAppointment::getEndingTime ( )

Definition at line 250 of file class.ilSessionAppointment.php.

Referenced by appointmentToString(), cloneObject(), and formatTime().

{
return isset($this->ending_time) ? $this->ending_time : mktime(16,0,0,date('n',time()),date('d',time()),date('Y',time()));
}

+ Here is the caller graph for this function:

ilSessionAppointment::getSessionId ( )

Definition at line 229 of file class.ilSessionAppointment.php.

Referenced by create(), and update().

{
return $this->session_id;
}

+ Here is the caller graph for this function:

ilSessionAppointment::getStart ( )

get start

public

Parameters
@returnilDateTime

Implements ilDatePeriod.

Definition at line 177 of file class.ilSessionAppointment.php.

References IL_CAL_DATETIME.

Referenced by create(), and update().

{
return $this->start ? $this->start : $this->start = new ilDateTime(date('Y-m-d').' 08:00:00',IL_CAL_DATETIME);
}

+ Here is the caller graph for this function:

ilSessionAppointment::getStartingTime ( )

Definition at line 240 of file class.ilSessionAppointment.php.

Referenced by appointmentToString(), cloneObject(), and formatTime().

{
return isset($this->starting_time) ? $this->starting_time : mktime(8,0,0,date('n',time()),date('d',time()),date('Y',time()));
}

+ Here is the caller graph for this function:

ilSessionAppointment::ilSessionAppointment (   $a_appointment_id = null)

Definition at line 47 of file class.ilSessionAppointment.php.

References $ilDB, $ilErr, $lng, $tree, and __read().

Referenced by _readAppointmentsBySession(), and cloneObject().

{
$this->ilErr =& $ilErr;
$this->db =& $ilDB;
$this->lng =& $lng;
$this->appointment_id = $a_appointment_id;
$this->__read();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilSessionAppointment::isFullday ( )

is fullday

public

Parameters
@return

Implements ilDatePeriod.

Definition at line 165 of file class.ilSessionAppointment.php.

References enabledFullTime().

Referenced by __read(), and cloneObject().

{
return $this->enabledFullTime();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static ilSessionAppointment::lookupLastSessionByCourse (   $a_ref_id)
static

public

Parameters
@return

Definition at line 130 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, $row, $tree, and DB_FETCHMODE_OBJECT.

Referenced by ilContainerSimpleContentGUI\initDetails(), ilContainerByTypeContentGUI\initDetails(), and ilContainerSessionsContentGUI\initDetails().

{
global $tree,$ilDB;
$sessions = $tree->getChildsByType($a_ref_id,'sess');
$obj_ids = array();
foreach($sessions as $tree_data)
{
$obj_ids[] = $tree_data['obj_id'];
}
if(!count($obj_ids))
{
return false;
}
$query = "SELECT event_id FROM event_appointment ".
"WHERE e_start < ".$ilDB->now()." ".
"AND ".$ilDB->in('event_id',$obj_ids,false,'integer')." ".
"ORDER BY e_start DESC ";
$ilDB->setLimit(1);
$res = $ilDB->query($query);
while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
{
$event_id = $row->event_id;
}
return isset($event_id) ? $event_id : 0;
}

+ Here is the caller graph for this function:

static ilSessionAppointment::lookupNextSessionByCourse (   $a_ref_id)
static

public

Parameters
@return

Definition at line 95 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, $row, $tree, and DB_FETCHMODE_OBJECT.

Referenced by ilContainerSimpleContentGUI\initDetails(), ilContainerByTypeContentGUI\initDetails(), and ilContainerSessionsContentGUI\initDetails().

{
global $tree,$ilDB;
$sessions = $tree->getChildsByType($a_ref_id,'sess');
$obj_ids = array();
foreach($sessions as $tree_data)
{
$obj_ids[] = $tree_data['obj_id'];
}
if(!count($obj_ids))
{
return false;
}
$query = "SELECT event_id FROM event_appointment ".
"WHERE e_start > ".$ilDB->now()." ".
"AND ".$ilDB->in('event_id',$obj_ids,false,'integer')." ".
"ORDER BY e_start ";
$ilDB->setLimit(1);
$res = $ilDB->query($query);
while($row = $res->fetchRow(DB_FETCHMODE_OBJECT))
{
$event_id = $row->event_id;
}
return isset($event_id) ? $event_id : 0;
}

+ Here is the caller graph for this function:

ilSessionAppointment::setAppointmentId (   $a_appointment_id)

Definition at line 216 of file class.ilSessionAppointment.php.

{
$this->appointment_id = $a_appointment_id;
}
ilSessionAppointment::setEnd (   $a_end)

set end

public

Parameters
object$dateilDateTime
Returns

Definition at line 211 of file class.ilSessionAppointment.php.

{
$this->end = $a_end;
}
ilSessionAppointment::setEndingTime (   $a_ending_time)

Definition at line 245 of file class.ilSessionAppointment.php.

References IL_CAL_UNIX.

{
$this->ending_time = $a_ending_time;
$this->end = new ilDateTime($this->ending_time,IL_CAL_UNIX);
}
ilSessionAppointment::setSessionId (   $a_session_id)

Definition at line 225 of file class.ilSessionAppointment.php.

Referenced by __read().

{
$this->session_id = $a_session_id;
}

+ Here is the caller graph for this function:

ilSessionAppointment::setStart (   $a_start)

set start

public

Parameters
object$datailDateTime

Definition at line 188 of file class.ilSessionAppointment.php.

{
$this->start = $a_start;
}
ilSessionAppointment::setStartingTime (   $a_starting_time)

Definition at line 234 of file class.ilSessionAppointment.php.

References IL_CAL_UNIX.

{
$this->starting_time = $a_starting_time;
$this->start = new ilDateTime($this->starting_time,IL_CAL_UNIX);
}
ilSessionAppointment::toggleFullTime (   $a_status)

Definition at line 255 of file class.ilSessionAppointment.php.

Referenced by __read().

{
$this->fulltime = $a_status;
}

+ Here is the caller graph for this function:

ilSessionAppointment::update ( )

Definition at line 344 of file class.ilSessionAppointment.php.

References $ilDB, $query, $res, enabledFullTime(), getAppointmentId(), getEnd(), getSessionId(), getStart(), and IL_CAL_DATETIME.

{
global $ilDB;
if(!$this->getSessionId())
{
return false;
}
$query = "UPDATE event_appointment ".
"SET event_id = ".$ilDB->quote($this->getSessionId() ,'integer').", ".
"e_start = ".$ilDB->quote($this->getStart()->get(IL_CAL_DATETIME,'','UTC') ,'timestamp').", ".
"e_end = ".$ilDB->quote($this->getEnd()->get(IL_CAL_DATETIME,'','UTC'), 'timestamp').", ".
"fulltime = ".$ilDB->quote($this->enabledFullTime() ,'integer')." ".
"WHERE appointment_id = ".$ilDB->quote($this->getAppointmentId() ,'integer')." ";
$res = $ilDB->manipulate($query);
return true;
}

+ Here is the call graph for this function:

ilSessionAppointment::validate ( )

Definition at line 405 of file class.ilSessionAppointment.php.

{
if($this->starting_time > $this->ending_time)
{
$this->ilErr->appendMessage($this->lng->txt('event_etime_smaller_stime'));
return false;
}
return true;
}

Field Documentation

ilSessionAppointment::$end = null
protected

Definition at line 42 of file class.ilSessionAppointment.php.

Referenced by _appointmentToString(), and _timeToString().

ilSessionAppointment::$ending_time = null

Definition at line 45 of file class.ilSessionAppointment.php.

ilSessionAppointment::$ilErr

Definition at line 36 of file class.ilSessionAppointment.php.

Referenced by ilSessionAppointment().

ilSessionAppointment::$lng
ilSessionAppointment::$start = null
protected

Definition at line 41 of file class.ilSessionAppointment.php.

Referenced by _appointmentToString(), and _timeToString().

ilSessionAppointment::$starting_time = null

Definition at line 44 of file class.ilSessionAppointment.php.

ilSessionAppointment::$tree

The documentation for this class was generated from the following file: