ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilItemGroupAR.php
Go to the documentation of this file.
1<?php
2
25{
26 public static function returnDbTableName(): string
27 {
28 return 'itgr_data';
29 }
30
42 protected ?int $id;
43
52 protected ?string $hide_title = '';
53
62 protected ?int $behaviour = 0;
63
72 protected ?string $list_presentation = "";
73
82 protected ?int $tile_size = 0;
83
84 public function getId(): int
85 {
86 return $this->id;
87 }
88
89 public function setId(int $id): void
90 {
91 $this->id = $id;
92 }
93
94 public function setHideTitle(bool $a_hide_title): void
95 {
96 $this->hide_title = $a_hide_title;
97 }
98
99 public function getHideTitle(): bool
100 {
101 return $this->hide_title;
102 }
103
104 public function setBehaviour(int $a_val): void
105 {
106 $this->behaviour = $a_val;
107 }
108
109 public function getBehaviour(): int
110 {
111 return $this->behaviour;
112 }
113
114 public function getListPresentation(): string
115 {
116 return (string) $this->list_presentation;
117 }
118
119 public function setListPresentation(string $a_val): void
120 {
121 $this->list_presentation = $a_val;
122 }
123
124 public function getTileSize(): int
125 {
126 return (int) $this->tile_size;
127 }
128
129 public function setTileSize(int $a_val): void
130 {
131 $this->tile_size = $a_val;
132 }
133}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTileSize(int $a_val)
setListPresentation(string $a_val)
setHideTitle(bool $a_hide_title)
setBehaviour(int $a_val)
static returnDbTableName()