ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilDclTableViewFieldSetting Class Reference
+ Inheritance diagram for ilDclTableViewFieldSetting:
+ Collaboration diagram for ilDclTableViewFieldSetting:

Public Member Functions

 getTableviewId ()
 
 setTableviewId (int $tableview_id)
 
 getField ()
 
 setField (string $field)
 
 isVisibleInList ()
 
 setVisible (bool $visible)
 
 isInFilter ()
 
 setInFilter (bool $in_filter)
 
 getFilterValue ()
 
 setFilterValue ($filter_value)
 
 isFilterChangeable ()
 
 setFilterChangeable (bool $filter_changeable)
 
 getId ()
 
 setId (int $id)
 
 isRequiredCreate ()
 
 setRequiredCreate (bool $required_create)
 
 isLockedCreate ()
 
 setLockedCreate (bool $locked_create)
 
 isRequiredEdit ()
 
 setRequiredEdit (bool $required_edit)
 
 isLockedEdit ()
 
 setLockedEdit (bool $locked_edit)
 
 getDefaultValue ()
 
 setDefaultValue (?string $default_value)
 
 isVisibleCreate ()
 
 setVisibleCreate (bool $visible_create)
 
 setNotVisibleCreate (bool $not_visible_create)
 
 isNotVisibleCreate ()
 
 isVisibleEdit ()
 
 setVisibleEdit (bool $visible_edit)
 
 setNotVisibleEdit (bool $not_visible)
 
 isNotVisibleEdit ()
 
 isVisibleInForm (bool $creation_mode)
 
 isLocked (bool $creation_mode)
 
 isRequired (bool $creation_mode)
 
 sleep ($field_name)
 
 wakeUp ($field_name, $field_value)
 
 cloneStructure (ilDclTableViewFieldSetting $orig)
 
 getFieldObject ()
 
- Public Member Functions inherited from ActiveRecord
 getArConnector ()
 
 getArFieldList ()
 
 getConnectorContainerName ()
 Return the Name of your Connector Table More...
 
 setConnectorContainerName (string $connector_container_name)
 
 getPrimaryFieldValue ()
 
 setPrimaryFieldValue ($value)
 
 __construct (mixed $primary_key=0)
 
 storeObjectToCache ()
 
 asStdClass ()
 
 asArray ()
 
 buildFromArray (array $array)
 
 fixDateField ($field_name, $value)
 
 sleep ($field_name)
 
 wakeUp ($field_name, $field_value)
 
 getArrayForConnector ()
 
 installConnector ()
 
 store ()
 
 save ()
 
 create ()
 
 copy (int $new_id=0)
 
 afterObjectLoad ()
 
 read ()
 
 update ()
 
 delete ()
 
 __call ($name, $arguments)
 

Static Public Member Functions

static returnDbTableName ()
 
static getTableViewFieldSetting (string $id, int $tableview_id)
 
static getInstance (int $tableview_id, int $field_id)
 
- Static Public Member Functions inherited from ActiveRecord
static returnDbTableName ()
 
static installDB ()
 
static renameDBField (string $old_name, string $new_name)
 
static tableExists ()
 
static fieldExists (string $field_name)
 
static removeDBField (string $field_name)
 
static updateDB ()
 
static resetDB ()
 
static truncateDB ()
 
static flushDB ()
 never use in ILIAS Core, Plugins only More...
 
static preloadObjects ()
 
static additionalParams (array $additional_params)
 
static findOrFail ($primary_key, array $add_constructor_args=[])
 Tries to find the object and throws an Exception if object is not found, instead of returning null. More...
 
static findOrGetInstance ($primary_key, array $add_constructor_args=[])
 
static where ($where, $operator=null)
 
