ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilOrgUnitOperation 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 ilOrgUnitOperation:

Public Member Functions

 __construct ($operation_id=0)
 
 getOperationId ()
 
 getOperationString ()
 
 withOperationString (string $operation_string)
 
 getDescription ()
 
 withDescription (string $description)
 
 getListOrder ()
 
 withListOrder (int $list_order)
 
 getContextId ()
 
 withContextId (int $context_id)
 

Data Fields

const OP_READ_LEARNING_PROGRESS = 'read_learning_progress'
 
const OP_WRITE_LEARNING_PROGRESS = 'write_learning_progress'
 
const OP_EDIT_SUBMISSION_GRADES = 'edit_submissions_grades'
 
const OP_ACCESS_RESULTS = 'access_results'
 
const OP_MANAGE_MEMBERS = 'manage_members'
 
const OP_ACCESS_ENROLMENTS = 'access_enrolments'
 
const OP_MANAGE_PARTICIPANTS = 'manage_participants'
 
const OP_SCORE_PARTICIPANTS = 'score_participants'
 
const OP_VIEW_CERTIFICATES = 'view_certificates'
 
const OP_VIEW_COMPETENCES = 'view_competences'
 
const OP_EDIT_USER_ACCOUNTS = 'edit_user_accounts'
 
const OP_VIEW_MEMBERS = 'view_members'
 
const OP_VIEW_INDIVIDUAL_PLAN = 'view_individual_plan'
 
const OP_EDIT_INDIVIDUAL_PLAN = 'edit_individual_plan'
 
const OP_READ_EMPLOYEE_TALK = 'read_employee_talk'
 
const OP_CREATE_EMPLOYEE_TALK = 'create_employee_talk'
 
const OP_EDIT_EMPLOYEE_TALK = 'edit_employee_talk'
 

Protected Attributes

int $operation_id = 0
 
string $operation_string = ''
 
string $description = ''
 
int $list_order = 0
 
int $context_id = 0
 

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 ilOrgUnitOperation

Author
Fabian Schmid fs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch

Definition at line 23 of file class.ilOrgUnitOperation.php.

Constructor & Destructor Documentation

◆ __construct()

ilOrgUnitOperation::__construct (   $operation_id = 0)

Definition at line 49 of file class.ilOrgUnitOperation.php.

References $operation_id.

50  {
51  $this->operation_id = $operation_id;
52  }

Member Function Documentation

◆ getContextId()

ilOrgUnitOperation::getContextId ( )

Definition at line 95 of file class.ilOrgUnitOperation.php.

References $context_id.

Referenced by ilOrgUnitOperationDBRepository\insert(), and ilOrgUnitOperationDBRepository\update().

95  : int
96  {
97  return $this->context_id;
98  }
+ Here is the caller graph for this function:

◆ getDescription()

ilOrgUnitOperation::getDescription ( )

Definition at line 71 of file class.ilOrgUnitOperation.php.

References $description.

Referenced by ilOrgUnitOperationDBRepository\insert(), and ilOrgUnitOperationDBRepository\update().

71  : string
72  {
73  return $this->description;
74  }
+ Here is the caller graph for this function:

◆ getListOrder()

ilOrgUnitOperation::getListOrder ( )

Definition at line 83 of file class.ilOrgUnitOperation.php.

References $list_order.

Referenced by ilOrgUnitOperationDBRepository\insert(), and ilOrgUnitOperationDBRepository\update().

83  : int
84  {
85  return $this->list_order;
86  }
+ Here is the caller graph for this function:

◆ getOperationId()

ilOrgUnitOperation::getOperationId ( )

Definition at line 54 of file class.ilOrgUnitOperation.php.

References $operation_id.

Referenced by ilOrgUnitOperationDBRepository\store(), and ilOrgUnitOperationDBRepository\update().

54  : ?int
55  {
56  return $this->operation_id;
57  }
+ Here is the caller graph for this function:

◆ getOperationString()

ilOrgUnitOperation::getOperationString ( )

Definition at line 59 of file class.ilOrgUnitOperation.php.

References $operation_string.

Referenced by ilOrgUnitOperationDBRepository\insert(), and ilOrgUnitOperationDBRepository\update().

59  : string
60  {
62  }
+ Here is the caller graph for this function:

◆ withContextId()

