19 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) {
70 case "ilobjstylesheetgui":
71 $this->gui->tabs()->clearTargets();
72 $ctrl->setReturn($this,
"settings");
84 "saveIndividualStyleSettings" 93 $mt = $this->gui->mainTemplate();
105 $ilCtrl = $this->gui->ctrl();
106 $lng = $this->domain->lng();
110 $lng->loadLanguageModule(
"style");
113 if ($this->object_manager->globalFixed()) {
115 $st->setValue($this->object_manager->getGlobalFixedTitle() .
" (" .
116 $lng->txt(
"global_fixed") .
")");
119 $st_styles = $this->object_manager->getSelectableStyles();
122 if ($this->object_manager->getGlobalDefaultTitle() !==
"") {
123 $default_title =
" (" . $this->object_manager->getGlobalDefaultTitle() .
")";
125 $st_styles[0] =
$lng->txt(
"default") . $default_title;
129 if ($this->object_manager->hasEffectiveIndividualStyle($style_id)) {
136 $cb->setInfo(
$lng->txt(
"style_support_reuse_info"));
137 $cb->setChecked($this->container_manager->getReuse());
139 $form->addCommandButton(
140 "saveIndividualStyleSettings",
145 $form->addCommandButton(
147 $lng->txt(
"style_edit_style")
149 $form->addCommandButton(
151 $lng->txt(
"style_delete_style")
155 if ($this->object_manager->canSelectStyle($style_id)) {
157 $lng->txt(
"style_current_style"),
161 $style_sel->setValue($style_id);
162 $form->addItem($style_sel);
163 $form->addCommandButton(
167 $form->addCommandButton(
169 $lng->txt(
"sty_create_ind_style")
173 $form->setTitle(
$lng->txt(
"obj_sty"));
174 $form->setFormAction($ilCtrl->getFormAction($this));
181 if ($this->ref_id > 0) {
183 if ($this->domain->objectDefinition()->isContainer($type)) {
192 $ctrl = $this->gui->ctrl();
193 $cmd = $ctrl->getCmd();
197 $this->current_style_id,
200 $style_id = $ctrl->forwardCommand($style_gui);
201 if (in_array($cmd, [
"save",
"copyStyle",
"importStyle",
"confirmedDelete"])) {
202 $style_id = $style_gui->getObject()->getId();
203 if ($cmd ==
"confirmedDelete") {
209 if (in_array($cmd, [
"save",
"copyStyle",
"importStyle"])) {
210 $ctrl->redirect($this,
"editStyle");
212 $ctrl->redirect($this,
"settings");
218 $this->object_manager->updateStyleId($style_id);
223 $this->object_manager->setOwnerOfStyle($style_id);
228 $ctrl = $this->gui->ctrl();
229 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"create");
234 $ctrl = $this->gui->ctrl();
235 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
240 $ctrl = $this->gui->ctrl();
241 $ctrl->redirectByClass(
"ilobjstylesheetgui",
"delete");
249 $settings = $this->domain->settings();
250 $lng = $this->domain->lng();
251 $ctrl = $this->gui->ctrl();
255 if ($this->object_manager->canSelectStyle($this->current_style_id)) {
256 $style_id = (
int) $form->getInput(
"style_id");
258 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"msg_obj_modified"),
true);
260 $ctrl->redirect($this,
"settings");
265 $lng = $this->domain->lng();
266 $ctrl = $this->gui->ctrl();
271 $this->container_manager->saveReuse((
bool) $form->getInput(
"support_reuse"));
272 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"msg_obj_modified"),
true);
274 $ctrl->redirect($this,
"settings");
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.
static _lookupType(int $id, bool $reference=false)
ObjectManager $object_manager
Manages container related content style behaviour.