61e8b806ec
On the Database page: - The List/single view is displayed in the right. - The buttons Import entries, export entries and Export to portfolio have been moved to the Actions menu. - The List/Single view headings have been removed. - The "Save settings" secondary button is hidden when advanced search is enabled. - The result (Found X out of Y entries, No records found) are not displayed as notifications anymore. On the Presets page: - The buttons (Import, Export and Save as preset) have been moved to an actions menu to the tertiary navigation. Some of these options have been renamed. - Remove the Action column heading from the table. On the Presets preview page: - Move the preset name to the heading in the tertiary navigation (Preview of xxxxx), and remove the current preset name from the page. - Align the List/single template to the right in the tertiary navigation. - Make primary the "Use this preset" button. On the Fields page: - Remove the "Manage fields" menu. - Remove the Export and Save as preset from the tertiary navigation. - Align Create a field to the right in the tertiary navigation. - Add a description at the top of the page. - Remove the Action column heading from the table. - Move field actions (Edit and Delete) to ellipsis. On the Templates page: - Move Export and Save as preset to the Actions menu. - Move the templates list to a tertiary navigation selector and remove the template heading. - Reorder the templates list (Add entry template should be displayed at the begining, instead of List template). - Rename "Enable editor" to "Enable code editor".
78 lines
2.7 KiB
PHP
78 lines
2.7 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/>.
|
|
|
|
namespace mod_data\output;
|
|
|
|
use templatable;
|
|
use renderable;
|
|
|
|
/**
|
|
* Renderable class for the action bar elements in the field pages in the database activity.
|
|
*
|
|
* @package mod_data
|
|
* @copyright 2021 Mihail Geshoski <mihail@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class fields_action_bar implements templatable, renderable {
|
|
|
|
/** @var int $id The database module id. */
|
|
private $id;
|
|
|
|
/** @var \action_menu|null $fieldselect The field selector object or null. */
|
|
private $fieldselect;
|
|
|
|
/**
|
|
* The class constructor.
|
|
*
|
|
* @param int $id The database module id
|
|
* @param null $unused1 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
* @param null $unused2 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
* @param null $unused3 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
* @param null $unused4 This parameter has been deprecated since 4.1 and should not be used anymore.
|
|
* @param \action_menu|null $fieldselect The field selector object or null
|
|
*/
|
|
public function __construct(int $id, $unused1 = null, $unused2 = null,
|
|
$unused3 = null, $unused4 = null,
|
|
?\action_menu $fieldselect = null) {
|
|
|
|
if ($unused1 !== null || $unused2 !== null || $unused3 !== null || $unused4 !== null) {
|
|
debugging('Deprecated argument passed to fields_action_bar constructor', DEBUG_DEVELOPER);
|
|
}
|
|
|
|
$this->id = $id;
|
|
$this->fieldselect = $fieldselect;
|
|
}
|
|
|
|
/**
|
|
* Export the data for the mustache template.
|
|
*
|
|
* @param \renderer_base $output The renderer to be used to render the action bar elements.
|
|
* @return array
|
|
*/
|
|
public function export_for_template(\renderer_base $output): array {
|
|
|
|
$data = [
|
|
'd' => $this->id,
|
|
];
|
|
|
|
if ($this->fieldselect) {
|
|
$data['fieldselect'] = $this->fieldselect->export_for_template($output);
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|