MDL-59162 tool_models: Remove dependant models on uninstall

Part of MDL-57791 epic.
This commit is contained in:
David Monllao 2017-06-06 17:04:20 +02:00
parent 9ad87761ef
commit d16cf374eb
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<?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/>.
/**
* tool_models plugin uninstallation.
*
* @package tool_models
* @copyright 2017 David Monllao {@link http://www.davidmonllao.com}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
function xmldb_tool_models_uninstall() {
global $DB;
// Remove the models that are using this tool targets.
$targets = core_component::get_component_classes_in_namespace('tool_models', 'analytics\target');
$options = array();
foreach ($targets as $classname => $unused) {
$target = \core_analytics\manager::get_target($classname);
$options[] = '\\' . get_class($target);
}
list($sql, $params) = $DB->get_in_or_equal($options);
$models = $DB->get_records_select('analytics_models', "target $sql", $params);
foreach ($models as $modelobj) {
$model = new \core_analytics\model($modelobj);
$model->delete();
}
}

View File

@ -316,6 +316,17 @@ class model {
$this->uniqueid = null;
}
/**
* Removes the model.
*
* @return void
*/
public static function delete() {
global $DB;
$this->clear_model();
$DB->delete_record('analytics_models', array('id' => $this->model->id));
}
/**
* Evaluates the model datasets.
*