Select Git revision
backup_manager.php
-
Justus Dieckmann authoredJustus Dieckmann authored
lib.php 4.45 KiB
<?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/>.
/**
* Interface for the subplugintype step
* It has to be implemented by all subplugins.
*
* @package tool_lifecycle
* @subpackage step
* @copyright 2017 Tobias Reischmann WWU
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace tool_lifecycle\step;
use tool_lifecycle\manager\step_manager;
use tool_lifecycle\response\step_response;
defined('MOODLE_INTERNAL') || die();
abstract class libbase {
/**
* Processes the course and returns a repsonse.
* The response tells either
* - that the subplugin is finished processing.
* - that the subplugin is not yet finished processing.
* - that a rollback for this course is necessary.
* @param int $processid of the respective process.
* @param int $instanceid of the step instance.
* @param mixed $course to be processed.
* @return step_response
*/
public abstract function process_course($processid, $instanceid, $course);
/**
* Processes the course in status waiting and returns a repsonse.
* The response tells either
* - that the subplugin is finished processing.
* - that the subplugin is not yet finished processing.
* - that a rollback for this course is necessary.
* @param int $processid of the respective process.
* @param int $instanceid of the step instance.
* @param mixed $course to be processed.
* @return step_response
*/
public function process_waiting_course($processid, $instanceid, $course) {
return step_response::proceed();
}
/**
* Can be overridden to define actions to take place before
* process_course() is called for every relevant course.
*/
public function pre_processing_bulk_operation() {
}
/**
* Can be overridden to define actions to take place after
* process_course() is called for every relevant course.
*/
public function post_processing_bulk_operation() {
}
/**
* Rolls back all changes made to the course
*
* @param int $processid of the respective process.
* @param int $instanceid of the step instance.
* @param mixed $course to be rolled back.
*/
public function rollback_course($processid, $instanceid, $course) {
}
/**
* The return value should be equivalent with the name of the subplugin folder.
* @return string technical name of the subplugin
*/
public abstract function get_subpluginname();
/**
* @return instance_setting[] containing settings keys and PARAM_TYPES
*/
public function instance_settings() {
return array();
}
/**
* This method can be overriden, to add form elements to the form_step_instance.
* It is called in definition().
* @param \MoodleQuickForm $mform
*/
public function extend_add_instance_form_definition($mform) {
}
/**
* This method can be overriden, to set default values to the form_step_instance.
* It is called in definition_after_data().
* @param \MoodleQuickForm $mform
* @param array $settings array containing the settings from the db.
*/
public function extend_add_instance_form_definition_after_data($mform, $settings) {
}
}
/**
* Class representing a local settings object for a subplugin instance.
* @package tool_lifecycle\step
*/
class instance_setting {
/** @var string name of the setting*/
public $name;
/** @var string param type of the setting, e.g. PARAM_INT */
public $paramtype;
/**
* Create a local settings object.
* @param string $name name of the setting
* @param string $paramtype param type. Used for cleansing and parsing, e.g. PARAM_INT.
*/
public function __construct($name, $paramtype) {
$this->name = $name;
$this->paramtype = $paramtype;
}
}