57 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
61 $this->lng = $DIC->language();
62 $this->rbacsystem = $DIC->rbac()->system();
63 $this->error = $DIC[
"ilErr"];
64 $this->ctrl = $DIC->ctrl();
65 $this->request = $DIC->http()->request();
66 $this->tabs = $DIC->tabs();
67 $this->
ui = $DIC->ui();
68 $this->setting = $DIC->settings();
69 $this->main_tpl = $DIC->ui()->mainTemplate();
75 $this->lng->loadLanguageModule(
"lhist");
88 $next_class =
$ctrl->getNextClass($this);
89 $cmd =
$ctrl->getCmd(
"editSettings");
91 if (!
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
92 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
97 switch ($next_class) {
98 case 'ilpermissiongui':
99 $tabs->activateTab(
'perm_settings');
101 $ctrl->forwardCommand($perm_gui);
105 if ($cmd ==
"view") {
106 $cmd =
"editSettings";
108 if (in_array($cmd, [
"editSettings",
"saveSettings"])) {
125 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
128 $lng->txt(
"settings"),
129 $ctrl->getLinkTarget($this,
"editSettings")
133 if (
$rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
136 $lng->txt(
"perm_settings"),
137 $ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
151 $tabs->activateTab(
"settings");
169 $fields[
"enable_learning_history"] =
$f->input()->field()->checkbox(
170 $lng->txt(
"lhist_enable_learning_history"),
171 $lng->txt(
"lhist_enable_learning_history_info")
173 ->withValue((
bool)
$setting->get(
"enable_learning_history"));
176 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"settings"));
179 $form_action =
$ctrl->getLinkTarget($this,
"saveSettings");
180 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
194 if (
$request->getMethod() ==
"POST") {
195 $form = $form->withRequest(
$request);
196 $data = $form->getData();
197 if (is_array(
$data[
"sec"])) {
198 $setting->set(
"enable_learning_history", (
int) (
$data[
"sec"][
"enable_learning_history"]));
202 $ctrl->redirect($this,
"editSettings");
initForm()
Init settings form.
executeCommand()
Execute command.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
prepareOutput($a_show_subobjects=true)
prepare output
editSettings()
Edit settings.
Learning History Settings.
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)
saveSettings()
Save settings.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.