ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 }