8ca9e04f9a
Implement UI elements for editing columns of a report, taking their definitions from the selected datasource. Co-authored-By: David Matamoros <davidmc@moodle.com> Co-authored-By: Mikel Martín <mikel@moodle.com>
82 lines
2.6 KiB
PHP
82 lines
2.6 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/>.
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace core_reportbuilder\output;
|
|
|
|
use core_external;
|
|
use core\output\inplace_editable;
|
|
use core_reportbuilder\manager;
|
|
use core_reportbuilder\permission;
|
|
use core_reportbuilder\local\models\column;
|
|
|
|
/**
|
|
* Column heading editable component
|
|
*
|
|
* @package core_reportbuilder
|
|
* @copyright 2021 Paul Holden <paulh@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class column_heading_editable extends inplace_editable {
|
|
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param int $columnid
|
|
* @param column|null $column
|
|
*/
|
|
public function __construct(int $columnid, ?column $column = null) {
|
|
if ($column === null) {
|
|
$column = new column($columnid);
|
|
}
|
|
|
|
$report = $column->get_report();
|
|
$editable = permission::can_edit_report($report);
|
|
|
|
$columninstance = manager::get_report_from_persistent($report)
|
|
->get_column($column->get('uniqueidentifier'));
|
|
|
|
$displayvalue = $column->get('heading') ?: $columninstance->get_title();
|
|
|
|
parent::__construct('core_reportbuilder', 'columnheading', $column->get('id'), $editable, $displayvalue, $displayvalue,
|
|
get_string('renamecolumn', 'core_reportbuilder', $columninstance->get_title()));
|
|
}
|
|
|
|
/**
|
|
* Update column persistent and return self, called from inplace_editable callback
|
|
*
|
|
* @param int $columnid
|
|
* @param string $value
|
|
* @return self
|
|
*/
|
|
public static function update(int $columnid, string $value): self {
|
|
$column = new column($columnid);
|
|
|
|
$report = $column->get_report();
|
|
|
|
core_external::validate_context($report->get_context());
|
|
permission::require_can_edit_report($report);
|
|
|
|
$value = clean_param($value, PARAM_TEXT);
|
|
$column
|
|
->set('heading', $value)
|
|
->update();
|
|
|
|
return new self(0, $column);
|
|
}
|
|
}
|