Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 310 and 400] [Versions 39 and 400]

Class for loading/storing competencies from the DB.

Copyright: 2015 Damyon Wiese
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 413 lines (14 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class


Class: course_competency  - X-Ref

Class for loading/storing course_competencies from the DB.

define_properties()   X-Ref
Return the definition of the properties of this model.

return: array

before_validate()   X-Ref
Hook to execute before validate.

return: void

get_courses_with_competency_and_user($competencyid, $userid)   X-Ref
Return the courses where both competency and user are.

A user is considered being in a course when they are enrolled, the enrolment is valid,
the enrolment instance is enabled, and the enrolment plugin is enabled..

return: array Indexed by course ID.
param: int $competencyid The competency ID.
param: int $userid The user ID.

get_ruleoutcome_list()   X-Ref
Return a list of rules.

return: array Indexed by outcome value.

get_ruleoutcome_name($ruleoutcome)   X-Ref
Human readable rule name.

return: lang_string
param: int $ruleoutcome The value of ruleoutcome.

validate_courseid($data)   X-Ref
Validate course ID.

return: true|lang_string
param: int $data The course ID.

validate_competencyid($data)   X-Ref
Validate competency ID.

return: true|lang_string
param: int $data The competency ID.

list_courses_min($competencyid)   X-Ref
Return the course IDs and visible flags that include this competency.

Only the ids and visible flag are returned, for the full records use list_courses.

return: array containing courseid and visible.
param: int $competencyid The competency id

list_courses($competencyid)   X-Ref
Return partial course records foreach course that contains this competency.

return: array[stdClass] Array of course records containg id, visible, shortname, idnumber, fullname
param: int $competencyid The competency id

count_competencies($courseid)   X-Ref
Count the competencies in this course.

return: int
param: int $courseid The course id

list_competencies($courseid)   X-Ref
List the competencies in this course.

return: competency[] Indexed by competency ID.
param: int $courseid The course id

get_competency($courseid, $competencyid)   X-Ref
Get a single competency from the course (only if it is really in the course).

return: competency
param: int $courseid The course id
param: int $competencyid The competency id

after_delete($result)   X-Ref
Hook to execute after delete.

return: void
param: bool $result Whether or not the delete was successful.

get_course_competency($courseid, $competencyid)   X-Ref
Get the specified course_competency in this course.

return: course_competency
param: int $courseid The course id
param: int $competencyid The competency id

list_course_competencies($courseid)   X-Ref
List the course_competencies in this course.

return: course_competency[]
param: int $courseid The course id

has_records_for_competencies($competencyids)   X-Ref
Check if course competency has records for competencies.

return: boolean Return true if one or more than a competency was found in a course.
param: array $competencyids Array of competencies ids.