ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjRemoteGroup.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
32  public const DB_TABLE_NAME = "rgrp_settings";
33 
35  public const ACTIVATION_OFFLINE = 1;
36  public const ACTIVATION_UNLIMITED = 0;
37  public const ACTIVATION_LIMITED = 2;
38 
39  protected $availability_type;
40  protected $end;
41  protected $start;
42 
43  public function initType(): void
44  {
45  $this->type = "rgrp";
46  }
47 
48  protected function getTableName(): string
49  {
50  return self::DB_TABLE_NAME;
51  }
52 
53  protected function getECSObjectType(): string
54  {
55  return "/campusconnect/groups";
56  }
57 
63  public function setAvailabilityType($a_type)
64  {
65  $this->availability_type = $a_type;
66  }
67 
73  public function getAvailabilityType()
74  {
76  }
77 
83  public function setStartingTime($a_time)
84  {
85  $this->start = $a_time;
86  }
87 
93  public function getStartingTime()
94  {
95  return $this->start;
96  }
97 
103  public function setEndingTime($a_time)
104  {
105  $this->end = $a_time;
106  }
107 
113  public function getEndingTime()
114  {
115  return $this->end;
116  }
117 
124  public static function _lookupOnline($a_obj_id)
125  {
126  global $ilDB;
127 
128  $query = "SELECT * FROM " . self::DB_TABLE_NAME .
129  " WHERE obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " ";
130  $res = $ilDB->query($query);
131  $row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT);
132  switch ($row->availability_type) {
133  case self::ACTIVATION_UNLIMITED:
134  return true;
135 
136  case self::ACTIVATION_OFFLINE:
137  return false;
138 
139  case self::ACTIVATION_LIMITED:
140  return time() > $row->r_start && time < $row->r_end;
141 
142  default:
143  return false;
144  }
145 
146  return false;
147  }
148 
149  protected function doCreateCustomFields(array &$a_fields): void
150  {
151  $a_fields["availability_type"] = array("integer", 0);
152  $a_fields["availability_start"] = array("integer", 0);
153  $a_fields["availability_end"] = array("integer", 0);
154  }
155 
156  protected function doUpdateCustomFields(array &$a_fields): void
157  {
158  $a_fields["availability_type"] = array("integer", (int) $this->getAvailabilityType());
159  $a_fields["availability_start"] = array("integer", (int) $this->getStartingTime());
160  $a_fields["availability_end"] = array("integer", (int) $this->getEndingTime());
161  }
162 
163  protected function doReadCustomFields($a_row): void
164  {
165  $this->setAvailabilityType($a_row->availability_type);
166  $this->setStartingTime($a_row->availability_start);
167  $this->setEndingTime($a_row->availability_end);
168  }
169 
170  protected function updateCustomFromECSContent(ilECSSetting $a_server, $a_ecs_content): void
171  {
172  // add custom values
173  // $this->setAvailabilityType($a_ecs_content->status == 'online' ? self::ACTIVATION_UNLIMITED : self::ACTIVATION_OFFLINE);
174 
175  // :TODO: ACTIVATION_LIMITED is currently not supported in ECS yet
176  }
177 }
$res
Definition: ltiservices.php:66
getEndingTime()
get ending time
setAvailabilityType($a_type)
Set Availability type.
static _lookupOnline($a_obj_id)
Lookup online.
getAvailabilityType()
get availability type
getStartingTime()
get starting time
doUpdateCustomFields(array &$a_fields)
Remote object app base class.
const ACTIVATION_OFFLINE
Fixed activation.
setEndingTime($a_time)
set ending time
Remote group app class.
updateCustomFromECSContent(ilECSSetting $a_server, $a_ecs_content)
doCreateCustomFields(array &$a_fields)
setStartingTime($a_time)
set starting time