ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjectListGUIFactory.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 
14 {
15  function &_getListGUIByType($a_type)
16  {
17  global $objDefinition;
18 
19  $class = $objDefinition->getClassName($a_type);
20  $location = $objDefinition->getLocation($a_type);
21  $full_class = "ilObj".$class."ListGUI";
22  include_once($location."/class.".$full_class.".php");
23  $item_list_gui = new $full_class();
24 
25  return $item_list_gui;
26  }
27 
28 } // END class.ilObjectListGUIFactory
29 ?>