ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjectPlugin.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/Object/classes/class.ilObject2.php");
5 
6 /*
7 * Object class for plugins. This one wraps around ilObject
8 *
9 * @author Alex Killing <alex.killing@gmx.de>
10 * @version $Id$
11 * @ingroup ServicesRepository
12 */
13 abstract class ilObjectPlugin extends ilObject2
14 {
15  private $object;
16 
20  function __construct($a_ref_id = 0)
21  {
22  $this->initType();
23  parent::__construct($a_id = 0, true);
24  $this->plugin =
25  ilPlugin::getPluginObject(IL_COMP_SERVICE, "Repository", "robj",
26  ilPlugin::lookupNameForId(IL_COMP_SERVICE, "Repository", "robj", $this->getType()));
27  if (!is_object($this->plugin))
28  {
29  die("ilObjectPluginGUI: Could not instantiate plugin object for type ".$this->getType().".");
30  }
31  }
32 
38  final private function getPlugin()
39  {
40  return $this->plugin;
41  }
42 
46  final protected function txt($a_var)
47  {
48  return $this->getPlugin()->txt($a_var);
49  }
50 }