예제 #1
0
 /**
  * List the plans in the template, filtered by status.
  *
  * Requires moodle/competency:templateview capability at the system context.
  *
  * @param mixed $templateorid The id or the template.
  * @param int $status One of the plan status constants (or 0 for all plans).
  * @param int $skip The number of records to skip
  * @param int $limit The max number of records to return
  * @return plan[]
  */
 public static function list_plans_for_template($templateorid, $status = 0, $skip = 0, $limit = 100)
 {
     $template = $templateorid;
     if (!is_object($template)) {
         $template = new template($template);
     }
     // First we do a permissions check.
     if (!$template->can_read()) {
         throw new required_capability_exception($template->get_context(), 'moodle/competency:templateview', 'nopermissions', '');
     }
     return plan::get_records_for_template($template->get_id(), $status, $skip, $limit);
 }