ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclTableView.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
33  protected ?int $id;
41  protected int $table_id = 0;
49  protected string $title = "";
56  protected array $roles = [];
63  protected string $description = '';
70  protected int $tableview_order = 0;
74  protected array $visible_fields_cache = [];
75 
80  public static function returnDbTableName(): string
81  {
82  return "il_dcl_tableview";
83  }
84 
85  public function getId(): ?int
86  {
87  return $this->id;
88  }
89 
90  public function setId(int $id): void
91  {
92  $this->id = $id;
93  }
94 
95  public function getTableId(): int
96  {
97  return $this->table_id;
98  }
99 
100  public function setTableId(int $table_id): void
101  {
102  $this->table_id = $table_id;
103  }
104 
105  public function getTitle(): string
106  {
107  return $this->title;
108  }
109 
110  public function setTitle(string $title): void
111  {
112  $this->title = $title;
113  }
114 
115  public function getOrder(): int
116  {
117  return $this->tableview_order;
118  }
119 
120  public function setOrder(int $order): void
121  {
122  $this->tableview_order = $order;
123  }
124 
125  public function getDescription(): string
126  {
127  return $this->description;
128  }
129 
130  public function setDescription(string $description): void
131  {
132  $this->description = $description;
133  }
134 
135  public function getTableviewOrder(): int
136  {
137  return $this->tableview_order;
138  }
139 
140  public function setTableviewOrder(int $tableview_order): void
141  {
142  $this->tableview_order = $tableview_order;
143  }
144 
145  public function getRoles(): array
146  {
147  return $this->roles;
148  }
149 
150  public function setRoles(array $roles): void
151  {
152  $this->roles = $roles;
153  }
154 
158  public function sleep($field_name): ?string
159  {
160  if ($field_name == 'roles') {
161  return json_encode($this->roles);
162  }
163 
164  return null;
165  }
166 
171  public function wakeUp($field_name, $field_value): ?array
172  {
173  if ($field_name == 'roles') {
174  return json_decode($field_value);
175  }
176 
177  return null;
178  }
179 
180  public function delete(): void
181  {
182  //Delete settings
183  foreach ($this->getFieldSettings() as $setting) {
184  $setting->delete();
185  }
186  parent::delete();
187  }
188 
189  public function getTable(): ilDclTable
190  {
191  return ilDclCache::getTableCache($this->table_id);
192  }
193 
197  public static function findOrGetInstance($primary_key, array $add_constructor_args = []): ActiveRecord
198  {
199  return parent::findOrGetInstance($primary_key, $add_constructor_args);
200  }
201 
207  public function getFilterableFieldSettings(): array
208  {
210  [
211  "tableview_id" => $this->id,
212  'in_filter' => 1,
213  'il_dcl_tfield_set.table_id' => $this->getTableId(),
214  ]
215  )->innerjoin('il_dcl_tfield_set', 'field', 'field', [])
216  ->orderBy('il_dcl_tfield_set.field_order')
217  ->get();
218  }
219 
224  public function getVisibleFields(): array
225  {
226  if (!$this->visible_fields_cache) {
228  [
229  "tableview_id" => $this->id,
230  'visible' => true,
231  'il_dcl_tfield_set.table_id' => $this->getTableId(),
232  ]
233  )->innerjoin(
234  'il_dcl_tfield_set',
235  'field',
236  'field',
237  []
238  )->orderBy('il_dcl_tfield_set.field_order')->get();
239  $fields = [];
240  foreach ($visible as $field_rec) {
241  $fields[] = $field_rec->getFieldObject();
242  }
243  $this->visible_fields_cache = $fields;
244  }
245 
247  }
248 
253  public function getFieldSettings(): array
254  {
256  [
257  'tableview_id' => $this->getId(),
258  'il_dcl_tfield_set.table_id' => $this->getTableId(),
259  ]
260  )->innerjoin('il_dcl_tfield_set', 'field', 'field', [])->orderBy('il_dcl_tfield_set.field_order')->get();
261 
262  $result = [];
263  foreach ($settings as $setting) {
264  $datatype = $setting->getFieldObject()->getDatatypeId();
265  if ($datatype === null || in_array($datatype, array_keys(ilDclDatatype::getAllDatatype()))) {
266  $result[] = $setting;
267  }
268  }
269 
270  return $result;
271  }
272 
277  public function getFieldSetting($field_id): ActiveRecord
278  {
280  'tableview_id' => $this->getId(),
281  'field' => $field_id
282  ])->first();
283  }
284 
285  public function create(bool $create_default_settings = true): void
286  {
287  parent::create();
288  if ($create_default_settings) {
289  $this->createDefaultSettings();
290  }
291  }
292 
296  public function createDefaultSettings(): void
297  {
298  $table = ilDclCache::getTableCache($this->table_id);
299 
300  foreach ($table->getFieldIds() as $field_id) {
301  $this->createFieldSetting($field_id);
302  }
303 
304  //ilDclTable->getFieldIds won't reuturn comments if they are disabled,
305  //still we have to create a fieldsetting for this field
306  if (!$table->getPublicCommentsEnabled()) {
307  $this->createFieldSetting('comments');
308  }
309  }
310 
315  public function createFieldSetting($field_id): void
316  {
318  [
319  'tableview_id' => $this->id,
320  'field' => $field_id,
321  ]
322  )->get()
323  ) {
324  $field_set = new ilDclTableViewFieldSetting();
325  $field_set->setTableviewId($this->id);
326  $field_set->setField($field_id);
327  $field_set->setVisible(!ilDclStandardField::_isStandardField($field_id));
328  $field_set->setFilterChangeable(true);
329  $field_set->setLockedCreate(false);
330  $field_set->setLockedEdit(false);
331  $field_set->setRequiredCreate(false);
332  $field_set->setRequiredEdit(false);
333  $field_set->setVisibleCreate(true);
334  $field_set->setVisibleEdit(true);
335  $field_set->create();
336  }
337  }
338 
343  public function cloneStructure(ilDclTableView $orig, array $new_fields): void
344  {
345  global $DIC;
346  //clone structure
347  $this->setTitle($orig->getTitle() . ' ' . $DIC->language()->txt('copy_of_suffix'));
348  $this->setOrder($orig->getOrder());
349  $this->setDescription($orig->getDescription());
350  $this->setRoles($orig->getRoles());
351  $this->create(false); //create default setting, adjust them later
352 
353  //clone default values
355 
356  //clone fieldsettings
357  foreach ($orig->getFieldSettings() as $orig_fieldsetting) {
358  $new_fieldsetting = new ilDclTableViewFieldSetting();
359  $new_fieldsetting->setTableviewId($this->getId());
360  if ($new_fields[$orig_fieldsetting->getField()] ?? null) {
361  //normal fields
362  $new_fieldsetting->setField($new_fields[$orig_fieldsetting->getField()]->getId());
363  } else {
364  //standard fields
365  $new_fieldsetting->setField($orig_fieldsetting->getField());
366  }
367  $new_field_id = $new_fieldsetting->cloneStructure($orig_fieldsetting);
368 
369  //clone default value
370  $datatype = $orig_fieldsetting->getFieldObject()->getDatatypeId();
371  $match = ilDclTableViewBaseDefaultValue::findSingle($datatype, $orig_fieldsetting->getId());
372 
373  if (!is_null($match)) {
374  $new_default_value = $f->create($datatype);
375  $new_default_value->setTviewSetId($new_field_id);
376  $new_default_value->setValue($match->getValue());
377  $new_default_value->create();
378  }
379  }
380  $this->createFieldSetting('comments');
381 
382  //clone pageobject
384  $orig_pageobject = new ilDclDetailedViewDefinition($orig->getId());
385  $orig_pageobject->copy($this->getId());
386  }
387 
388  // mandatory for all cloning functions
390  }
391 
395  public static function getAllForTableId(int $table_id): array
396  {
397  return self::where(['table_id' => $table_id])->orderBy('title')->get();
398  }
399 
400  public static function getCountForTableId(int $table_id): int
401  {
402  return self::where(['table_id' => $table_id])->orderBy('tableview_order')->count();
403  }
404 
409  public static function createOrGetStandardView(int $table_id): ActiveRecord
410  {
411  if ($standardview = self::where(['table_id' => $table_id])->orderBy('tableview_order')->first()) {
412  return $standardview;
413  }
414 
415  global $DIC;
416  $rbacreview = $DIC['rbacreview'];
417  $http = $DIC->http();
418  $refinery = $DIC->refinery();
419 
420  $roles = [];
421 
422  $ref_id = $http->wrapper()->query()->retrieve('ref_id', $refinery->kindlyTo()->int());
423  foreach ($rbacreview->getParentRoleIds($ref_id) as $role_array) {
424  $roles[] = $role_array['obj_id'];
425  }
426 
427  $view = new self();
428 
429  $hasRefId = $http->wrapper()->query()->has('ref_id');
430 
431  if ($hasRefId) {
432  global $DIC;
433  $rbacreview = $DIC['rbacreview'];
434 
435  $ref_id = $http->wrapper()->query()->retrieve('ref_id', $refinery->kindlyTo()->int());
436 
437  $roles = [];
438  foreach ($rbacreview->getParentRoleIds($ref_id) as $role_array) {
439  $roles[] = $role_array['obj_id'];
440  }
441  $view->setRoles(array_merge($roles, $rbacreview->getLocalRoles($ref_id)));
442  }
443  $view->setTableId($table_id);
444  // bugfix mantis 0023307
445  $lng = $DIC['lng'];
446  $view->setTitle($lng->txt('dcl_title_standardview'));
447  $view->setTableviewOrder(10);
448  $view->create();
449 
450  return $view;
451  }
452 }
static createOrGetStandardView(int $table_id)
cloneStructure(ilDclTableView $orig, array $new_fields)
createFieldSetting($field_id)
create ilDclTableViewFieldSetting for this tableview and the given field id
wakeUp($field_name, $field_value)
static findOrGetInstance($primary_key, array $add_constructor_args=[])
setTitle(string $title)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static orderBy(string $orderBy, string $orderDirection='ASC')
getFilterableFieldSettings()
getFilterableFields Returns all fieldsetting-objects of this tableview which have set their filterabl...
const TYPE_TABLEVIEW
$http
Definition: deliver.php:30
static where($where, $operator=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDescription(string $description)
$ref_id
Definition: ltiauth.php:65
static getAllDatatype(bool $force=false)
Get all possible Datatypes.
createDefaultSettings()
create default ilDclTableViewFieldSetting entries
global $DIC
Definition: shib_login.php:22
static getCountForTableId(int $table_id)
static getTableCache(?int $table_id=null)
static setCloneOf(int $old, int $new, string $type)
static _isStandardField($field_id)
setRoles(array $roles)
create(bool $create_default_settings=true)
global $lng
Definition: privfeed.php:31
copy(int $a_id, string $a_parent_type="", int $a_new_parent_id=0, bool $a_clone_mobs=false, int $obj_copy_id=0, bool $overwrite_existing=true)
Copy page.
getVisibleFields()
Returns all field-objects of this tableview which have set their visibility to true, including standard fields.
static getAllForTableId(int $table_id)
setTableId(int $table_id)
setTableviewOrder(int $tableview_order)