Your IP : 192.168.165.1


Current Path : C:/xampp/htdocs/moodle/lib/classes/task/
Upload File :
Current File : C:/xampp/htdocs/moodle/lib/classes/task/sync_plans_from_template_cohorts_task.php

<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

/**
 * Synchronise plans from template cohorts.
 *
 * @package    core_competency
 * @copyright  2015 Issam Taboubi <issam.taboubi@umontreal.ca>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

namespace core\task;
defined('MOODLE_INTERNAL') || die();

use core_competency\api;
use core_competency\template_cohort;

/**
 * Synchronise plans from template cohorts.
 *
 *
 * @package    core_competency
 * @copyright  2015 Issam Taboubi <issam.taboubi@umontreal.ca>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class sync_plans_from_template_cohorts_task extends \core\task\scheduled_task {

    /**
     * Get a descriptive name for this task.
     *
     * @return string
     */
    public function get_name() {
        return get_string('syncplanscohorts', 'core_competency');
    }

    /**
     * Do the job.
     */
    public function execute() {
        if (!api::is_enabled()) {
            return;
        }

        $missingplans = template_cohort::get_all_missing_plans(self::get_last_run_time());

        foreach ($missingplans as $missingplan) {
            foreach ($missingplan['userids'] as $userid) {
                try {
                    api::create_plan_from_template($missingplan['template'], $userid);
                } catch (\Exception $e) {
                    debugging(sprintf('Exception caught while creating plan for user %d from template %d. Message: %s',
                        $userid, $missingplan['template']->get_id(), $e->getMessage()), DEBUG_DEVELOPER);
                }
            }
        }
    }
}