ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWikiRecentChangesTableGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected int $requested_ref_id;
27  protected int $wiki_id = 0;
29  protected \ILIAS\Wiki\Page\PageManager $pm;
30 
31  public function __construct(
32  object $a_parent_obj,
33  string $a_parent_cmd,
34  int $a_wiki_id
35  ) {
36  global $DIC;
37 
38  $service = $DIC->wiki()->internal();
39  $gui = $service->gui();
40  $domain = $service->domain();
41  $this->ctrl = $gui->ctrl();
42  $this->lng = $domain->lng();
43  $this->requested_ref_id = $gui
44  ->request()
45  ->getRefId();
46  $this->pm = $domain->page()->page($this->requested_ref_id);
47  $this->ot = $domain->wiki()->translation($a_wiki_id);
48 
49  parent::__construct($a_parent_obj, $a_parent_cmd);
50  $this->wiki_id = $a_wiki_id;
51 
52  $this->addColumn($this->lng->txt("wiki_last_changed"));
53  $this->addColumn($this->lng->txt("wiki_page"));
54  if ($this->ot->getContentActivated()) {
55  $this->addColumn($this->lng->txt("language"));
56  }
57  $this->addColumn($this->lng->txt("wiki_last_changed_by"));
58  $this->setEnableHeader(true);
59  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
60  $this->setRowTemplate(
61  "tpl.table_row_recent_changes.html",
62  "components/ILIAS/Wiki"
63  );
64  $this->getRecentChanges();
65 
66  $this->setShowRowsSelector(true);
67 
68  $this->setTitle($this->lng->txt("wiki_recent_changes"));
69  }
70 
71  public function getRecentChanges(): void
72  {
73  $changes = [];
74  foreach ($this->pm->getRecentChanges() as $pi) {
75  $changes[] = [
76  "date" => $pi->getLastChange(),
77  "user" => $pi->getLastChangedUser(),
78  "id" => $pi->getId(),
79  "title" => $pi->getTitle(),
80  "lang" => $pi->getLanguage(),
81  "nr" => $pi->getOldNr()
82  ];
83  }
84  $this->setDefaultOrderField("date");
85  $this->setDefaultOrderDirection("desc");
86  $this->setData($changes);
87  }
88 
89  protected function fillRow(array $a_set): void
90  {
91  $ilCtrl = $this->ctrl;
92 
93  if ($this->ot->getContentActivated()) {
94  $l = $a_set["lang"];
95  if ($l === "-") {
96  $l = $this->ot->getMasterLanguage();
97  }
98  $this->tpl->setCurrentBlock("lang");
99  $this->tpl->setVariable("LANG", $this->lng->txt("meta_l_" . $l));
100  $this->tpl->parseCurrentBlock();
101  }
102 
103  $title = $a_set["title"];
104  $this->tpl->setVariable("TXT_PAGE_TITLE", $title);
105  $this->tpl->setVariable(
106  "DATE",
108  );
109  $ilCtrl->setParameterByClass("ilwikipagegui", "wpg_id", $a_set["id"]);
110  $ilCtrl->setParameterByClass("ilwikipagegui", "transl", $a_set["lang"]);
111  $ilCtrl->setParameterByClass("ilwikipagegui", "old_nr", $a_set["nr"] ?? "");
112  $this->tpl->setVariable(
113  "HREF_PAGE",
114  $ilCtrl->getLinkTargetByClass("ilwikipagegui", "preview")
115  );
116 
117  // user name
118  $this->tpl->setVariable(
119  "TXT_USER",
121  $a_set["user"],
122  true,
123  true,
124  $ilCtrl->getLinkTarget($this->getParentObject(), $this->getParentCmd())
125  )
126  );
127  }
128 }
setData(array $a_data)
const IL_CAL_DATETIME
setFormAction(string $a_form_action, bool $a_multipart=false)
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)
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="")
__construct(Container $dic, ilPlugin $plugin)
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)
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$service
Definition: ltiservices.php:40
setEnableHeader(bool $a_enableheader)