mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00

The column class encapsulates all data related to a report column. It allows developers to define the type of data contained within it, in addition to how that data is retrieved and formatted for users. Report actions are used to define action elements that are added to each report row. They define an icon and link, and can be used to direct users to related pages according to the current row data.
43 lines
1.6 KiB
PHP
43 lines
1.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/>.
|
|
|
|
/**
|
|
* Coverage information for core_reportbuilder
|
|
*
|
|
* @package core_reportbuilder
|
|
* @copyright 2020 Paul Holden <paulh@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
return new class extends phpunit_coverage_info {
|
|
/** @var array The list of folders relative to the plugin root to include in coverage generation. */
|
|
protected $includelistfolders = [
|
|
'classes',
|
|
];
|
|
|
|
/** @var array The list of files relative to the plugin root to include in coverage generation. */
|
|
protected $includelistfiles = [];
|
|
|
|
/** @var array The list of folders relative to the plugin root to exclude in coverage generation. */
|
|
protected $excludelistfolders = [];
|
|
|
|
/** @var array The list of files relative to the plugin root to exclude in coverage generation. */
|
|
protected $excludelistfiles = [];
|
|
};
|