ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
ilPluginLP Class Reference
+ Inheritance diagram for ilPluginLP:
+ Collaboration diagram for ilPluginLP:

Public Member Functions

 getPluginInstance ()
 
 getDefaultMode ()
 
 getValidModes ()
 
 getCurrentMode ()
 
- Public Member Functions inherited from ilObjectLP
 resetCaches ()
 
 isAnonymized ()
 
 getDefaultMode ()
 
 getValidModes ()
 
 getCurrentMode ()
 
 isActive ()
 
 getModeText ($a_mode)
 
 getModeInfoText ($a_mode)
 
 getCollectionInstance ()
 
 getMembers ($a_search=true)
 
 resetLPDataForCompleteObject ($a_recursive=true)
 
 resetLPDataForUserIds (array $a_user_ids, $a_recursive=true)
 
 handleToTrash ()
 
 handleDelete ()
 

Data Fields

const INACTIVE_PLUGIN = -1
 

Protected Member Functions

 __construct ($a_obj_id)
 
 initPlugin ()
 
- Protected Member Functions inherited from ilObjectLP
 __construct ($a_obj_id)
 
 resetCustomLPDataForUserIds (array $a_user_ids, $a_recursive=true)
 
 gatherLPUsers ()
 
 updateParentCollections ()
 

Protected Attributes

 $status
 
- Protected Attributes inherited from ilObjectLP
 $obj_id
 
 $collection_instance
 
 $mode
 

Additional Inherited Members

- Static Public Member Functions inherited from ilObjectLP
static getInstance ($a_obj_id)
 
static isSupportedObjectType ($a_type)
 
static handleMove ($a_source_ref_id)
 

Detailed Description

Definition at line 14 of file class.ilPluginLP.php.

Constructor & Destructor Documentation

◆ __construct()

ilPluginLP::__construct (   $a_obj_id)
protected

Reimplemented from ilObjectLP.

Definition at line 20 of file class.ilPluginLP.php.

21 {
22 parent::__construct($a_obj_id);
23
24 $this->initPlugin();
25 }

References initPlugin().

+ Here is the call graph for this function:

Member Function Documentation

◆ getCurrentMode()

ilPluginLP::getCurrentMode ( )

Reimplemented from ilObjectLP.

Definition at line 64 of file class.ilPluginLP.php.

65 {
66 if($this->status !== null)
67 {
69 }
71 }

References ilLPObjSettings\LP_MODE_PLUGIN, and ilLPObjSettings\LP_MODE_UNDEFINED.

◆ getDefaultMode()

ilPluginLP::getDefaultMode ( )

Reimplemented from ilObjectLP.

Definition at line 51 of file class.ilPluginLP.php.

52 {
54 }

References ilLPObjSettings\LP_MODE_UNDEFINED.

◆ getPluginInstance()

ilPluginLP::getPluginInstance ( )

Definition at line 46 of file class.ilPluginLP.php.

47 {
48 return $this->status;
49 }

References $status.

◆ getValidModes()

ilPluginLP::getValidModes ( )

Reimplemented from ilObjectLP.

Definition at line 56 of file class.ilPluginLP.php.

References ilLPObjSettings\LP_MODE_PLUGIN, and ilLPObjSettings\LP_MODE_UNDEFINED.

◆ initPlugin()

ilPluginLP::initPlugin ( )
protected

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

28 {
29 // active plugin?
30 include_once 'Services/Repository/classes/class.ilRepositoryObjectPluginSlot.php';
32 {
33 $obj = ilObjectFactory::getInstanceByObjId($this->obj_id, false); // #12640
34 if($obj && $obj instanceof ilLPStatusPluginInterface)
35 {
36 $this->status = $obj;
37 }
38 }
39 // inactive plugin?
41 {
42 $this->status = self::INACTIVE_PLUGIN;
43 }
44 }
getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType($a_id, $a_reference=false)
lookup object type
const INACTIVE_PLUGIN
static isTypePluginWithLP($a_type, $a_active_status=true)
Check whether a repository type is a plugin which has active learning progress.
Interface for plugin classes that want to support Learning Progress.

References ilObject\_lookupType(), ilObjectFactory\getInstanceByObjId(), INACTIVE_PLUGIN, and ilRepositoryObjectPluginSlot\isTypePluginWithLP().

Referenced by __construct().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $status

ilPluginLP::$status
protected

Definition at line 16 of file class.ilPluginLP.php.

Referenced by getPluginInstance().

◆ INACTIVE_PLUGIN


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