ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilCloudPlugin Class Reference

Class ilCloudPlugin. More...

+ Collaboration diagram for ilCloudPlugin:

Public Member Functions

 __construct ($service_name, $obj_id, $cloud_modul_object=null)
 
 setObjId ($obj_id)
 
 getObjId ()
 
 getPluginHookObject ()
 
 getAdminConfigObject ()
 
 setPluginHookObject ($plugin_hook_object)
 
 getTableName ()
 
 setMaxFileSize ($max_file_size)
 
 getMaxFileSize ()
 
 setCloudModulObject ($cloud_modul_object)
 
 getCloudModulObject ()
 
 getOwnerId ()
 $return integer More...
 
 read ()
 
 create ()
 
 doUpdate ()
 
 doDelete ()
 

Protected Attributes

 $obj_id
 
 $plugin_hook_object
 
 $table_name = ""
 
 $admin_config_object
 
 $cloud_modul_object
 
 $max_file_size = 25
 

Detailed Description

Class ilCloudPlugin.

Base Class for the model of the plugin. Probably will be extended by most plugins.

Author
Timon Amstutz timon.nosp@m..ams.nosp@m.tutz@.nosp@m.ilub.nosp@m..unib.nosp@m.e.ch
Version
$Id$

Definition at line 17 of file class.ilCloudPlugin.php.

Constructor & Destructor Documentation

◆ __construct()

ilCloudPlugin::__construct (   $service_name,
  $obj_id,
  $cloud_modul_object = null 
)
Parameters
$obj_id

Definition at line 57 of file class.ilCloudPlugin.php.

58 {
59 $this->setObjId($obj_id);
60
61 $this->plugin_hook_object = ilCloudConnector::getPluginHookClass($service_name);
62 if (!is_object($this->plugin_hook_object))
63 {
65 }
66 $this->admin_config_object = new ilCloudPluginConfig($this->plugin_hook_object->getPluginConfigTableName());
67 if (!$this->read())
68 {
69 $this->create();
70 }
71
73 {
75 }
77 }
static getPluginHookClass($service_name)
Class ilCloudException.
Class ilCloudPluginConfig.
setCloudModulObject($cloud_modul_object)
Class ilObjCloud.

References $cloud_modul_object, $obj_id, create(), ilCloudConnector\getPluginHookClass(), ilCloudException\PLUGIN_HOOK_COULD_NOT_BE_INSTANTIATED, read(), setCloudModulObject(), and setObjId().

+ Here is the call graph for this function:

Member Function Documentation

◆ create()

ilCloudPlugin::create ( )

Definition at line 188 of file class.ilCloudPlugin.php.

188{}

Referenced by __construct().

+ Here is the caller graph for this function:

◆ doDelete()

ilCloudPlugin::doDelete ( )

Definition at line 192 of file class.ilCloudPlugin.php.

192{}

◆ doUpdate()

ilCloudPlugin::doUpdate ( )

Definition at line 190 of file class.ilCloudPlugin.php.

190{}

◆ getAdminConfigObject()

ilCloudPlugin::getAdminConfigObject ( )
Returns
\ilCloudPluginConfig

Definition at line 106 of file class.ilCloudPlugin.php.

107 {
109 }

References $admin_config_object.

◆ getCloudModulObject()

ilCloudPlugin::getCloudModulObject ( )
Returns
ilObjCloud

Definition at line 171 of file class.ilCloudPlugin.php.

172 {
174 }

References $cloud_modul_object.

◆ getMaxFileSize()

ilCloudPlugin::getMaxFileSize ( )
Returns
int

Definition at line 155 of file class.ilCloudPlugin.php.

156 {
158 }

References $max_file_size.

◆ getObjId()

ilCloudPlugin::getObjId ( )
Returns

Definition at line 90 of file class.ilCloudPlugin.php.

91 {
92 return $this->obj_id;
93 }

References $obj_id.

Referenced by getOwnerId().

+ Here is the caller graph for this function:

◆ getOwnerId()

