ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilLinkTargetObjectExplorer.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/UIComponent/Explorer/classes/class.ilExplorer.php");
5 
15 {
19  function __construct($a_target)
20  {
21  parent::__construct($a_target);
22  }
23 
24 
28  function buildOnClick($a_node_id, $a_type, $a_title)
29  {
30  return "il.IntLink.selectLinkTargetObject('".$a_type."','".$a_node_id."'); return(false);";
31  }
32 }
33 
34 ?>