47 $a_export_callback =
null,
48 ?
string $a_export_subobj_title =
null 52 $this->
lng = $DIC->language();
53 $this->
ctrl = $DIC->ctrl();
54 $this->tpl = $DIC[
"tpl"];
55 $this->
toolbar = $DIC->toolbar();
56 $this->request = $DIC->http()->request();
57 $lng = $DIC->language();
59 $this->parent_id = $a_parent_id;
60 $this->export_callback = $a_export_callback;
61 $this->export_subobj_title = $a_export_subobj_title;
65 $params = $this->request->getQueryParams();
66 $body = $this->request->getParsedBody();
67 $this->requested_cat_id = (
int) ($body[
"cat_id"] ?? (
$params[
"cat_id"] ?? 0));
69 if ($this->requested_cat_id) {
72 $this->cat_id = $cat->getId();
85 $cmd = $ilCtrl->getCmd(
"listCategories");
87 switch ($next_class) {
101 $ilToolbar->addButton(
102 $lng->
txt(
"rating_add_category"),
103 $ilCtrl->getLinkTarget($this,
"add")
106 $ilToolbar->addSeparator();
108 $ilToolbar->addButton(
110 $ilCtrl->getLinkTarget($this,
"export")
124 $form->setTarget(
"_top");
125 $form->setFormAction($ilCtrl->getFormAction($this,
"save"));
126 $form->setTitle($lng->
txt(
"rating_category_" . ($a_id ?
"edit" :
"create")));
130 $ti->setMaxLength(128);
132 $ti->setRequired(
true);
142 $form->addCommandButton(
"save", $lng->
txt(
"rating_category_add"));
145 $ti->setValue($cat->getTitle());
146 $ta->setValue($cat->getDescription());
148 $form->addCommandButton(
"update", $lng->
txt(
"rating_category_update"));
150 $form->addCommandButton(
"listCategories", $lng->
txt(
"cancel"));
166 protected function save(): void
172 if ($form->checkInput()) {
174 $cat->setParentId($this->parent_id);
175 $cat->setTitle($form->getInput(
"title"));
176 $cat->setDescription($form->getInput(
"desc"));
179 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"rating_category_created"));
180 $ilCtrl->redirect($this,
"listCategories");
183 $form->setValuesByPost();
207 if ($form->checkInput()) {
209 $cat->setTitle($form->getInput(
"title"));
210 $cat->setDescription($form->getInput(
"desc"));
213 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"rating_category_updated"));
214 $ilCtrl->redirect($this,
"listCategories");
217 $form->setValuesByPost();
226 $body = $this->request->getParsedBody();
227 $order = $body[
"pos"];
231 foreach ($order as
$id => $pos) {
235 $cat->setPosition($cnt);
240 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"settings_saved"),
true);
241 $ilCtrl->redirect($this,
"listCategories");
250 if (!$this->cat_id) {
256 $cgui->setHeaderText($lng->
txt(
"rating_category_delete_sure") .
"<br/>" .
257 $lng->
txt(
"info_delete_warning_no_trash"));
259 $cgui->setFormAction($ilCtrl->getFormAction($this));
260 $cgui->setCancel($lng->
txt(
"cancel"),
"listCategories");
261 $cgui->setConfirm($lng->
txt(
"confirm"),
"delete");
264 $cgui->addItem(
"cat_id", $this->cat_id, $cat->getTitle());
269 protected function delete():
void 276 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"rating_category_deleted"),
true);
285 $cat->setPosition($cnt);
289 $ilCtrl->redirect($this,
"listCategories");
297 $excel->addSheet($lng->
txt(
"rating_categories"));
302 $active[$item[
"id"]] = $item[
"title"];
307 $excel->setCell($row, 0, $this->export_subobj_title .
" (" . $lng->
txt(
"id") .
")");
308 $excel->setCell($row, 1, $this->export_subobj_title);
309 $excel->setCell($row, 2, $lng->
txt(
"rating_export_category") .
" (" . $lng->
txt(
"id") .
")");
310 $excel->setCell($row, 3, $lng->
txt(
"rating_export_category"));
311 $excel->setCell($row, 4, $lng->
txt(
"rating_export_date"));
312 $excel->setCell($row, 5, $lng->
txt(
"rating_export_rating"));
313 $excel->setBold(
"A1:F1");
318 if (!$item[
"sub_obj_id"]) {
324 $sub_obj_title = $item[
"sub_obj_type"];
325 if ($this->export_callback) {
326 $sub_obj_title = call_user_func($this->export_callback, $item[
"sub_obj_id"], $item[
"sub_obj_type"]);
329 $excel->setCell($row, 0, (
int) $item[
"sub_obj_id"]);
330 $excel->setCell($row, 1, $sub_obj_title);
331 $excel->setCell($row, 2, (
int) $item[
"category_id"]);
332 $excel->setCell($row, 3, $active[$item[
"category_id"]] ??
"");
334 $excel->setCell($row, 5, $item[
"rating"] ??
"");
executeCommand()
execute command
__construct(int $a_parent_id, $a_export_callback=null, ?string $a_export_subobj_title=null)
ilRatingCategoryGUI constructor.
edit(?ilPropertyFormGUI $a_form=null)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
initCategoryForm(?int $a_id=null)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
add(?ilPropertyFormGUI $a_form=null)
setContent(string $a_html)
Sets content for standard template.
RequestInterface $request
loadLanguageModule(string $a_module)
Load language module.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilGlobalTemplateInterface $tpl
getNextClass($a_gui_class=null)
Class ilRatingCategoryGUI.
static _lookupTitle(int $obj_id)
static getAllForObject(int $a_parent_obj_id)
static getExportData(int $a_obj_id, string $a_obj_type, ?array $a_category_ids=null)
Get export data.
string $export_subobj_title
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This class represents a text area property in a property form.
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...
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
static _lookupType(int $id, bool $reference=false)