19 declare(strict_types=1);
51 private readonly
string $parent_cmd,
55 private readonly
bool $mayEdit,
62 array $visible_column_ids,
66 ?array $additional_parameters,
69 foreach ($records as $record) {
70 yield $row_builder->buildDataRow((
string) $record[
'draft_id'], $record);
76 if ($this->records ===
null) {
83 foreach ($drafts as $draft) {
84 if (!isset($draft[
'draft_id'], $draft[
'subject'], $draft[
'post_update'])) {
88 $draft_id = $draft[
'draft_id'];
89 $this->records[$draft_id] = [
'draft_id' => $draft_id];
91 $this->
ctrl->setParameter($this->parent_object,
'draft_id', $draft_id);
92 $url = $this->
ctrl->getLinkTarget($this->parent_object,
'editThreadDraft');
93 $this->records[$draft_id][
'draft'] = $this->ui_factory->link()->standard(
97 $this->
ctrl->setParameter($this->parent_object,
'draft_id',
null);
99 $this->records[$draft_id][
'draft'] = $draft[
'subject'];
102 $draft[
'post_update']
110 $query_params_namespace = [
'forum',
'drafts',
'delete'];
111 $uri = $this->data_factory->uri(
112 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(ilObjForumGUI::class,
'confirmDeleteThreadDrafts')
115 [$url_builder, $action_parameter_token, $row_id_token] = $url_builder->acquireParameters(
116 $query_params_namespace,
121 return $this->ui_factory
125 $this->
lng->txt(
'drafts'),
129 'frm_drafts_' . substr(
130 md5($this->parent_cmd),
133 ) .
'_' . $this->forum->getId()
135 ->withRequest($this->httpRequest)
138 'delete' => $this->ui_factory->table()->action()->multi(
139 $this->
lng->txt(
'delete'),
140 $url_builder->withParameter($action_parameter_token,
'delete'),
151 return count((array) $this->records);
182 $format = $this->data_factory->dateFormat()->withTime12($this->
user->getDateFormat());
184 $format = $this->data_factory->dateFormat()->withTime24($this->
user->getDateFormat());
188 'draft' => $this->ui_factory->table()->column()->link($this->
lng->txt(
'drafts'))->withIsSortable(
190 )->withIsSortable(
false),
191 'edited_on' => $this->ui_factory->table()->column()->date(
192 $this->
lng->txt(
'edited_on'),
194 )->withIsSortable(
false)
static lookupForumIdByObjId(int $obj_id)
__construct(private readonly ilObjForum $forum, private readonly UIFactory $ui_factory, private readonly ServerRequestInterface $httpRequest, private readonly ilLanguage $lng, private readonly string $parent_cmd, private readonly ilCtrlInterface $ctrl, private readonly DataFactory $data_factory, private readonly ilObjUser $user, private readonly bool $mayEdit, private readonly ilObjForumGUI $parent_object,)
Interface Observer Contains several chained tasks and infos about them.
limitRecords(array $records, Range $range)
getRecords(Range $range, Order $order)
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getThreadDraftData(int $post_author_id, int $forum_id)
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters,)
A simple class to express a naive range of whole positive numbers.