. declare(strict_types=1); namespace core_reportbuilder\customfield; use core\context; use core\context\system; use core\exception\coding_exception; use core\url; use core_customfield\field_controller; use core_reportbuilder\local\models\report; use core_reportbuilder\manager; use core_reportbuilder\permission; /** * Report handler for custom fields * * @package core_reportbuilder * @copyright 2025 David Carrillo * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class report_handler extends \core_customfield\handler { /** * @var report_handler|null */ protected static ?report_handler $singleton = null; /** * Returns a singleton * * @param int $itemid * @return self */ public static function create(int $itemid = 0): self { if (static::$singleton === null) { self::$singleton = new static($itemid); } return self::$singleton; } /** * Run reset code after unit tests to reset the singleton usage. */ public static function reset_caches(): void { if (!PHPUNIT_TEST) { throw new coding_exception('This feature is only intended for use in unit tests'); } static::$singleton = null; } /** * The current user can configure custom fields on this component. * * @return bool true if the current can configure custom fields, false otherwise */ public function can_configure(): bool { return has_capability('moodle/reportbuilder:configurecustomfields', $this->get_configuration_context()); } /** * The current user can edit custom fields on the given report. * * @param field_controller $field * @param int $instanceid id of the report to test edit permission * @return bool true if the current can edit custom fields, false otherwise */ public function can_edit(field_controller $field, int $instanceid = 0): bool { if ($instanceid > 0) { $report = report::get_record(['id' => $instanceid], MUST_EXIST); return permission::can_edit_report($report); } else { return permission::can_create_report(); } } /** * The current user can view custom fields on the given report. * * @param field_controller $field * @param int $instanceid id of the report to test edit permission * @return bool true if the current can edit custom fields, false otherwise */ public function can_view(field_controller $field, int $instanceid): bool { if ($instanceid > 0) { $report = report::get_record(['id' => $instanceid], MUST_EXIST); return permission::can_view_report($report); } return permission::can_view_reports_list(); } /** * Context that should be used for new categories created by this handler * * @return context the context for configuration */ public function get_configuration_context(): context { return system::instance(); } /** * URL for configuration of the fields on this handler. * * @return url The URL to configure custom fields for this component */ public function get_configuration_url(): url { return new url('/reportbuilder/customfield.php'); } /** * Returns the context for the data associated with the given instanceid. * * @param int $instanceid id of the record to get the context for * @return context the context for the given record */ public function get_instance_context(int $instanceid = 0): context { if ($instanceid > 0) { return (manager::get_report_from_id($instanceid))->get_context(); } else { return system::instance(); } } }