ILIAS  release_4-4 Revision
class.ilWikiSearchBlockGUI.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/Block/classes/class.ilBlockGUI.php");
25 
37 {
38  static $block_type = "wikisearch";
39  static $st_data;
40 
44  function __construct()
45  {
46  global $ilCtrl, $lng;
47 
48  parent::ilBlockGUI();
49 
50  //$this->setImage(ilUtil::getImagePath("icon_news_s.png"));
51 
52  $lng->loadLanguageModule("wiki");
53  //$this->setBlockId(...);
54  /*$this->setLimit(5);
55  $this->setAvailableDetailLevels(3);*/
56  $this->setEnableNumInfo(false);
57 
58  $this->setTitle($lng->txt("wiki_wiki_search"));
59  //$this->setRowTemplate("tpl.block_row_news_for_context.html", "Services/News");
60  //$this->setData($data);
61  $this->allow_moving = false;
62  //$this->handleView();
63  }
64 
70  static function getBlockType()
71  {
72  return self::$block_type;
73  }
74 
80  static function isRepositoryObject()
81  {
82  return false;
83  }
84 
88  static function getScreenMode()
89  {
90  return IL_SCREEN_SIDE;
91  }
92 
96  function &executeCommand()
97  {
98  global $ilCtrl;
99 
100  $next_class = $ilCtrl->getNextClass();
101  $cmd = $ilCtrl->getCmd("getHTML");
102 
103  switch ($next_class)
104  {
105  default:
106  return $this->$cmd();
107  }
108  }
109 
113  function getHTML()
114  {
115  global $ilCtrl, $lng, $ilUser;
116 
117  return parent::getHTML();
118  }
119 
123  function fillDataSection()
124  {
125  global $ilCtrl, $lng, $ilAccess;
126 
127  $tpl = new ilTemplate("tpl.wiki_search_block.html", true, true, "Modules/Wiki");
128 
129  // go
130  $tpl->setVariable("TXT_PERFORM", $lng->txt("wiki_search"));
131  $tpl->setVariable("FORMACTION",
132  $ilCtrl->getFormActionByClass("ilobjwikigui", "performSearch"));
133  $tpl->setVariable("SEARCH_TERM",
135 
136  $this->setDataSection($tpl->get());
137  }
138 }
139 
140 ?>
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
$_POST['username']
Definition: cron.php:12
setDataSection($a_content)
Call this from overwritten fillDataSection(), if standard row based data is not used.
& executeCommand()
execute command
BlockGUI class for wiki searchblock.
$cmd
Definition: sahs_server.php:35
static getScreenMode()
Get Screen Mode for current command.
setEnableNumInfo($a_enablenuminfo)
Set Enable Item Number Info.
getHTML()
Get bloch HTML code.
global $ilCtrl
Definition: ilias.php:18
setTitle($a_title)
Set Title.
special template class to simplify handling of ITX/PEAR
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
global $ilUser
Definition: imgupload.php:15
fillDataSection()
Fill data section.
global $lng
Definition: privfeed.php:40
This class represents a block method of a block.
static isRepositoryObject()
Is this a repository object.
static getBlockType()
Get block type.
const IL_SCREEN_SIDE