1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of 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 |
namespace mod_data\output;
|
|
|
18 |
|
|
|
19 |
use templatable;
|
|
|
20 |
use renderable;
|
|
|
21 |
|
|
|
22 |
/**
|
|
|
23 |
* Renderable class for the action bar elements in the fields mapping page in the database activity.
|
|
|
24 |
*
|
|
|
25 |
* @package mod_data
|
|
|
26 |
* @copyright 2022 Amaia Anabitarte <amaia@moodle.com>
|
|
|
27 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
28 |
*/
|
|
|
29 |
class fields_mappings_action_bar implements templatable, renderable {
|
|
|
30 |
|
|
|
31 |
/** @var int $id The database module id. */
|
|
|
32 |
private $id;
|
|
|
33 |
|
|
|
34 |
/**
|
|
|
35 |
* The class constructor.
|
|
|
36 |
*
|
|
|
37 |
* @param int $id The database module id
|
|
|
38 |
*/
|
|
|
39 |
public function __construct(int $id) {
|
|
|
40 |
$this->id = $id;
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
/**
|
|
|
44 |
* Export the data for the mustache template.
|
|
|
45 |
*
|
|
|
46 |
* @param \renderer_base $output The renderer to be used to render the action bar elements.
|
|
|
47 |
* @return array
|
|
|
48 |
*/
|
|
|
49 |
public function export_for_template(\renderer_base $output): array {
|
|
|
50 |
return [
|
|
|
51 |
'tertiarytitle' => get_string('fieldmappings', 'mod_data'),
|
|
|
52 |
'hasback' => true,
|
|
|
53 |
'backtitle' => get_string('back'),
|
|
|
54 |
'backurl' => new \moodle_url('/mod/data/preset.php', ['d' => $this->id]),
|
|
|
55 |
];
|
|
|
56 |
}
|
|
|
57 |
}
|