. declare(strict_types=1); namespace core_reportbuilder\external\schedules; use external_api; use external_function_parameters; use external_value; use core_reportbuilder\manager; use core_reportbuilder\permission; use core_reportbuilder\local\helpers\schedule; defined('MOODLE_INTERNAL') || die(); global $CFG; require_once("{$CFG->libdir}/externallib.php"); /** * External method for deleting report schedules * * @package core_reportbuilder * @copyright 2021 Paul Holden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class delete extends external_api { /** * External method parameters * * @return external_function_parameters */ public static function execute_parameters(): external_function_parameters { return new external_function_parameters([ 'reportid' => new external_value(PARAM_INT, 'Report ID'), 'scheduleid' => new external_value(PARAM_INT, 'Schedule ID'), ]); } /** * External method execution * * @param int $reportid * @param int $scheduleid * @return bool */ public static function execute(int $reportid, int $scheduleid): bool { [ 'reportid' => $reportid, 'scheduleid' => $scheduleid, ] = self::validate_parameters(self::execute_parameters(), [ 'reportid' => $reportid, 'scheduleid' => $scheduleid, ]); $report = manager::get_report_from_id($reportid); self::validate_context($report->get_context()); permission::require_can_edit_report($report->get_report_persistent()); return schedule::delete_schedule($reportid, $scheduleid); } /** * External method return value * * @return external_value */ public static function execute_returns(): external_value { return new external_value(PARAM_BOOL); } }