Public Member Functions | |
ilObjiLincCourse ($a_id=0, $a_call_by_reference=true) | |
Constructor public. | |
read () | |
private | |
update () | |
update object data | |
ilClone ($a_parent_ref) | |
copy all entries of your object. | |
delete () | |
delete object and all related data | |
saveID ($a_icrs_id) | |
initDefaultRoles () | |
init default roles settings | |
notify ($a_event, $a_ref_id, $a_parent_non_rbac_id, $a_node_id, $a_params=0) | |
notifys an object about an event occured Based on the event happend, each object may decide how it reacts. |
Definition at line 36 of file class.ilObjiLincCourse.php.
ilObjiLincCourse::delete | ( | ) |
delete object and all related data
public
Reimplemented from ilObject.
Definition at line 130 of file class.ilObjiLincCourse.php.
References $q.
{ // always call parent delete function first!! if (!parent::delete()) { return false; } //put here your module specific stuff $q = "DELETE FROM ilinc_data WHERE course_id='".$this->ilinc_id."'"; $this->ilias->db->query($q); include_once "class.ilnetucateXMLAPI.php"; $ilinc = new ilnetucateXMLAPI(); $ilinc->removeCourse($this->ilinc_id); $response = $ilinc->sendRequest(); return true; }
ilObjiLincCourse::ilClone | ( | $ | a_parent_ref | ) |
copy all entries of your object.
public
integer | ref_id of parent object |
Reimplemented from ilObject.
Definition at line 101 of file class.ilObjiLincCourse.php.
References $rbacadmin.
{ global $rbacadmin; // always call parent clone function first!! $new_ref_id = parent::ilClone($a_parent_ref); // get object instance of cloned object //$newObj =& $this->ilias->obj_factory->getInstanceByRefId($new_ref_id); // create a local role folder & default roles //$roles = $newObj->initDefaultRoles(); // ...finally assign role to creator of object //$rbacadmin->assignUser($roles[0], $newObj->getOwner(), "n"); // always destroy objects in clone method because clone() is recursive and creates instances for each object in subtree! //unset($newObj); // ... and finally always return new reference ID!! return $new_ref_id; }
ilObjiLincCourse::ilObjiLincCourse | ( | $ | a_id = 0 , |
|
$ | a_call_by_reference = true | |||
) |
Constructor public.
integer | reference_id or object_id | |
boolean | treat the id as reference_id (true) or object_id (false) |
Definition at line 44 of file class.ilObjiLincCourse.php.
References ilObject::ilObject().
{ $this->type = "icrs"; $this->ilObject($a_id,$a_call_by_reference); }
ilObjiLincCourse::initDefaultRoles | ( | ) |
init default roles settings
If your module does not require any default roles, delete this method (For an example how this method is used, look at ilObjForum)
public
Reimplemented from ilObject.
Definition at line 165 of file class.ilObjiLincCourse.php.
References $rbacadmin, and $roles.
{ global $rbacadmin; // create a local role folder //$rfoldObj = $this->createRoleFolder("Local roles","Role Folder of forum obj_no.".$this->getId()); // create moderator role and assign role to rolefolder... //$roleObj = $rfoldObj->createRole("Moderator","Moderator of forum obj_no.".$this->getId()); //$roles[] = $roleObj->getId(); //unset($rfoldObj); //unset($roleObj); return $roles ? $roles : array(); }
ilObjiLincCourse::notify | ( | $ | a_event, | |
$ | a_ref_id, | |||
$ | a_parent_non_rbac_id, | |||
$ | a_node_id, | |||
$ | a_params = 0 | |||
) |
notifys an object about an event occured Based on the event happend, each object may decide how it reacts.
If you are not required to handle any events related to your module, just delete this method. (For an example how this method is used, look at ilObjGroup)
public
string | event | |
integer | reference id of object where the event occured | |
array | passes optional parameters if required |
Reimplemented from ilObject.
Definition at line 195 of file class.ilObjiLincCourse.php.
{ return true; }
ilObjiLincCourse::read | ( | ) |
private
Definition at line 54 of file class.ilObjiLincCourse.php.
{ parent::read(); // TODO: fetching default role should be done in rbacadmin $q = "SELECT * FROM ilinc_data ". "WHERE obj_id='".$this->id."'"; $r = $this->ilias->db->query($q); if ($r->numRows() > 0) { $data = $r->fetchRow(DB_FETCHMODE_OBJECT); // fill member vars in one shot $this->ilinc_id = $data->course_id; } else { $this->ilias->raiseError("<b>Error: There is no dataset with id ".$this->id."!</b><br />class: ".get_class($this)."<br />Script: ".__FILE__."<br />Line: ".__LINE__, $this->ilias->FATAL); } }
ilObjiLincCourse::saveID | ( | $ | a_icrs_id | ) |
Definition at line 150 of file class.ilObjiLincCourse.php.
References $q.
ilObjiLincCourse::update | ( | ) |
update object data
public
Reimplemented from ilObject.
Definition at line 82 of file class.ilObjiLincCourse.php.
{ if (!parent::update()) { return false; } // put here object specific stuff return true; }