ilOrgUnitOperation::withContextId ( int  $context_id)

Definition at line 100 of file class.ilOrgUnitOperation.php.

References $context_id.

100  : self
101  {
102  $clone = clone $this;
103  $clone->context_id = $context_id;
104  return $clone;
105  }

◆ withDescription()

ilOrgUnitOperation::withDescription ( string  $description)

Definition at line 76 of file class.ilOrgUnitOperation.php.

References $description.

76  : self
77  {
78  $clone = clone $this;
79  $clone->description = $description;
80  return $clone;
81  }

◆ withListOrder()

ilOrgUnitOperation::withListOrder ( int  $list_order)

Definition at line 88 of file class.ilOrgUnitOperation.php.

References $list_order.

88  : self
89  {
90  $clone = clone $this;
91  $clone->list_order = $list_order;
92  return $clone;
93  }

◆ withOperationString()

ilOrgUnitOperation::withOperationString ( string  $operation_string)

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

References $operation_string.

64  : self
65  {
66  $clone = clone $this;
67  $clone->operation_string = $operation_string;
68  return $clone;
69  }

Field Documentation

◆ $context_id

int ilOrgUnitOperation::$context_id = 0
protected

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

Referenced by getContextId(), and withContextId().

◆ $description

string ilOrgUnitOperation::$description = ''
protected

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

Referenced by getDescription(), and withDescription().

◆ $list_order

int ilOrgUnitOperation::$list_order = 0
protected

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

Referenced by getListOrder(), and withListOrder().

◆ $operation_id

int ilOrgUnitOperation::$operation_id = 0
protected

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

Referenced by __construct(), and getOperationId().

◆ $operation_string

string ilOrgUnitOperation::$operation_string = ''
protected

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

Referenced by getOperationString(), and withOperationString().

◆ OP_ACCESS_ENROLMENTS

const ilOrgUnitOperation::OP_ACCESS_ENROLMENTS = 'access_enrolments'

Definition at line 30 of file class.ilOrgUnitOperation.php.

◆ OP_ACCESS_RESULTS

const ilOrgUnitOperation::OP_ACCESS_RESULTS = 'access_results'

◆ OP_CREATE_EMPLOYEE_TALK

const ilOrgUnitOperation::OP_CREATE_EMPLOYEE_TALK = 'create_employee_talk'

◆ OP_EDIT_EMPLOYEE_TALK

const ilOrgUnitOperation::OP_EDIT_EMPLOYEE_TALK = 'edit_employee_talk'

◆ OP_EDIT_INDIVIDUAL_PLAN

◆ OP_EDIT_SUBMISSION_GRADES

const ilOrgUnitOperation::OP_EDIT_SUBMISSION_GRADES = 'edit_submissions_grades'

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

◆ OP_EDIT_USER_ACCOUNTS

const ilOrgUnitOperation::OP_EDIT_USER_ACCOUNTS = 'edit_user_accounts'

Definition at line 35 of file class.ilOrgUnitOperation.php.

◆ OP_MANAGE_MEMBERS

◆ OP_MANAGE_PARTICIPANTS

const ilOrgUnitOperation::OP_MANAGE_PARTICIPANTS = 'manage_participants'

◆ OP_READ_EMPLOYEE_TALK

const ilOrgUnitOperation::OP_READ_EMPLOYEE_TALK = 'read_employee_talk'

◆ OP_READ_LEARNING_PROGRESS

◆ OP_SCORE_PARTICIPANTS

const ilOrgUnitOperation::OP_SCORE_PARTICIPANTS = 'score_participants'

◆ OP_VIEW_CERTIFICATES

const ilOrgUnitOperation::OP_VIEW_CERTIFICATES = 'view_certificates'

◆ OP_VIEW_COMPETENCES

const ilOrgUnitOperation::OP_VIEW_COMPETENCES = 'view_competences'

◆ OP_VIEW_INDIVIDUAL_PLAN

const ilOrgUnitOperation::OP_VIEW_INDIVIDUAL_PLAN = 'view_individual_plan'

◆ OP_VIEW_MEMBERS

const ilOrgUnitOperation::OP_VIEW_MEMBERS = 'view_members'

◆ OP_WRITE_LEARNING_PROGRESS

const ilOrgUnitOperation::OP_WRITE_LEARNING_PROGRESS = 'write_learning_progress'

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


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