1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of eduplayer module for Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* @package mod
|
|
|
19 |
* @subpackage eduplayer
|
|
|
20 |
* @author Humanage Srl <info@humanage.it>
|
|
|
21 |
* @copyright 2013 Humanage Srl <info@humanage.it>
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
/**
|
|
|
26 |
* Structure step to restore one eduplayer activity
|
|
|
27 |
*/
|
|
|
28 |
class restore_eduplayer_activity_structure_step extends restore_activity_structure_step {
|
|
|
29 |
|
|
|
30 |
protected function define_structure() {
|
|
|
31 |
|
|
|
32 |
$paths = array();
|
|
|
33 |
$paths[] = new restore_path_element('eduplayer', '/activity/eduplayer');
|
|
|
34 |
|
|
|
35 |
// Return the paths wrapped into standard activity structure
|
|
|
36 |
return $this->prepare_activity_structure($paths);
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
protected function process_eduplayer($data) {
|
|
|
40 |
global $DB;
|
|
|
41 |
|
|
|
42 |
$data = (object)$data;
|
|
|
43 |
$oldid = $data->id;
|
|
|
44 |
$data->course = $this->get_courseid();
|
|
|
45 |
$data->timecreated = $this->apply_date_offset($data->timecreated);
|
|
|
46 |
$data->timemodified = $this->apply_date_offset($data->timemodified);
|
|
|
47 |
|
|
|
48 |
// insert the eduplayer record
|
|
|
49 |
$newitemid = $DB->insert_record('eduplayer', $data);
|
|
|
50 |
// immediately after inserting "activity" record, call this
|
|
|
51 |
$this->apply_activity_instance($newitemid);
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
protected function after_execute() {
|
|
|
55 |
// Add eduplayer related files, no need to match by itemname (just internally handled context)
|
|
|
56 |
$this->add_related_files('mod_eduplayer', 'intro', null);
|
|
|
57 |
$this->add_related_files('mod_eduplayer', 'notes', null);
|
|
|
58 |
$this->add_related_files('mod_eduplayer', 'file', null);
|
|
|
59 |
$this->add_related_files('mod_eduplayer', 'captionsfile', null);
|
|
|
60 |
$this->add_related_files('mod_eduplayer', 'image', null);
|
|
|
61 |
}
|
|
|
62 |
}
|