ILIAS  release_8 Revision v8.24
class.ilAssOrderingImagesInputGUI.php
Go to the documentation of this file.
1<?php
19{
20 public const POST_VARIABLE_NAME = 'ordering';
21
22 public function __construct(ilAssOrderingFormValuesObjectsConverter $converter, string $postVar)
23 {
24 $manipulator = new ilAssOrderingDefaultElementFallback();
25 $this->addFormValuesManipulator($manipulator);
26
27 parent::__construct('', $postVar);
28
29 $this->addFormValuesManipulator($converter);
30
31 self::$instanceCounter++;
32 }
33
34 public static $instanceCounter = 0;
35
36 public function setStylingDisabled($stylingDisabled): void
37 {
38 }
39
40 public function getStylingDisabled(): bool
41 {
42 return false;
43 }
44
45 public function setElementList(ilAssOrderingElementList $elementList): void
46 {
48 }
49
53 public function getElementList($questionId): ilAssOrderingElementList
54 {
56 }
57
58 public function setPending(string $a_val): void
59 {
60 $this->pending = $a_val;
61 }
62
63 public function getPending(): string
64 {
65 return $this->pending;
66 }
67}
static buildInstance(int $question_id, array $elements=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilAssOrderingFormValuesObjectsConverter $converter, string $postVar)
setElementList(ilAssOrderingElementList $elementList)
addFormValuesManipulator(ilFormValuesManipulator $manipulator)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc