ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 ?>