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 field pages in the database activity.
|
|
|
24 |
*
|
|
|
25 |
* @package mod_data
|
|
|
26 |
* @copyright 2021 Mihail Geshoski <mihail@moodle.com>
|
|
|
27 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
28 |
*/
|
|
|
29 |
class fields_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 |
* @param null $unused1 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
|
39 |
* @param null $unused2 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
|
40 |
* @param null $unused3 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
|
41 |
* @param null $unused4 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
|
42 |
* @param \action_menu|null $unused5 This parameter has been deprecated since 4.2 and should not be used anymore.
|
|
|
43 |
*/
|
|
|
44 |
public function __construct(int $id, $unused1 = null, $unused2 = null,
|
|
|
45 |
$unused3 = null, $unused4 = null,
|
|
|
46 |
?\action_menu $unused5 = null) {
|
|
|
47 |
|
|
|
48 |
if ($unused1 !== null || $unused2 !== null || $unused3 !== null || $unused4 !== null || $unused5 !== null) {
|
|
|
49 |
debugging('Deprecated argument passed to fields_action_bar constructor', DEBUG_DEVELOPER);
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
$this->id = $id;
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
/**
|
|
|
56 |
* Export the data for the mustache template.
|
|
|
57 |
*
|
|
|
58 |
* @param \renderer_base $output The renderer to be used to render the action bar elements.
|
|
|
59 |
* @return array
|
|
|
60 |
*/
|
|
|
61 |
public function export_for_template(\renderer_base $output): array {
|
|
|
62 |
|
|
|
63 |
$data = [
|
|
|
64 |
'd' => $this->id,
|
|
|
65 |
'title' => get_string('managefields', 'mod_data'),
|
|
|
66 |
];
|
|
|
67 |
|
|
|
68 |
return $data;
|
|
|
69 |
}
|
|
|
70 |
}
|