ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilRoleAutoCompleteInputGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Form/classes/class.ilTextInputGUI.php");
5 
14 {
21  function __construct($a_title, $a_postvar, $a_class, $a_autocomplete_cmd)
22  {
23  global $ilCtrl;
24 
25  if (is_object($a_class))
26  {
27  $a_class = get_class($a_class);
28  }
29  $a_class = strtolower($a_class);
30 
31  parent::__construct($a_title, $a_postvar);
32  $this->setInputType("raci");
33  $this->setMaxLength(70);
34  $this->setSize(30);
35  $this->setDataSource($ilCtrl->getLinkTargetByClass($a_class, $a_autocomplete_cmd, "", true));
36  }
37 
41  static function echoAutoCompleteList()
42  {
43  $q = $_REQUEST["term"];
44  include_once("./Services/AccessControl/classes/class.ilRoleAutoComplete.php");
45  $list = ilRoleAutoComplete::getList($q);
46  echo $list;
47  exit;
48  }
49 }
setDataSource($href, $a_delimiter=null)
set datasource link for js autocomplete
__construct($a_title, $a_postvar, $a_class, $a_autocomplete_cmd)
Constructor.
static getList($a_str)
Get completion list.
global $ilCtrl
Definition: ilias.php:18
static echoAutoCompleteList()
Static asynchronous default auto complete function.
setSize($a_size)
Set Size.
This class represents a text property in a property form.
setMaxLength($a_maxlength)
Set Max Length.
This class represents a role + autocomplete feature form input.
setInputType($a_type)
set input type