mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 01:46:45 +02:00

Also performed the following - 1) Deprecated the assignment's add_to_log function (part of it's functionality exists in the base class to set the legacy log data). 2) Edited existing events to use the new base class. 3) Renamed event_test.php to events_test.php to match the rest of core. 4) Moved the event tests from locallib_test.php to events_test.php. 5) When setting legacy data use lang_string, rather than get_string, as we may not be using them if legacy log is disabled.
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
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/>.
|
|
|
|
/**
|
|
* The mod_assign abstract base class.
|
|
*
|
|
* Most events can extend this class.
|
|
*
|
|
* @package mod_assign
|
|
* @since Moodle 2.7
|
|
* @copyright 2014 Mark Nelson
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace mod_assign\event;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
abstract class base extends \core\event\base {
|
|
|
|
/**
|
|
* Legacy log data.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $legacylogdata;
|
|
|
|
/**
|
|
* Returns relevant URL.
|
|
*
|
|
* @return \moodle_url
|
|
*/
|
|
public function get_url() {
|
|
return new \moodle_url('/mod/assign/view.php', array('id' => $this->contextinstanceid));
|
|
}
|
|
|
|
/**
|
|
* Sets the legacy event log data.
|
|
*
|
|
* @param string $action The current action
|
|
* @param string $info A detailed description of the change. But no more than 255 characters.
|
|
* @param string $url The url to the assign module instance.
|
|
*/
|
|
public function set_legacy_logdata($action = '', $info = '', $url = '') {
|
|
$fullurl = 'view.php?id=' . $this->contextinstanceid;
|
|
if ($url != '') {
|
|
$fullurl .= '&' . $url;
|
|
}
|
|
|
|
$this->legacylogdata = array($this->courseid, 'assign', $action, $fullurl, $info, $this->contextinstanceid);
|
|
}
|
|
|
|
/**
|
|
* Return legacy data for add_to_log().
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function get_legacy_logdata() {
|
|
if (isset($this->legacylogdata)) {
|
|
return $this->legacylogdata;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|