Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
enrol_manual

Namespaces

namespace  enrol_manual\privacy
  
 
namespace  enrol_manual\task
  
 

Classes

class  enrol_manual\privacy\provider
 Privacy Subsystem for enrol_manual implementing null_provider. More...
 
class  enrol_manual\task\send_expiry_notifications
 The send expiry notifications task. More...
 
class  enrol_manual\task\sync_enrolments
 Syncing enrolments task. More...
 
class  enrol_manual_current_participant
 Enrolled users. More...
 
class  enrol_manual_deleteselectedusers_form
 The form to confirm the intention to bulk delete users enrolments. More...
 
class  enrol_manual_deleteselectedusers_operation
 A bulk operation for the manual enrolment plugin to delete selected users enrolments. More...
 
class  enrol_manual_editselectedusers_form
 The form to collect required information when bulk editing users enrolments. More...
 
class  enrol_manual_editselectedusers_operation
 A bulk operation for the manual enrolment plugin to edit selected users. More...
 
class  enrol_manual_enrol_users_form
 
class  enrol_manual_external
 
class  enrol_manual_plugin
 
class  enrol_manual_potential_participant
 Enrol candidates. More...
 

Functions

 enrol_manual_get_potential_cohorts ($context, $enrolid, $search='', $page=0, $perpage=25, $addedenrollment=0)
 Gets an array of the cohorts that can be enrolled in this course.
 
 enrol_manual_migrate_plugin_enrolments ($enrol)
 Migrates all enrolments of the given plugin to enrol_manual plugin, this is used for example during plugin uninstallation.
 
 enrol_manual_output_fragment_enrol_users_form ($args)
 Serve the manual enrol users form as a fragment.
 
 xmldb_enrol_manual_install ()
 
 xmldb_enrol_manual_upgrade ($oldversion)
 

Variables

 $capabilities
 
 $functions
 
 $messageproviders
 
 $plugin = 2023100400
 
 $tasks
 
$plugin component = 'enrol_manual'
 
$plugin version = 2023100900
 

Detailed Description

Function Documentation

◆ enrol_manual_get_potential_cohorts()

enrol_manual_get_potential_cohorts ( $context,
$enrolid,
$search = '',
$page = 0,
$perpage = 25,
$addedenrollment = 0 )

Gets an array of the cohorts that can be enrolled in this course.

Parameters
int$enrolid
string$search
int$pageDefaults to 0
int$perpageDefaults to 25
int$addedenrollment
Return values
arrayArray(totalcohorts => int, cohorts => array)

◆ enrol_manual_migrate_plugin_enrolments()

enrol_manual_migrate_plugin_enrolments ( $enrol)

Migrates all enrolments of the given plugin to enrol_manual plugin, this is used for example during plugin uninstallation.

NOTE: this function does not trigger role and enrolment related events.

Parameters
string$enrolThe enrolment method.

◆ enrol_manual_output_fragment_enrol_users_form()

enrol_manual_output_fragment_enrol_users_form ( $args)

Serve the manual enrol users form as a fragment.

Parameters
array$argsList of named arguments for the fragment loader.
Return values
string

Variable Documentation

◆ $functions

$functions
Initial value:
= array(
'enrol_manual_enrol_users' => array(
'classname' => 'enrol_manual_external',
'methodname' => 'enrol_users',
'classpath' => 'enrol/manual/externallib.php',
'description' => 'Manual enrol users',
'capabilities'=> 'enrol/manual:enrol',
'type' => 'write',
),
'enrol_manual_unenrol_users' => array(
'classname' => 'enrol_manual_external',
'methodname' => 'unenrol_users',
'classpath' => 'enrol/manual/externallib.php',
'description' => 'Manual unenrol users',
'capabilities'=> 'enrol/manual:unenrol',
'type' => 'write',
),
)
License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

◆ $messageproviders

$messageproviders
Initial value:
= array (
'expiry_notification' => array(),
)

◆ $tasks

$tasks
Initial value:
= array(
array(
'classname' => '\enrol_manual\task\sync_enrolments',
'blocking' => 0,
'minute' => '*/10',
'hour' => '*',
'day' => '*',
'month' => '*',
'dayofweek' => '*',
'disabled' => 0
),
array(
'classname' => '\enrol_manual\task\send_expiry_notifications',
'blocking' => 0,
'minute' => '*/10',
'hour' => '*',
'day' => '*',
'month' => '*',
'dayofweek' => '*',
'disabled' => 0
)
)