19 declare(strict_types=1);
70 protected ViewControl\
Factory $view_control_factory,
76 $this->checkArgListElements(
'columns', $columns, [Column::class]);
77 if ($columns === []) {
78 throw new \InvalidArgumentException(
'cannot construct a table without columns.');
82 $this->multi_action_signal = $signal_generator->
create();
83 $this->selection_signal = $signal_generator->
create();
84 $this->async_action_signal = $signal_generator->
create();
96 foreach ($columns as $id => $col) {
97 $ret[
$id] = $col->withIndex($idx++);
115 $this->checkArgListElements(
'actions', $actions, [
T\
Action\Action::class]);
116 $clone = clone $this;
118 foreach ($actions as $id => $action) {
121 $clone->actions_single[
$id] = $action;
124 $clone->actions_multi[
$id] = $action;
127 $clone->actions_std[
$id] = $action;
136 $clone = clone $this;
175 return array_merge($this->actions_multi, $this->actions_std);
183 return array_merge($this->actions_single, $this->actions_std);
191 return array_merge($this->actions_single, $this->actions_multi, $this->actions_std);
196 return count($this->columns);
202 return $this->storage[$storage_id] ??
null;
210 $this->storage[$storage_id] =
$data;
214 public function withId(
string $id): static
216 $clone = clone $this;
224 return static::STORAGE_ID_PREFIX .
$id;
239 $view_controls = $view_controls
240 ->withStoredInput($stored_values)
241 ->withRequest($request);
242 $this->
setStorageData($view_controls->getComponentInternalValues());
243 return $view_controls;
withActions(array $actions)
ServerRequestInterface $request
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
__construct(SignalGeneratorInterface $signal_generator, protected ViewControl\Factory $view_control_factory, protected ViewControlContainer\Factory $view_control_container_factory, protected \ArrayAccess $storage, string $title, array $columns)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withRequest(ServerRequestInterface $request)
Signal $async_action_signal
setStorageData(array $data)
applyValuesToViewcontrols(ViewControlContainer\ViewControl $view_controls, ServerRequestInterface $request)
create(string $class='')
Create a signal, each created signal MUST have a unique ID.
__construct(Container $dic, ilPlugin $plugin)
Signal $multi_action_signal
enumerateColumns(array $columns)