19 declare(strict_types=1);
33 protected \ILIAS\DI\Container
$DIC;
34 protected \ilLanguage
$lng;
44 $this->positionRepo =
$dic[
"repo.Positions"];
46 $this->parent_gui = $parent_gui;
47 $this->
object = $object;
48 $this->
lng = $DIC->language();
49 $this->
ctrl = $DIC->ctrl();
51 $action_cmd = $object->
getId() > 0 ? BaseCommands::CMD_UPDATE : BaseCommands::CMD_CREATE;
52 $form_action = $parent_gui->getSinglePosLinkTarget($action_cmd, $object->
getId());
65 $lng = $DIC->language();
68 $te->setRequired(
true);
76 $m->setRenderOneForEmptyValue(
false);
86 $over_options += $this->positionRepo->getArray(
'id',
'title');
90 $available_scopes = [];
92 $txt = $lng->txt(
'scope_' . $scope);
97 $scopes->setOptions($available_scopes);
105 if (!$this->
object->getId()) {
119 self::F_TITLE => $this->
object->getTitle(),
120 self::F_DESCRIPTION => $this->
object->getDescription(),
121 self::F_AUTHORITIES => $this->
object->getAuthoritiesAsArray()
126 public function fillObject():
bool 132 $authorities = ($this->
getInput(self::F_AUTHORITIES) !=
'')
133 ? (array) $this->
getInput(self::F_AUTHORITIES)
136 if (count($authorities) == 0) {
137 $this->
object = $this->
object 138 ->withTitle($this->
getInput(self::F_TITLE))
139 ->withDescription($this->
getInput(self::F_DESCRIPTION))
140 ->withAuthorities([]);
147 $new_authorities = [];
148 foreach ($authorities as $authority) {
149 $id = ($authority[
"id"] ==
'') ?
null : (
int) $authority[
"id"];
151 $new_authorities[] = $this->positionRepo->getAuthority(
$id)
152 ->withPositionId($this->
object->getId())
153 ->withScope((
int) $authority[
"scope"])
154 ->withOver((
int) $authority[
"over"]);
156 $this->
object = $this->
object 157 ->withTitle($this->
getInput(self::F_TITLE))
158 ->withDescription($this->
getInput(self::F_DESCRIPTION))
159 ->withAuthorities($new_authorities);
165 if ($this->fillObject() ===
false) {
169 $this->
object = $this->positionRepo->store($this->
object);
173 private function txt(
string $key): string
175 return $this->
lng->txt($key);
180 return $this->
lng->txt($key .
'_info');
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.