static innerjoinAR (ActiveRecord $activeRecord, $on_this, $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static innerjoin ( $tablename, $on_this, $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static leftjoin ( $tablename, $on_this, $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static orderBy (string $orderBy, string $orderDirection='ASC')
 
static dateFormat (string $date_format='d.m.Y - H:i:s')
 
static limit (int $start, int $end)
 
static affectedRows ()
 
static count ()
 
static get ()
 
static debug ()
 
static first ()
 
static getCollection ()
 
static last ()
 
static getFirstFromLastQuery ()
 
static connector (arConnector $arConnector)
 
static raw (bool $set_raw=true)
 
static getArray (?string $key=null, $values=null)
 
static _toCamelCase (string $str, bool $capitalise_first_char=false)
 

Protected Attributes

int $id
 
int $tableview_id
 
string $field = ""
 
bool $visible = false
 
bool $in_filter = false
 
 $filter_value = ""
 
bool $filter_changeable = false
 
bool $required_create = false
 
bool $locked_create = false
 
string $default_value = null
 
bool $visible_create = false
 
bool $visible_edit = false
 
bool $required_edit = false
 
bool $locked_edit = false
 
- Protected Attributes inherited from ActiveRecord
bool $ar_safe_read = true
 
string $connector_container_name = ''
 
bool $is_new = true
 

Additional Inherited Members

- Protected Member Functions inherited from ActiveRecord
 installDatabase ()
 
- Static Protected Member Functions inherited from ActiveRecord
static getCalledClass ()
 Returns an instance of the instatiated calling active record (needs to be done in static methods) : This should be cached somehow More...
 
static fromCamelCase (string $str)
 

Detailed Description

Definition at line 22 of file class.ilDclTableViewFieldSetting.php.

Member Function Documentation

◆ cloneStructure()

ilDclTableViewFieldSetting::cloneStructure ( ilDclTableViewFieldSetting  $orig)

Definition at line 349 of file class.ilDclTableViewFieldSetting.php.

References $filter_value, ActiveRecord\create(), getField(), getFilterValue(), getId(), isFilterChangeable(), isInFilter(), isLockedCreate(), isLockedEdit(), isRequiredCreate(), isRequiredEdit(), isVisibleCreate(), isVisibleEdit(), isVisibleInList(), setFilterChangeable(), setFilterValue(), setInFilter(), setLockedCreate(), setLockedEdit(), setRequiredCreate(), setRequiredEdit(), setVisible(), setVisibleCreate(), and setVisibleEdit().

349  : int
350  {
351  $this->setFilterChangeable($orig->isFilterChangeable());
352  $this->setInFilter($orig->isInFilter());
353  $this->setVisibleCreate($orig->isVisibleCreate());
354  $this->setVisibleEdit($orig->isVisibleEdit());
355  $this->setLockedCreate($orig->isLockedCreate());
356  $this->setLockedEdit($orig->isLockedEdit());
357  $this->setRequiredCreate($orig->isRequiredCreate());
358  $this->setRequiredEdit($orig->isRequiredEdit());
359  $filter_value = $orig->getFilterValue();
360  $this->setFilterValue($filter_value['filter_' . $orig->getField()] ?? $filter_value);
361  $this->setVisible($orig->isVisibleInList());
362  $this->create();
363  return $this->getId();
364  }
+ Here is the call graph for this function:

◆ getDefaultValue()

ilDclTableViewFieldSetting::getDefaultValue ( )

Definition at line 253 of file class.ilDclTableViewFieldSetting.php.

References $default_value.

Referenced by ilDclCreateViewTableGUI\getHTML().

253  : ?string
254  {
255  return $this->default_value;
256  }
+ Here is the caller graph for this function:

◆ getField()

ilDclTableViewFieldSetting::getField ( )

Definition at line 150 of file class.ilDclTableViewFieldSetting.php.

References $field.

Referenced by cloneStructure(), ilDclCreateViewTableGUI\getHTML(), and wakeUp().

150  : string
151  {
152  return $this->field;
153  }
+ Here is the caller graph for this function:

◆ getFieldObject()

ilDclTableViewFieldSetting::getFieldObject ( )
Returns
ilDclBaseFieldModel|ilDclStandardField

Definition at line 369 of file class.ilDclTableViewFieldSetting.php.

References $DIC, $lng, ilDclStandardField\_getDatatypeForId(), and ilDclCache\getFieldCache().

Referenced by ilDclCreateViewTableGUI\getHTML().

370  {
371  if (is_numeric($this->field)) { //normal field
372  return ilDclCache::getFieldCache((int) $this->field);
373  } else { //standard field
374  global $DIC;
375  $lng = $DIC['lng'];
376  $stdfield = new ilDclStandardField();
377  $stdfield->setId($this->field);
378  $stdfield->setDatatypeId(ilDclStandardField::_getDatatypeForId($this->field));
379  $stdfield->setTitle($lng->txt('dcl_' . $this->field));
380 
381  return $stdfield;
382  }
383  }
static getFieldCache(int $field_id=0)
static _getDatatypeForId(string $id)
gives you the datatype id of a specified standard field.
global $DIC
Definition: feed.php:28
$lng
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFilterValue()

ilDclTableViewFieldSetting::getFilterValue ( )

Definition at line 183 of file class.ilDclTableViewFieldSetting.php.

References $filter_value.

Referenced by cloneStructure().

+ Here is the caller graph for this function:

◆ getId()

ilDclTableViewFieldSetting::getId ( )

Definition at line 203 of file class.ilDclTableViewFieldSetting.php.

References $id.

Referenced by cloneStructure(), and ilDclCreateViewTableGUI\getHTML().

203  : int
204  {
205  return $this->id;
206  }
+ Here is the caller graph for this function:

◆ getInstance()

static ilDclTableViewFieldSetting::getInstance ( int  $tableview_id,
int  $field_id 
)
static
Parameters
$tableview_id
$field_id
Returns
ActiveRecord|self

Definition at line 400 of file class.ilDclTableViewFieldSetting.php.

References ActiveRecord\first().

Referenced by ilDataCollectionDataSet\getXmlNamespace().

400  : ActiveRecord
401  {
402  if (!($setting = self::where(['field' => $field_id, 'tableview_id' => $tableview_id])->first())) {
403  $setting = new self();
404  $setting->setField((string) $field_id);
405  $setting->setTableviewId($tableview_id);
406  }
407  return $setting;
408  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTableViewFieldSetting()

static ilDclTableViewFieldSetting::getTableViewFieldSetting ( string  $id,
int  $tableview_id 
)
static
Returns
ActiveRecord|self

Definition at line 388 of file class.ilDclTableViewFieldSetting.php.

References ActiveRecord\first().

Referenced by ilDclBaseFieldModel\getViewSetting().

388  : ActiveRecord
389  {
390  return parent::where(['field' => $id,
391  'tableview_id' => $tableview_id
392  ])->first();
393  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTableviewId()

ilDclTableViewFieldSetting::getTableviewId ( )

Definition at line 140 of file class.ilDclTableViewFieldSetting.php.

References $tableview_id.

140  : int
141  {
142  return $this->tableview_id;
143  }

◆ isFilterChangeable()

ilDclTableViewFieldSetting::isFilterChangeable ( )

Definition at line 193 of file class.ilDclTableViewFieldSetting.php.

References $filter_changeable.

Referenced by cloneStructure().

193  : bool
194  {
196  }
+ Here is the caller graph for this function:

◆ isInFilter()

ilDclTableViewFieldSetting::isInFilter ( )

Definition at line 173 of file class.ilDclTableViewFieldSetting.php.

References $in_filter.

Referenced by cloneStructure().

173  : bool
174  {
175  return $this->in_filter;
176  }
+ Here is the caller graph for this function:

◆ isLocked()

ilDclTableViewFieldSetting::isLocked ( bool  $creation_mode)

Definition at line 308 of file class.ilDclTableViewFieldSetting.php.

References isLockedCreate(), and isLockedEdit().

308  : bool
309  {
310  return $creation_mode ? $this->isLockedCreate() : $this->isLockedEdit();
311  }
+ Here is the call graph for this function:

◆ isLockedCreate()

ilDclTableViewFieldSetting::isLockedCreate ( )

Definition at line 223 of file class.ilDclTableViewFieldSetting.php.

References $locked_create.

Referenced by cloneStructure(), ilDclCreateViewTableGUI\getHTML(), and isLocked().

223  : bool
224  {
225  return $this->locked_create;
226  }
+ Here is the caller graph for this function:

◆ isLockedEdit()

ilDclTableViewFieldSetting::isLockedEdit ( )

Definition at line 243 of file class.ilDclTableViewFieldSetting.php.

References $locked_edit.

Referenced by cloneStructure(), and isLocked().

243  : bool
244  {
245  return $this->locked_edit;
246  }
+ Here is the caller graph for this function:

◆ isNotVisibleCreate()

ilDclTableViewFieldSetting::isNotVisibleCreate ( )

Definition at line 278 of file class.ilDclTableViewFieldSetting.php.

References $visible_create.

278  : bool
279  {
280  return !$this->visible_create;
281  }

◆ isNotVisibleEdit()

ilDclTableViewFieldSetting::isNotVisibleEdit ( )

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

References $visible_edit.

298  : bool
299  {
300  return !$this->visible_edit;
301  }

◆ isRequired()

ilDclTableViewFieldSetting::isRequired ( bool  $creation_mode)

Definition at line 313 of file class.ilDclTableViewFieldSetting.php.

References isRequiredCreate(), and isRequiredEdit().

313  : bool
314  {
315  return $creation_mode ? $this->isRequiredCreate() : $this->isRequiredEdit();
316  }
+ Here is the call graph for this function:

◆ isRequiredCreate()

ilDclTableViewFieldSetting::isRequiredCreate ( )

Definition at line 213 of file class.ilDclTableViewFieldSetting.php.

References $required_create.

Referenced by cloneStructure(), ilDclCreateViewTableGUI\getHTML(), and isRequired().

213  : bool
214  {
215  return $this->required_create;
216  }
+ Here is the caller graph for this function:

◆ isRequiredEdit()

ilDclTableViewFieldSetting::isRequiredEdit ( )

Definition at line 233 of file class.ilDclTableViewFieldSetting.php.

References $required_edit.

Referenced by cloneStructure(), and isRequired().

233  : bool
234  {
235  return $this->required_edit;
236  }
+ Here is the caller graph for this function:

◆ isVisibleCreate()

ilDclTableViewFieldSetting::isVisibleCreate ( )

Definition at line 263 of file class.ilDclTableViewFieldSetting.php.

References $visible_create.

Referenced by cloneStructure(), ilDclCreateViewTableGUI\getHTML(), and isVisibleInForm().

263  : bool
264  {
265  return $this->visible_create;
266  }
+ Here is the caller graph for this function:

◆ isVisibleEdit()

ilDclTableViewFieldSetting::isVisibleEdit ( )

Definition at line 283 of file class.ilDclTableViewFieldSetting.php.

References $visible_edit.

Referenced by cloneStructure(), and isVisibleInForm().

283  : bool
284  {
285  return $this->visible_edit;
286  }
+ Here is the caller graph for this function:

◆ isVisibleInForm()

ilDclTableViewFieldSetting::isVisibleInForm ( bool  $creation_mode)

Definition at line 303 of file class.ilDclTableViewFieldSetting.php.

References isVisibleCreate(), and isVisibleEdit().

303  : bool
304  {
305  return $creation_mode ? $this->isVisibleCreate() : $this->isVisibleEdit();
306  }
+ Here is the call graph for this function:

◆ isVisibleInList()

ilDclTableViewFieldSetting::isVisibleInList ( )

Definition at line 163 of file class.ilDclTableViewFieldSetting.php.

References $visible.

Referenced by cloneStructure().

163  : bool
164  {
165  return $this->visible;
166  }
+ Here is the caller graph for this function:

◆ returnDbTableName()

static ilDclTableViewFieldSetting::returnDbTableName ( )
static
Returns
string Return the Name of your Database Table

Definition at line 135 of file class.ilDclTableViewFieldSetting.php.

135  : string
136  {
137  return "il_dcl_tview_set";
138  }

◆ setDefaultValue()

ilDclTableViewFieldSetting::setDefaultValue ( ?string  $default_value)

Definition at line 258 of file class.ilDclTableViewFieldSetting.php.

References $default_value.

258  : void
259  {
260  $this->default_value = $default_value;
261  }

◆ setField()

ilDclTableViewFieldSetting::setField ( string  $field)
Parameters
$field

Definition at line 158 of file class.ilDclTableViewFieldSetting.php.

References $field.

158  : void
159  {
160  $this->field = $field;
161  }

◆ setFilterChangeable()

ilDclTableViewFieldSetting::setFilterChangeable ( bool  $filter_changeable)

Definition at line 198 of file class.ilDclTableViewFieldSetting.php.

References $filter_changeable.

Referenced by cloneStructure().

198  : void
199  {
200  $this->filter_changeable = $filter_changeable;
201  }
+ Here is the caller graph for this function:

◆ setFilterValue()

ilDclTableViewFieldSetting::setFilterValue (   $filter_value)

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

References $filter_value.

Referenced by cloneStructure().

188  : void
189  {
190  $this->filter_value = $filter_value;
191  }
+ Here is the caller graph for this function:

◆ setId()

ilDclTableViewFieldSetting::setId ( int  $id)

Definition at line 208 of file class.ilDclTableViewFieldSetting.php.

References $id.

208  : void
209  {
210  $this->id = $id;
211  }

◆ setInFilter()

ilDclTableViewFieldSetting::setInFilter ( bool  $in_filter)

Definition at line 178 of file class.ilDclTableViewFieldSetting.php.

References $in_filter.

Referenced by cloneStructure().

178  : void
179  {
180  $this->in_filter = $in_filter;
181  }
+ Here is the caller graph for this function:

◆ setLockedCreate()

ilDclTableViewFieldSetting::setLockedCreate ( bool  $locked_create)

Definition at line 228 of file class.ilDclTableViewFieldSetting.php.

References $locked_create.

Referenced by cloneStructure().

228  : void
229  {
230  $this->locked_create = $locked_create;
231  }
+ Here is the caller graph for this function:

◆ setLockedEdit()

ilDclTableViewFieldSetting::setLockedEdit ( bool  $locked_edit)

Definition at line 248 of file class.ilDclTableViewFieldSetting.php.

References $locked_edit.

Referenced by cloneStructure().

248  : void
249  {
250  $this->locked_edit = $locked_edit;
251  }
+ Here is the caller graph for this function:

◆ setNotVisibleCreate()

ilDclTableViewFieldSetting::setNotVisibleCreate ( bool  $not_visible_create)

Definition at line 273 of file class.ilDclTableViewFieldSetting.php.

273  : void
274  {
275  $this->visible_create = !$not_visible_create;
276  }

◆ setNotVisibleEdit()

ilDclTableViewFieldSetting::setNotVisibleEdit ( bool  $not_visible)

Definition at line 293 of file class.ilDclTableViewFieldSetting.php.

293  : void
294  {
295  $this->visible_edit = !$not_visible;
296  }

◆ setRequiredCreate()

ilDclTableViewFieldSetting::setRequiredCreate ( bool  $required_create)

Definition at line 218 of file class.ilDclTableViewFieldSetting.php.

References $required_create.

Referenced by cloneStructure().

218  : void
219  {
220  $this->required_create = $required_create;
221  }
+ Here is the caller graph for this function:

◆ setRequiredEdit()

ilDclTableViewFieldSetting::setRequiredEdit ( bool  $required_edit)

Definition at line 238 of file class.ilDclTableViewFieldSetting.php.

References $required_edit.

Referenced by cloneStructure().

238  : void
239  {
240  $this->required_edit = $required_edit;
241  }
+ Here is the caller graph for this function:

◆ setTableviewId()

ilDclTableViewFieldSetting::setTableviewId ( int  $tableview_id)

Definition at line 145 of file class.ilDclTableViewFieldSetting.php.

References $tableview_id.

145  : void
146  {
147  $this->tableview_id = $tableview_id;
148  }

◆ setVisible()

ilDclTableViewFieldSetting::setVisible ( bool  $visible)

Definition at line 168 of file class.ilDclTableViewFieldSetting.php.

References $visible.

Referenced by cloneStructure().

168  : void
169  {
170  $this->visible = $visible;
171  }
+ Here is the caller graph for this function:

◆ setVisibleCreate()

ilDclTableViewFieldSetting::setVisibleCreate ( bool  $visible_create)

Definition at line 268 of file class.ilDclTableViewFieldSetting.php.

References $visible_create.

Referenced by cloneStructure().

268  : void
269  {
270  $this->visible_create = $visible_create;
271  }
+ Here is the caller graph for this function:

◆ setVisibleEdit()

ilDclTableViewFieldSetting::setVisibleEdit ( bool  $visible_edit)

Definition at line 288 of file class.ilDclTableViewFieldSetting.php.

References $visible_edit.

Referenced by cloneStructure().

288  : void
289  {
290  $this->visible_edit = $visible_edit;
291  }
+ Here is the caller graph for this function:

◆ sleep()

ilDclTableViewFieldSetting::sleep (   $field_name)

Definition at line 318 of file class.ilDclTableViewFieldSetting.php.

318  : ?string
319  {
320  if ($field_name == 'filter_value' && is_array($this->filter_value)) {
321  return json_encode($this->filter_value);
322  }
323 
324  return null;
325  }

◆ wakeUp()

ilDclTableViewFieldSetting::wakeUp (   $field_name,
  $field_value 
)

Definition at line 327 of file class.ilDclTableViewFieldSetting.php.

References ILIAS\LTI\ToolProvider\$key, and getField().

327  : ?array
328  {
329  if ($field_name == 'filter_value') {
330  $return = [];
331  $json = null;
332  if ($field_value) {
333  $json = json_decode($field_value, true);
334  }
335  if (is_array($json)) {
336  foreach ($json as $key => $value) {
337  $return['filter_' . $this->getField() . '_' . $key] = $value;
338  }
339  } else {
340  $return = ['filter_' . $this->getField() => $field_value];
341  }
342 
343  return $return;
344  }
345 
346  return null;
347  }
string $key
Consumer key/client ID value.
Definition: System.php:193
+ Here is the call graph for this function:

Field Documentation

◆ $default_value

string ilDclTableViewFieldSetting::$default_value = null
protected

Definition at line 99 of file class.ilDclTableViewFieldSetting.php.

Referenced by getDefaultValue(), and setDefaultValue().

◆ $field

string ilDclTableViewFieldSetting::$field = ""
protected

Definition at line 50 of file class.ilDclTableViewFieldSetting.php.

Referenced by getField(), and setField().

◆ $filter_changeable

bool ilDclTableViewFieldSetting::$filter_changeable = false
protected

Definition at line 78 of file class.ilDclTableViewFieldSetting.php.

Referenced by isFilterChangeable(), and setFilterChangeable().

◆ $filter_value

ilDclTableViewFieldSetting::$filter_value = ""
protected

◆ $id

int ilDclTableViewFieldSetting::$id
protected

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

Referenced by getId(), and setId().

◆ $in_filter

bool ilDclTableViewFieldSetting::$in_filter = false
protected

Definition at line 64 of file class.ilDclTableViewFieldSetting.php.

Referenced by isInFilter(), and setInFilter().

◆ $locked_create

bool ilDclTableViewFieldSetting::$locked_create = false
protected

Definition at line 92 of file class.ilDclTableViewFieldSetting.php.

Referenced by isLockedCreate(), and setLockedCreate().

◆ $locked_edit

bool ilDclTableViewFieldSetting::$locked_edit = false
protected

Definition at line 129 of file class.ilDclTableViewFieldSetting.php.

Referenced by isLockedEdit(), and setLockedEdit().

◆ $required_create

bool ilDclTableViewFieldSetting::$required_create = false
protected

Definition at line 85 of file class.ilDclTableViewFieldSetting.php.

Referenced by isRequiredCreate(), and setRequiredCreate().

◆ $required_edit

bool ilDclTableViewFieldSetting::$required_edit = false
protected

Definition at line 122 of file class.ilDclTableViewFieldSetting.php.

Referenced by isRequiredEdit(), and setRequiredEdit().

◆ $tableview_id

int ilDclTableViewFieldSetting::$tableview_id
protected

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

Referenced by getTableviewId(), and setTableviewId().

◆ $visible

bool ilDclTableViewFieldSetting::$visible = false
protected

Definition at line 57 of file class.ilDclTableViewFieldSetting.php.

Referenced by isVisibleInList(), and setVisible().

◆ $visible_create

bool ilDclTableViewFieldSetting::$visible_create = false
protected

◆ $visible_edit

bool ilDclTableViewFieldSetting::$visible_edit = false
protected

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