ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
4include_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 ilCloudPluginGUI.
getInfoScreen(ilObjCloudGUI $gui_class)
show information screen
getPluginInfo()
To be overriden by plugins to add additional Information.
Class ilInfoScreenGUI.
Class ilObjCloudGUI.