3 declare(strict_types=1);
45 ?
int $current_style_id,
50 $this->main_tpl = $DIC->ui()->mainTemplate();
51 $this->domain = $domain_service;
52 $this->gui = $gui_service;
54 $this->obj_id = ($obj_id > 0)
58 $this->object_manager = $domain_service->
object($ref_id, $this->obj_id);
59 $this->current_style_id = $current_style_id ?? $this->object_manager->getStyleId();
64 $ctrl = $this->gui->ctrl();
66 $next_class = $ctrl->getNextClass($this);
67 $cmd = $ctrl->getCmd(
"settings");
69 switch ($next_class) {
71 case "ilobjstylesheetgui":
72 $this->gui->tabs()->clearTargets();
73 $ctrl->setReturn($this,
"settings");
85 "saveIndividualStyleSettings" 94 $mt = $this->gui->mainTemplate();
106 $ilCtrl = $this->gui->ctrl();
107 $lng = $this->domain->lng();
108 $tabs = $this->gui->tabs();
110 $mt = $this->gui->mainTemplate();
124 $lng->loadLanguageModule(
"style");
127 if ($this->object_manager->globalFixed()) {
129 $st->
setValue($this->object_manager->getGlobalFixedTitle() .
" (" .
130 $lng->txt(
"global_fixed") .
")");
133 $st_styles = $this->object_manager->getSelectableStyles();
135 $st_styles[0] =
$lng->txt(
"default");
139 if ($this->object_manager->hasEffectiveIndividualStyle($style_id)) {
146 $cb->
setInfo(
$lng->txt(
"style_support_reuse_info"));
147 $cb->setChecked($this->container_manager->getReuse());
149 $form->addCommandButton(
150 "saveIndividualStyleSettings",
155 $form->addCommandButton(
157 $lng->txt(
"style_edit_style")
159 $form->addCommandButton(
161 $lng->txt(
"style_delete_style")
165 if ($this->object_manager->canSelectStyle($style_id)) {
167 $lng->txt(
"style_current_style"),
170 $style_sel->setOptions($st_styles);
171 $style_sel->setValue($style_id);
172 $form->addItem($style_sel);
173 $form->addCommandButton(
177 $form->addCommandButton(
179 $lng->txt(
"sty_create_ind_style")
183 $form->setTitle(
$lng->txt(
"obj_sty"));
184 $form->setFormAction($ilCtrl->getFormAction($this));
191 if ($this->ref_id > 0) {
193 if ($this->domain->objectDefinition()->isContainer(
$type)) {
202 $ctrl = $this->gui->ctrl();
203 $cmd = $ctrl->getCmd();
207 $this->current_style_id,
210 $style_id = $ctrl->forwardCommand($style_gui);
211 if (in_array($cmd, [
"save",
"copyStyle",
"importStyle",
"confirmedDelete"])) {
212 $style_id = $style_gui->getObject()->getId();
213 if ($cmd ==
"confirmedDelete") {
219 $ctrl->redirect($this,
"settings");
225 $this->object_manager->updateStyleId($style_id);
230 $this->object_manager->setOwnerOfStyle($style_id);
235 $ctrl = $this->gui->ctrl();
236 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"create");
241 $ctrl = $this->gui->ctrl();
242 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
247 $ctrl = $this->gui->ctrl();
248 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"delete");
257 $lng = $this->domain->lng();
258 $ctrl = $this->gui->ctrl();
262 if ($this->object_manager->canSelectStyle($this->current_style_id)) {
263 $style_id = (
int) $form->getInput(
"style_id");
265 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"msg_obj_modified"),
true);
267 $ctrl->redirect($this,
"settings");
272 $lng = $this->domain->lng();
273 $ctrl = $this->gui->ctrl();
278 $this->container_manager->saveReuse((
bool) $form->getInput(
"support_reuse"));
279 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"msg_obj_modified"),
true);
281 $ctrl->redirect($this,
"settings");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
repositoryContainer(int $ref_id)
Content style internal ui factory.
updateStyleId(int $style_id)
saveStyleSettings()
Save style settings.
__construct(InternalDomainService $domain_service, InternalGUIService $gui_service, ?int $current_style_id, int $ref_id, int $obj_id)
saveIndividualStyleSettings()
Manages repository object related content style behaviour.
ilGlobalTemplateInterface $main_tpl
static _lookupObjId(int $ref_id)
object(int $ref_id, int $obj_id=0)
Objects without ref id (e.g.
ContainerManager $container_manager
InternalDomainService $domain
static _lookupTitle(int $obj_id)
setOwnerId(int $style_id)
initStylePropertiesForm()
Init style properties form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
ObjectManager $object_manager
Manages container related content style behaviour.