Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Class for loading/storing related competencies from the DB.

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

Defines 1 class


Class: related_competency  - X-Ref

Class for loading/storing related_competencies from the DB.

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

return: array

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

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

validate_relatedcompetencyid($data)   X-Ref
Validate related competency ID.

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

get_relation($competencyid, $relatedcompetencyid)   X-Ref
Get relation specifying both competencies.

This does not perform any validation on the data passed. If the relation exists in the database
then it is loaded in a the model, if not then it is up to the developer to save the model.

param: int $competencyid
param: int $relatedcompetencyid
return: related_competency

get_related_competencies($competencyid)   X-Ref
Get the competencies related to a competency.

param: int $competencyid The competency ID.
return: competency[]

get_multiple_relations($competencyids)   X-Ref
Get the related competencies from competency ids.

param: int[] $competencyids Array of competency ids.
return: related_competency[]

delete_multiple_relations($competencyids)   X-Ref
Delete relations using competencies.

param: array $competencyids Array of competencies ids.
return: bool True if relations were deleted successfully.