ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilStudyProgrammeAutoMembershipSource Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilStudyProgrammeAutoMembershipSource:

Public Member Functions

 __construct (int $prg_obj_id, string $source_type, int $source_id, bool $enabled, int $last_edited_usr_id, DateTimeImmutable $last_edited)
 
 getPrgObjId ()
 
 getSourceType ()
 
 getSourceId ()
 
 isEnabled ()
 
 getLastEditorId ()
 
 getLastEdited ()
 

Data Fields

const TYPE_ROLE = 'role'
 
const TYPE_GROUP = 'grp'
 
const TYPE_COURSE = 'crs'
 
const TYPE_ORGU = 'orgu'
 
const SOURCE_MAPPING
 

Protected Attributes

int $prg_obj_id
 
string $source_type
 
int $source_id
 
bool $enabled
 
int $last_edited_usr_id
 
DateTimeImmutable $last_edited
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class ilStudyProgrammeAutoMembershipSource

Author
: Nils Haagen nils..nosp@m.haag.nosp@m.en@co.nosp@m.ncep.nosp@m.ts-an.nosp@m.d-tr.nosp@m.ainin.nosp@m.g.de

Definition at line 26 of file class.ilStudyProgrammeAutoMembershipSource.php.

Constructor & Destructor Documentation

◆ __construct()

ilStudyProgrammeAutoMembershipSource::__construct ( int  $prg_obj_id,
string  $source_type,
int  $source_id,
bool  $enabled,
int  $last_edited_usr_id,
DateTimeImmutable  $last_edited 
)

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

References $enabled, $last_edited, $last_edited_usr_id, $prg_obj_id, $source_id, and $source_type.

54  {
55  if (!in_array($source_type, [
56  self::TYPE_ROLE,
57  self::TYPE_GROUP,
58  self::TYPE_COURSE,
59  self::TYPE_ORGU
60  ])) {
61  throw new InvalidArgumentException("Invalid source-type: " . $source_type, 1);
62  }
63 
64  $this->prg_obj_id = $prg_obj_id;
65  $this->source_type = $source_type;
66  $this->source_id = $source_id;
67  $this->enabled = $enabled;
68  $this->last_edited_usr_id = $last_edited_usr_id;
69  $this->last_edited = $last_edited;
70  }

Member Function Documentation

◆ getLastEdited()

ilStudyProgrammeAutoMembershipSource::getLastEdited ( )

Definition at line 97 of file class.ilStudyProgrammeAutoMembershipSource.php.

References $last_edited.

Referenced by ilStudyProgrammeAutoMembershipsSourceTest\testGetLastEdited().

+ Here is the caller graph for this function:

◆ getLastEditorId()

ilStudyProgrammeAutoMembershipSource::getLastEditorId ( )

Definition at line 92 of file class.ilStudyProgrammeAutoMembershipSource.php.

References $last_edited_usr_id.

Referenced by ilStudyProgrammeAutoMembershipsSourceTest\testGetLastEditorId().

+ Here is the caller graph for this function:

◆ getPrgObjId()

ilStudyProgrammeAutoMembershipSource::getPrgObjId ( )

◆ getSourceId()

◆ getSourceType()

ilStudyProgrammeAutoMembershipSource::getSourceType ( )

◆ isEnabled()

ilStudyProgrammeAutoMembershipSource::isEnabled ( )

Definition at line 87 of file class.ilStudyProgrammeAutoMembershipSource.php.

References $enabled.

Referenced by ilStudyProgrammeAutoMembershipsDBRepository\update().

+ Here is the caller graph for this function:

Field Documentation

◆ $enabled

bool ilStudyProgrammeAutoMembershipSource::$enabled
protected

Definition at line 43 of file class.ilStudyProgrammeAutoMembershipSource.php.

Referenced by __construct(), and isEnabled().

◆ $last_edited

DateTimeImmutable ilStudyProgrammeAutoMembershipSource::$last_edited
protected

Definition at line 45 of file class.ilStudyProgrammeAutoMembershipSource.php.

Referenced by __construct(), and getLastEdited().

◆ $last_edited_usr_id

int ilStudyProgrammeAutoMembershipSource::$last_edited_usr_id
protected

Definition at line 44 of file class.ilStudyProgrammeAutoMembershipSource.php.

Referenced by __construct(), and getLastEditorId().

◆ $prg_obj_id

int ilStudyProgrammeAutoMembershipSource::$prg_obj_id
protected

Definition at line 40 of file class.ilStudyProgrammeAutoMembershipSource.php.

Referenced by __construct(), and getPrgObjId().

◆ $source_id

int ilStudyProgrammeAutoMembershipSource::$source_id
protected

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

Referenced by __construct(), and getSourceId().

◆ $source_type

string ilStudyProgrammeAutoMembershipSource::$source_type
protected

Definition at line 41 of file class.ilStudyProgrammeAutoMembershipSource.php.

Referenced by __construct(), and getSourceType().

◆ SOURCE_MAPPING

◆ TYPE_COURSE

◆ TYPE_GROUP

◆ TYPE_ORGU

◆ TYPE_ROLE


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