ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilObjLinkResourceSubItemListGUI Class Reference

Show glossary terms. More...

+ Inheritance diagram for ilObjLinkResourceSubItemListGUI:
+ Collaboration diagram for ilObjLinkResourceSubItemListGUI:

Public Member Functions

 getHTML ()
 get html
- Public Member Functions inherited from ilSubItemListGUI
 __construct ($a_cmd_class)
 Constructor.
 getCmdClass ()
 get cmd class
 setHighlighter ($a_highlighter)
 set highlighter
 getHighlighter ()
 get highlighter
 getRefId ()
 get ref id
 getObjId ()
 get obj id
 getType ()
 get type
 getSubItemIds ($a_limited=false)
 get sub item ids
 getItemListGUI ()
 get item list gui
 init ($item_list_gui, $a_ref_id, $a_subitem_ids)
 init

Additional Inherited Members

- Static Public Member Functions inherited from ilSubItemListGUI
static setShowDetails ($a_obj_id)
 set show details.
static resetDetails ()
 reset details As long as static::resetDetails is not possible this method is final
static enabledDetails ($a_obj_id)
 enabled show details As long as static::enableDetails is not possible this method is final
- Protected Member Functions inherited from ilSubItemListGUI
 showDetailsLink ()
 show details link
- Protected Attributes inherited from ilSubItemListGUI
 $cmdClass = null
 $tpl
- Static Protected Attributes inherited from ilSubItemListGUI
static $MAX_SUBITEMS = 5

Detailed Description

Show glossary terms.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 39 of file class.ilObjLinkResourceSubItemListGUI.php.

Member Function Documentation

ilObjLinkResourceSubItemListGUI::getHTML ( )

get html

Returns

Reimplemented from ilSubItemListGUI.

Definition at line 45 of file class.ilObjLinkResourceSubItemListGUI.php.

References $lng, ilParameterAppender\_append(), ilSubItemListGUI\getHighlighter(), ilSubItemListGUI\getObjId(), ilSubItemListGUI\getSubItemIds(), ilLinkResourceItems\lookupItem(), and ilSubItemListGUI\showDetailsLink().

{
global $lng;
$lng->loadLanguageModule('webr');
foreach($this->getSubItemIds(true) as $sub_item)
{
if(is_object($this->getHighlighter()) and strlen($this->getHighlighter()->getContent($this->getObjId(),$sub_item)))
{
$this->tpl->setCurrentBlock('sea_fragment');
$this->tpl->setVariable('TXT_FRAGMENT',$this->getHighlighter()->getContent($this->getObjId(),$sub_item));
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock('subitem');
$this->tpl->setVariable('SUBITEM_TYPE',$lng->txt('webr'));
$this->tpl->setVariable('SEPERATOR',':');
$link_data = ilLinkResourceItems::lookupItem($this->getObjId(),$sub_item);
$link_data = ilParameterAppender::_append($link_data);
#$this->getItemListGUI()->setChildId($sub_item);
$this->tpl->setVariable('LINK',$link_data['target']);
$this->tpl->setVariable('TARGET','_blank');
$this->tpl->setVariable('TITLE',$link_data['title']);
$this->tpl->parseCurrentBlock();
}
$this->showDetailsLink();
return $this->tpl->get();
}

+ Here is the call graph for this function:


The documentation for this class was generated from the following file: