19 declare(strict_types=1);
53 protected int $qpl_obj_id,
61 $cmd = $this->
ctrl->getCmd();
62 $this->
ctrl->saveParameter($this, self::PARAM_IDS);
68 if ($this->question_ids === []) {
69 $out[] = $this->ui_factory->messageBox()->failure(
70 $this->
lng->txt(
'qpl_bulkedit_no_ids')
76 case self::CMD_EDITTAUTHOR:
79 case self::CMD_SAVEAUTHOR:
86 case self::CMD_EDITLIFECYCLE:
89 case self::CMD_SAVELIFECYCLE:
96 case self::CMD_EDITTAXONOMIES:
99 case self::CMD_SAVETAXONOMIES:
100 case self::CMD_SAVETAXONOMIESADD:
105 throw new \Exception(
"'$cmd'" .
" not implemented");
109 $this->tpl->setContent($this->ui_renderer->render(
$out));
114 if (!$this->request_wrapper->has(self::PARAM_IDS)) {
117 $trafo = $this->
refinery->custom()->transformation(
118 fn($v) =>
array_map(
'intval', explode(
',', $v))
120 return $this->request_wrapper->retrieve(self::PARAM_IDS, $trafo);
126 $form = $form->withRequest($this->request);
127 $data = $form->getData();
130 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'qpl_bulkedit_success'),
true);
140 foreach ($this->question_ids as $qid) {
148 return $this->
refinery->custom()->transformation(
149 fn(array $v) => array_shift($v)
155 return $this->ui_factory->input()->container()->form()->standard(
156 $this->
ctrl->getFormAction($this, self::CMD_SAVEAUTHOR),
158 $this->ui_factory->input()->field()
159 ->text($this->
lng->txt(
'author'))
168 return function (array $questions,
string $author) {
169 foreach ($questions as
$q) {
170 $q->setAuthor($author);
171 $q->saveQuestionDataToDb();
181 return $this->ui_factory->input()->container()->form()->standard(
182 $this->
ctrl->getFormAction($this, self::CMD_SAVELIFECYCLE),
184 $this->ui_factory->input()->field()
185 ->select($this->
lng->txt(
'qst_lifecycle'), $options)
194 return function (array $questions,
string $lifecycle) {
196 foreach ($questions as
$q) {
197 $q->setLifecycle($lc);
207 $form->setFormAction($this->
ctrl->getFormAction($this, self::CMD_SAVETAXONOMIES));
211 foreach ($taxonomy_ids as $taxonomy_id) {
213 $label = sprintf($this->
lng->txt(
'qpl_qst_edit_form_taxonomy'), $taxonomy->getTitle());
214 $postvar =
"tax_node_assign_$taxonomy_id";
219 $form->addItem($taxSelect);
221 $form->addCommandButton(self::CMD_SAVETAXONOMIES, $this->
lng->txt(
"qpl_bulk_save_overwrite"));
222 $form->addCommandButton(self::CMD_SAVETAXONOMIESADD, $this->
lng->txt(
"qpl_bulk_save_add"));
229 $post = $this->request->getParsedBody();
230 $form_cmd = array_shift(
$post[
'cmd']);
231 $overwrite = ($form_cmd === $this->
lng->txt(
'qpl_bulk_save_overwrite'));
234 foreach ($taxonomy_ids as $taxonomy_id) {
235 $postvar =
"tax_node_assign_$taxonomy_id";
236 foreach ($questions as
$q) {
241 foreach ($assigned_nodes as $existing) {
242 if ($overwrite && !in_array($existing[
"node_id"],
$post[$postvar])
244 $assignments->deleteAssignment((
int) $existing[
"node_id"], $q->getId());
246 $skip[] = (
int) $existing[
"node_id"];
250 $values =
$post[$postvar];
251 foreach ($values as $value) {
252 if (!in_array((
int) $value, $skip)) {
253 $assignments->addAssignment((
int) $value, $q->getId());
258 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'qpl_bulkedit_success'),
true);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance($identifier)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected ilGlobalTemplateInterface $tpl, protected ilCtrl $ctrl, protected ilLanguage $lng, protected UIFactory $ui_factory, protected UIRenderer $ui_renderer, protected Refinery $refinery, protected ServerRequestInterface $request, protected RequestWrapper $request_wrapper, protected int $qpl_obj_id,)
store(Form\Standard $form, Closure $update)
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static instantiateQuestion(int $question_id)
getAssignmentsOfItem(int $a_item_id)
Get assignments for item.
storeTaxonomies(ilPropertyFormGUI $form)
static _lookupType(int $id, bool $reference=false)
ilBulkEditQuestionsGUI: ilFormPropertyDispatchGUI
const CMD_SAVETAXONOMIESADD
static getDraftInstance()