ilCloudPlugin::getOwnerId ( )

$return integer

Definition at line 179 of file class.ilCloudPlugin.php.

180 {
181 include_once("./Modules/Cloud/classes/class.ilObjCloud.php");
182 $cloud_object = new ilObjCloud($this->getObjId(), false);
183 return $cloud_object->getOwnerId();
184 }

References getObjId().

+ Here is the call graph for this function:

◆ getPluginHookObject()

ilCloudPlugin::getPluginHookObject ( )
Returns
\ilCloudHookPlugin

Definition at line 98 of file class.ilCloudPlugin.php.

99 {
101 }

References $plugin_hook_object.

Referenced by getTableName().

+ Here is the caller graph for this function:

◆ getTableName()

ilCloudPlugin::getTableName ( )
Returns
string

Definition at line 122 of file class.ilCloudPlugin.php.

123 {
124 return $this->getPluginHookObject()->getPluginTableName();
125 }

References getPluginHookObject().

+ Here is the call graph for this function:

◆ read()

ilCloudPlugin::read ( )

Definition at line 186 of file class.ilCloudPlugin.php.

186{}

Referenced by __construct().

+ Here is the caller graph for this function:

◆ setCloudModulObject()

ilCloudPlugin::setCloudModulObject (   $cloud_modul_object)
Parameters
$cloud_modul_object

Definition at line 163 of file class.ilCloudPlugin.php.

164 {
165 $this->cloud_modul_object = $cloud_modul_object;
166 }

References $cloud_modul_object.

Referenced by __construct().

+ Here is the caller graph for this function:

◆ setMaxFileSize()

ilCloudPlugin::setMaxFileSize (   $max_file_size)
Parameters
boolean$async_drawing

public function setAsyncDrawing($async_drawing) { $this->async_drawing = $async_drawing; }

/**

Returns
boolean

public function getAsyncDrawing() { return $this->async_drawing; }

Parameters
int$max_file_size

Definition at line 147 of file class.ilCloudPlugin.php.

148 {
149 $this->max_file_size = $max_file_size;
150 }

References $max_file_size.

◆ setObjId()

ilCloudPlugin::setObjId (   $obj_id)
Parameters
$obj_id

Definition at line 82 of file class.ilCloudPlugin.php.

83 {
84 $this->obj_id = $obj_id;
85 }

References $obj_id.

Referenced by __construct().

+ Here is the caller graph for this function:

◆ setPluginHookObject()

ilCloudPlugin::setPluginHookObject (   $plugin_hook_object)
Parameters
\ilCloudHookPlugin$plugin_hook_object

Definition at line 114 of file class.ilCloudPlugin.php.

115 {
116 $this->plugin_hook_object = $plugin_hook_object;
117 }

References $plugin_hook_object.

Field Documentation

◆ $admin_config_object

ilCloudPlugin::$admin_config_object
protected

Definition at line 37 of file class.ilCloudPlugin.php.

Referenced by getAdminConfigObject().

◆ $cloud_modul_object

ilCloudPlugin::$cloud_modul_object
protected

Definition at line 42 of file class.ilCloudPlugin.php.

Referenced by __construct(), getCloudModulObject(), and setCloudModulObject().

◆ $max_file_size

ilCloudPlugin::$max_file_size = 25
protected

Definition at line 47 of file class.ilCloudPlugin.php.

Referenced by getMaxFileSize(), and setMaxFileSize().

◆ $obj_id

ilCloudPlugin::$obj_id
protected

Definition at line 22 of file class.ilCloudPlugin.php.

Referenced by __construct(), getObjId(), and setObjId().

◆ $plugin_hook_object

ilCloudPlugin::$plugin_hook_object
protected

Definition at line 27 of file class.ilCloudPlugin.php.

Referenced by getPluginHookObject(), and setPluginHookObject().

◆ $table_name

ilCloudPlugin::$table_name = ""
protected

Definition at line 32 of file class.ilCloudPlugin.php.


The documentation for this class was generated from the following file: