ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilCloudPluginInfoScreenGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("class.ilCloudPluginGUI.php");
5 
17 {
21  var $info = null;
25  public function getInfoScreen(ilObjCloudGUI $gui_class)
26  {
27  include_once("./Services/InfoScreen/classes/class.ilInfoScreenGUI.php");
28  $this->info = new ilInfoScreenGUI($gui_class);
29  $this->info->enablePrivateNotes();
30  $this->info->addMetaDataSections($gui_class->object->getId(), 0, $gui_class->object->getType());
31  $this->getPluginInfo();
32 
33  return $this->info;
34  }
35 
39  public function getPluginInfo()
40  {
41 
42  }
43 
44 }
45 
46 ?>
Class ilInfoScreenGUI.
Class ilObjCloudGUI.
getInfoScreen(ilObjCloudGUI $gui_class)
show information screen
getPluginInfo()
To be overriden by plugins to add additional Information.
Class ilCloudPluginGUI.