Moodle PHP Documentation 4.5
Moodle 4.5dev (Build: 20240606) (d3ae1391abe)
enrol_cohort

Namespaces

namespace  enrol_cohort\privacy
  
 
namespace  enrol_cohort\task
  
 

Classes

class  enrol_cohort\privacy\provider
 Privacy provider for enrol_cohort. More...
 
class  enrol_cohort\task\enrol_cohort_sync
 Syncing enrolments task. More...
 
class  enrol_cohort_handler
 Event handler for cohort enrolment plugin. More...
 
class  enrol_cohort_plugin
 Cohort enrolment plugin implementation. More...
 

Functions

 enrol_cohort_allow_group_member_remove ($itemid, $groupid, $userid)
 Prevent removal of enrol roles.
 
 enrol_cohort_create_new_group ($courseid, $cohortid)
 Create a new group with the cohorts name.
 
 enrol_cohort_sync (progress_trace $trace, $courseid=NULL)
 Sync all cohort course links.
 
 xmldb_enrol_cohort_uninstall ()
 

Variables

 $capabilities
 
 $observers
 
 $plugin = 2024041600
 
 $tasks
 
const COHORT_CREATE_GROUP -1
 COHORT_CREATEGROUP constant for automatically creating a group for a cohort.
 
const COHORT_NOGROUP 0
 COHORT_NOGROUP constant for using no group for a cohort.
 
$plugin component = 'enrol_cohort'
 
$plugin version = 2024042200
 

Detailed Description

Function Documentation

◆ enrol_cohort_allow_group_member_remove()

enrol_cohort_allow_group_member_remove ( $itemid,
$groupid,
$userid )

Prevent removal of enrol roles.

Parameters
int$itemid
int$groupid
int$userid
Return values
bool

◆ enrol_cohort_create_new_group()

enrol_cohort_create_new_group ( $courseid,
$cohortid )

Create a new group with the cohorts name.

Parameters
int$courseid
int$cohortid
Return values
int\$groupidGroup ID for this cohort.

◆ enrol_cohort_sync()

enrol_cohort_sync ( progress_trace $trace,
$courseid = NULL )

Sync all cohort course links.

Parameters
progress_trace$trace
int$courseidone course, empty mean all
Return values
int0 means ok, 1 means error, 2 means plugin disabled

Variable Documentation

◆ $capabilities

$capabilities
Initial value:
= array(
'enrol/cohort:config' => array(
'captype' => 'write',
'contextlevel' => CONTEXT_COURSE,
'archetypes' => array(
'editingteacher' => CAP_ALLOW,
'manager' => CAP_ALLOW,
)
),
'enrol/cohort:unenrol' => array(
'captype' => 'write',
'contextlevel' => CONTEXT_COURSE,
'archetypes' => array(
'manager' => CAP_ALLOW,
)
),
)
const CONTEXT_COURSE
Course context level - one instances for each course.
Definition accesslib.php:128
const CAP_ALLOW
Allow permission, overrides CAP_PREVENT defined in parent contexts.
Definition accesslib.php:115

◆ $observers

$observers
Initial value:
= array(
array(
'eventname' => '\core\event\cohort_member_added',
'callback' => 'enrol_cohort_handler::member_added',
'includefile' => '/enrol/cohort/locallib.php'
),
array(
'eventname' => '\core\event\cohort_member_removed',
'callback' => 'enrol_cohort_handler::member_removed',
'includefile' => '/enrol/cohort/locallib.php'
),
array(
'eventname' => '\core\event\cohort_deleted',
'callback' => 'enrol_cohort_handler::deleted',
'includefile' => '/enrol/cohort/locallib.php'
),
)

◆ $tasks

$tasks
Initial value:
= array(
array(
'classname' => '\enrol_cohort\task\enrol_cohort_sync',
'blocking' => 0,
'minute' => 'R',
'hour' => '*',
'day' => '*',
'month' => '*',
'dayofweek' => '*',
'disabled' => 0
)
)