ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWikiPagesTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 const IL_WIKI_ALL_PAGES = "all";
20 const IL_WIKI_NEW_PAGES = "new";
21 const IL_WIKI_POPULAR_PAGES = "popular";
22 const IL_WIKI_WHAT_LINKS_HERE = "what_links";
23 const IL_WIKI_ORPHANED_PAGES = "orphaned";
24 
31 {
32  protected \ILIAS\Wiki\Links\LinkManager $link_manager;
33  protected string $requested_lang;
34  protected string $lang;
36  protected \ILIAS\Wiki\Page\PageManager $pm;
37  protected int $requested_ref_id;
38  protected int $page_id = 0;
39  protected int $wiki_id = 0;
40  protected string $pg_list_mode = "";
41 
42  public function __construct(
43  object $a_parent_obj,
44  string $a_parent_cmd,
45  int $a_wiki_id,
46  string $a_mode = IL_WIKI_ALL_PAGES,
47  int $a_page_id = 0,
48  string $lang = "-"
49  ) {
50  global $DIC;
51  $this->lang = ($lang == "")
52  ? "-"
53  : $lang;
54  $service = $DIC->wiki()->internal();
55  $gui = $service->gui();
56  $domain = $service->domain();
57  $this->ctrl = $gui->ctrl();
58  $this->lng = $domain->lng();
59  $this->requested_ref_id = $gui
60  ->request()
61  ->getRefId();
62  $this->requested_lang = $gui->request()->getTranslation();
63  $this->pm = $domain->page()->page($this->requested_ref_id);
64  $this->link_manager = $domain->links($this->requested_ref_id);
65  $this->ot = $domain->wiki()->translation($a_wiki_id);
66 
67  parent::__construct($a_parent_obj, $a_parent_cmd);
68  $this->pg_list_mode = $a_mode;
69  $this->wiki_id = $a_wiki_id;
70  $this->page_id = $a_page_id;
71 
72  switch ($this->pg_list_mode) {
73  case IL_WIKI_NEW_PAGES:
74  $this->addColumn($this->lng->txt("created"), "created");
75  $this->addColumn($this->lng->txt("wiki_page"), "title");
76  $this->addLanguageColumn();
77  $this->addColumn($this->lng->txt("wiki_created_by"), "user_sort");
78  $this->setRowTemplate(
79  "tpl.table_row_wiki_new_page.html",
80  "components/ILIAS/Wiki"
81  );
82  break;
83 
85  $this->addColumn($this->lng->txt("wiki_page"), "title");
86  $this->addLanguageColumn();
87  $this->addColumn($this->lng->txt("wiki_page_hits"), "cnt");
88  $this->setRowTemplate(
89  "tpl.table_row_wiki_popular_page.html",
90  "components/ILIAS/Wiki"
91  );
92  break;
93 
95  $this->addColumn($this->lng->txt("wiki_page"), "title");
96  $this->addLanguageColumn();
97  $this->setRowTemplate(
98  "tpl.table_row_wiki_orphaned_page.html",
99  "components/ILIAS/Wiki"
100  );
101  break;
102 
103  default:
104  $this->addColumn($this->lng->txt("wiki_page"), "title");
105  $this->addColumn($this->lng->txt("wiki_last_changed"), "date");
106  if ($this->pg_list_mode !== IL_WIKI_WHAT_LINKS_HERE) {
107  $this->addTranslationsColumn();
108  }
109  $this->addColumn($this->lng->txt("wiki_last_changed_by"), "user_sort");
110  $this->setRowTemplate(
111  "tpl.table_row_wiki_page.html",
112  "components/ILIAS/Wiki"
113  );
114  break;
115  }
116  $this->setEnableHeader(true);
117  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
118  $this->getPages();
119 
120  $this->setShowRowsSelector(true);
121 
122  switch ($this->pg_list_mode) {
124  $this->setTitle(
125  sprintf(
126  $this->lng->txt("wiki_what_links_to_page"),
127  ilWikiPage::lookupTitle($this->page_id)
128  )
129  );
130  break;
131 
132  default:
133  $this->setTitle($this->lng->txt("wiki_" . $a_mode . "_pages"));
134  break;
135  }
136  }
137 
138  protected function addLanguageColumn(): void
139  {
140  if ($this->ot->getContentActivated()) {
141  $this->addColumn($this->lng->txt("language"));
142  }
143  }
144 
145  protected function addTranslationsColumn(): void
146  {
147  if ($this->ot->getContentActivated()) {
148  $this->addColumn($this->lng->txt("wiki_translations"));
149  }
150  }
151 
152  public function getPages(): void
153  {
154  $pages = array();
155  $this->setDefaultOrderField("title");
156 
157  switch ($this->pg_list_mode) {
159  foreach ($this->link_manager->getLinksToPage($this->page_id, $this->lang) as $pi) {
160  $pages[] = [
161  "date" => $pi->getLastChange(),
162  "id" => $pi->getId(),
163  "user" => $pi->getLastChangedUser(),
164  "title" => $pi->getTitle(),
165  "lang" => $pi->getLanguage()
166  ];
167  }
168  break;
169 
170  case IL_WIKI_ALL_PAGES:
171  foreach ($this->pm->getAllPagesInfo() as $pi) {
172  $pages[] = [
173  "date" => $pi->getLastChange(),
174  "id" => $pi->getId(),
175  "user" => $pi->getLastChangedUser(),
176  "title" => $pi->getTitle()
177  ];
178  }
179  break;
180 
181  case IL_WIKI_NEW_PAGES:
182  $this->setDefaultOrderField("created");
183  $this->setDefaultOrderDirection("desc");
184  //$pages = ilWikiPage::getNewWikiPages($this->wiki_id);
185  foreach ($this->pm->getNewPages() as $pi) {
186  $pages[] = [
187  "created" => $pi->getCreated(),
188  "id" => $pi->getId(),
189  "user" => $pi->getCreateUser(),
190  "title" => $pi->getTitle(),
191  "lang" => $pi->getLanguage()
192  ];
193  }
194  break;
195 
197  $this->setDefaultOrderField("cnt");
198  $this->setDefaultOrderDirection("desc");
199  //$pages = ilWikiPage::getPopularPages($this->wiki_id);
200  foreach ($this->pm->getPopularPages() as $pi) {
201  $pages[] = [
202  "id" => $pi->getId(),
203  "title" => $pi->getTitle(),
204  "lang" => $pi->getLanguage(),
205  "cnt" => $pi->getViewCnt(),
206  ];
207  }
208  break;
209 
211  foreach ($this->pm->getOrphanedPages() as $pi) {
212  $pages[] = [
213  "id" => $pi->getId(),
214  "title" => $pi->getTitle(),
215  "date" => $pi->getLastChange()
216  ];
217  }
218  break;
219  }
220 
221  if ($pages) {
222  // enable sorting
223  foreach (array_keys($pages) as $idx) {
224  if (isset($pages[$idx]["user"])) {
225  $pages[$idx]["user_sort"] = ilUserUtil::getNamePresentation($pages[$idx]["user"], false, false);
226  }
227  }
228  }
229 
230  $this->setData($pages);
231  }
232 
233  public function numericOrdering(string $a_field): bool
234  {
235  if ($a_field === "cnt") {
236  return true;
237  }
238  return false;
239  }
240 
241  protected function fillRow(array $a_set): void
242  {
243  $ilCtrl = $this->ctrl;
244 
245  if ($this->pg_list_mode === IL_WIKI_NEW_PAGES) {
246  if ($this->ot->getContentActivated() && $this->pg_list_mode !== IL_WIKI_WHAT_LINKS_HERE) {
247  $l = $a_set["lang"] === "-"
248  ? $this->ot->getMasterLanguage()
249  : $a_set["lang"];
250  $this->tpl->setCurrentBlock("lang");
251  $this->tpl->setVariable("LANG", $this->lng->txt("meta_l_" . $l));
252  $this->tpl->parseCurrentBlock();
253  }
254  $this->tpl->setVariable("TXT_PAGE_TITLE", $a_set["title"]);
255  $this->tpl->setVariable(
256  "DATE",
258  );
259  } elseif ($this->pg_list_mode === IL_WIKI_POPULAR_PAGES) {
260  if ($this->ot->getContentActivated()) {
261  $l = $a_set["lang"] === "-"
262  ? $this->ot->getMasterLanguage()
263  : $a_set["lang"];
264  $this->tpl->setCurrentBlock("lang");
265  $this->tpl->setVariable("LANG", $this->lng->txt("meta_l_" . $l));
266  $this->tpl->parseCurrentBlock();
267  }
268  $this->tpl->setVariable("TXT_PAGE_TITLE", $a_set["title"]);
269  $this->tpl->setVariable("HITS", $a_set["cnt"]);
270  } else {
271  $this->tpl->setVariable("TXT_PAGE_TITLE", $a_set["title"]);
272  $this->tpl->setVariable(
273  "DATE",
275  );
276  if ($this->ot->getContentActivated() && $this->pg_list_mode !== IL_WIKI_WHAT_LINKS_HERE) {
277  $this->tpl->setCurrentBlock("lang");
278  $this->tpl->setVariable("LANG", implode(", ", $this->pm->getLanguages($a_set["id"])));
279  $this->tpl->parseCurrentBlock();
280  }
281  }
282  $this->tpl->setVariable(
283  "HREF_PAGE",
284  $this->pm->getPermaLink($a_set["id"], $a_set["lang"] ?? "")
285  );
286 
287  // user name
288  $this->tpl->setVariable(
289  "TXT_USER",
291  $a_set["user"] ?? 0,
292  true,
293  true,
294  $ilCtrl->getLinkTarget($this->getParentObject(), $this->getParentCmd())
295  )
296  );
297  }
298 }
setData(array $a_data)
ILIAS Wiki Links LinkManager $link_manager
const IL_CAL_DATETIME
const IL_WIKI_POPULAR_PAGES
setFormAction(string $a_form_action, bool $a_multipart=false)
static lookupTitle(int $a_page_id, string $lang="-")
TableGUI class for wiki pages table.
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
setDefaultOrderField(string $a_defaultorderfield)
ILIAS Wiki Page PageManager $pm
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
const IL_WIKI_WHAT_LINKS_HERE
const IL_WIKI_ALL_PAGES
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_wiki_id, string $a_mode=IL_WIKI_ALL_PAGES, int $a_page_id=0, string $lang="-")
const IL_WIKI_ORPHANED_PAGES
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
$service
Definition: ltiservices.php:40
setEnableHeader(bool $a_enableheader)
const IL_WIKI_NEW_PAGES