ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilWikiRecentChangesTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once("Services/Table/classes/class.ilTable2GUI.php");
25 
35 {
36 
37  function __construct($a_parent_obj, $a_parent_cmd = "",
38  $a_wiki_id)
39  {
40  global $ilCtrl, $lng;
41 
42  parent::__construct($a_parent_obj, $a_parent_cmd);
43  $this->wiki_id = $a_wiki_id;
44 
45  $this->addColumn($lng->txt("wiki_last_changed"), "", "33%");
46  $this->addColumn($lng->txt("wiki_page"), "", "33%");
47  $this->addColumn($lng->txt("wiki_last_changed_by"), "", "67%");
48  $this->setEnableHeader(true);
49  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
50  $this->setRowTemplate("tpl.table_row_recent_changes.html",
51  "Modules/Wiki");
52  $this->getRecentChanges();
53 
54  $this->setShowRowsSelector(true);
55 
56  $this->setTitle($lng->txt("wiki_recent_changes"));
57  }
58 
62  function getRecentChanges()
63  {
64  include_once("./Modules/Wiki/classes/class.ilWikiPage.php");
65  $changes = ilWikiPage::getRecentChanges("wpg", $this->wiki_id);
66  $this->setDefaultOrderField("date");
67  $this->setDefaultOrderDirection("desc");
68  $this->setData($changes);
69  }
70 
75  protected function fillRow($a_set)
76  {
77  global $lng, $ilCtrl;
78 
79  include_once("./Modules/Wiki/classes/class.ilWikiPage.php");
80  $title = ilWikiPage::lookupTitle($a_set["id"]);
81  $this->tpl->setVariable("TXT_PAGE_TITLE", $title);
82  $this->tpl->setVariable("DATE",
84  $ilCtrl->setParameterByClass("ilwikipagegui", "page", rawurlencode($title));
85  $ilCtrl->setParameterByClass("ilwikipagegui", "old_nr", $a_set["nr"]);
86  $this->tpl->setVariable("HREF_PAGE",
87  $ilCtrl->getLinkTargetByClass("ilwikipagegui", "preview"));
88 
89  // user name
90  include_once("./Services/User/classes/class.ilUserUtil.php");
91  $this->tpl->setVariable("TXT_USER",
92  ilUserUtil::getNamePresentation($a_set["user"], true, true,
93  $ilCtrl->getLinkTarget($this->getParentObject(), $this->getParentCmd())
94  ));
95  }
96 
97 }
98 ?>
static lookupTitle($a_page_id)
Checks whether a page with given title exists.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
const IL_CAL_DATETIME
fillRow($a_set)
Standard Version of Fill Row.
getParentCmd()
Get parent command.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static getNamePresentation($a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false)
Default behaviour is:
Class ilTable2GUI.
static formatDate(ilDateTime $date)
Format a date public.
Date and time handling
__construct($a_parent_obj, $a_parent_cmd="", $a_wiki_id)
static getRecentChanges($a_parent_type, $a_parent_id, $a_period=30, $a_lang="")
Get recent pages changes for parent object.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
global $lng
Definition: privfeed.php:17
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setEnableHeader($a_enableheader)
Set Enable Header.
TableGUI class for recent changes in wiki.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.