ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjRemoteGlossary.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
32  public const DB_TABLE_NAME = "rglo_settings";
33 
34  public const ACTIVATION_OFFLINE = 0;
35  public const ACTIVATION_ONLINE = 1;
36 
37  protected $availability_type;
38 
39  public function initType(): void
40  {
41  $this->type = "rglo";
42  }
43 
44  protected function getTableName(): string
45  {
46  return self::DB_TABLE_NAME;
47  }
48 
49  protected function getECSObjectType(): string
50  {
51  return "/campusconnect/glossaries";
52  }
53 
59  public function setAvailabilityType($a_type)
60  {
61  $this->availability_type = $a_type;
62  }
63 
69  public function getAvailabilityType()
70  {
72  }
73 
80  public static function _lookupOnline($a_obj_id)
81  {
82  global $ilDB;
83 
84  $query = "SELECT * FROM " . self::DB_TABLE_NAME .
85  " WHERE obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " ";
86  $res = $ilDB->query($query);
87  $row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT);
88  switch ($row->availability_type) {
89  case self::ACTIVATION_ONLINE:
90  return true;
91 
92  case self::ACTIVATION_OFFLINE:
93  return false;
94 
95  default:
96  return false;
97  }
98 
99  return false;
100  }
101 
102  protected function doCreateCustomFields(array &$a_fields): void
103  {
104  $a_fields["availability_type"] = array("integer", 0);
105  }
106 
107  protected function doUpdateCustomFields(array &$a_fields): void
108  {
109  $a_fields["availability_type"] = array("integer", $this->getAvailabilityType());
110  }
111 
112  protected function doReadCustomFields($a_row): void
113  {
114  $this->setAvailabilityType($a_row->availability_type);
115  }
116 
117  protected function updateCustomFromECSContent(ilECSSetting $a_server, $ecs_content): void
118  {
119  $this->setAvailabilityType($ecs_content->availability == 'online' ? self::ACTIVATION_ONLINE : self::ACTIVATION_OFFLINE);
120  }
121 }
$res
Definition: ltiservices.php:66
doUpdateCustomFields(array &$a_fields)
Remote glossary app class.
doCreateCustomFields(array &$a_fields)
setAvailabilityType($a_type)
Set Availability type.
updateCustomFromECSContent(ilECSSetting $a_server, $ecs_content)
Remote object app base class.
getAvailabilityType()
get availability type
static _lookupOnline($a_obj_id)
Lookup online.