Class ilObjectListGUIFactory. More...
Public Member Functions | |
| & | _getListGUIByType ($a_type) |
Class ilObjectListGUIFactory.
Definition at line 33 of file class.ilObjectListGUIFactory.php.
| & ilObjectListGUIFactory::_getListGUIByType | ( | $ | a_type | ) |
Definition at line 35 of file class.ilObjectListGUIFactory.php.
References $objDefinition.
Referenced by ilCourseContentInterface::cci_view(), and ilContainerGUI::renderItemList().
{
global $objDefinition;
$class = $objDefinition->getClassName($a_type);
$location = $objDefinition->getLocation($a_type);
$full_class = "ilObj".$class."ListGUI";
include_once($location."/class.".$full_class.".php");
$item_list_gui = new $full_class();
return $item_list_gui;
}
Here is the caller graph for this function:
1.7.1