Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Static Public Member Functions | Public Attributes | Static Protected Member Functions | List of all members
completion_completion Class Reference
Inheritance diagram for completion_completion:
data_object

Public Member Functions

 delete ()
 Deletes this object from the database. More...
 
 get_record_data ()
 Returns object with fields and values that are defined in database. More...
 
 insert ()
 Records this object in the Database, sets its id to the returned value, and returns that value. More...
 
 is_complete ()
 Return status of this completion. More...
 
 load_optional_fields ()
 Makes sure all the optional fields are loaded. More...
 
 mark_complete ($timecomplete=null)
 Mark this user complete in this course. More...
 
 mark_enrolled ($timeenrolled=null)
 Mark this user as started (or enrolled) in this course. More...
 
 mark_inprogress ($timestarted=null)
 Mark this user as inprogress in this course. More...
 
 notify_changed ($deleted)
 Called immediately after the object data has been inserted, updated, or deleted in the database. More...
 
 update ()
 Updates this object in the Database, based on its object variables. More...
 
 update_from_db ()
 Using this object's id field, fetches the matching record in the DB, and looks at each variable in turn. More...
 

Static Public Member Functions

static fetch ($params)
 Finds and returns a data_object instance based on params. More...
 
static fetch_all ($params)
 Finds and returns all data_object instances based on params. More...
 
static fetch_all_helper ($table, $classname, $params)
 Factory method - uses the parameters to retrieve all matching instances from the DB. More...
 
static set_properties (&$instance, $params)
 Given an associated array or object, cycles through each key/variable and assigns the value to the corresponding variable in this object. More...
 

Public Attributes

int $course
 
int $id
 
array $optional_fields = array()
 Array of optional fields with default values - usually long text information that is not always needed. More...
 
int $reaggregate
 
array $required_fields
 
string $table = 'course_completions'
 
int $timecompleted
 
int $timeenrolled
 
int $timestarted
 Time the user started their course completion completion_completion::mark_inprogress().
 
Array $unique_fields = array()
 
int $userid
 

Static Protected Member Functions

static fetch_helper ($table, $classname, $params)
 Factory method - uses the parameters to retrieve matching instance from the DB. More...
 

Member Function Documentation

◆ delete()

data_object::delete ( )
inherited

Deletes this object from the database.

Return values
boolsuccess

◆ fetch()

static completion_completion::fetch (   $params)
static

Finds and returns a data_object instance based on params.

Parameters
array$paramsassociative arrays varname = >value
Return values
data_objectinstance of data_object or false if none found.

Reimplemented from data_object.

◆ fetch_all()

static data_object::fetch_all (   $params)
staticinherited

Finds and returns all data_object instances based on params.

This function MUST be overridden by all deriving classes.

Parameters
array$paramsassociative arrays varname => value
Exceptions
coding_exceptionThis function MUST be overridden
Return values
arrayarray of data_object instances or false if none found.

Reimplemented in completion_criteria, completion_criteria_completion, and completion_aggregation.

◆ fetch_all_helper()

static data_object::fetch_all_helper (   $table,
  $classname,
  $params 
)
staticinherited

Factory method - uses the parameters to retrieve all matching instances from the DB.

@final

Parameters
string$tableThe table name to fetch from
string$classnameThe class that you want the result instantiated as
array$paramsAny params required to select the desired row
Return values
mixedarray of object instances or false if not found

◆ fetch_helper()

static data_object::fetch_helper (   $table,
  $classname,
  $params 
)
staticprotectedinherited

Factory method - uses the parameters to retrieve matching instance from the DB.

@final

Parameters
string$tableThe table name to fetch from
string$classnameThe class that you want the result instantiated as
array$paramsAny params required to select the desired row
Return values
objectInstance of $classname or false.

◆ get_record_data()

data_object::get_record_data ( )
inherited

Returns object with fields and values that are defined in database.

Return values
stdClass

◆ insert()

data_object::insert ( )
inherited

Records this object in the Database, sets its id to the returned value, and returns that value.

If successful this function also fetches the new object data from database and stores it in object properties.

Return values
intPK ID if successful, false otherwise

◆ is_complete()

completion_completion::is_complete ( )

Return status of this completion.

Return values
bool

◆ load_optional_fields()

data_object::load_optional_fields ( )
inherited

Makes sure all the optional fields are loaded.

If id present (==instance exists in db) fetches data from db. Defaults are used for new instances.

◆ mark_complete()

completion_completion::mark_complete (   $timecomplete = null)

Mark this user complete in this course.

This generally happens when the required completion criteria in the course are complete.

Parameters
integer$timecompleteTime completed (optional)
Return values
void

◆ mark_enrolled()

completion_completion::mark_enrolled (   $timeenrolled = null)

Mark this user as started (or enrolled) in this course.

If the user is already marked as started, no change will occur

Parameters
integer$timeenrolledTime enrolled (optional)

◆ mark_inprogress()

completion_completion::mark_inprogress (   $timestarted = null)

Mark this user as inprogress in this course.

If the user is already marked as inprogress, the time will not be changed

Parameters
integer$timestartedTime started (optional)

◆ notify_changed()

data_object::notify_changed (   $deleted)
inherited

Called immediately after the object data has been inserted, updated, or deleted in the database.

Default does nothing, can be overridden to hook in special behaviour.

Parameters
bool$deletedSet this to true if it has been deleted.

◆ set_properties()

static data_object::set_properties ( $instance,
  $params 
)
staticinherited

Given an associated array or object, cycles through each key/variable and assigns the value to the corresponding variable in this object.

@final

Parameters
data_object$instance
array$params

◆ update()

data_object::update ( )
inherited

Updates this object in the Database, based on its object variables.

ID must be set.

Return values
boolsuccess

◆ update_from_db()

data_object::update_from_db ( )
inherited

Using this object's id field, fetches the matching record in the DB, and looks at each variable in turn.

If the DB has different data, the db's data is used to update the object. This is different from the update() function, which acts on the DB record based on the object.

Return values
boolTrue for success, false otherwise.

Member Data Documentation

◆ $optional_fields

array data_object::$optional_fields = array()
inherited

Array of optional fields with default values - usually long text information that is not always needed.

If you want to create an instance without optional fields use: new data_object($only_required_fields, false);

◆ $required_fields

array completion_completion::$required_fields
Initial value:
= array('id', 'userid', 'course',
'timeenrolled', 'timestarted', 'timecompleted', 'reaggregate')

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