. /** * URL external API * * @package mod_url * @category external * @copyright 2015 Juan Leyva * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @since Moodle 3.0 */ defined('MOODLE_INTERNAL') || die; require_once("$CFG->libdir/externallib.php"); /** * URL external functions * * @package mod_url * @category external * @copyright 2015 Juan Leyva * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @since Moodle 3.0 */ class mod_url_external extends external_api { /** * Returns description of method parameters * * @return external_function_parameters * @since Moodle 3.0 */ public static function view_url_parameters() { return new external_function_parameters( array( 'urlid' => new external_value(PARAM_INT, 'url instance id') ) ); } /** * Trigger the course module viewed event and update the module completion status. * * @param int $urlid the url instance id * @return array of warnings and status result * @since Moodle 3.0 * @throws moodle_exception */ public static function view_url($urlid) { global $DB, $CFG; require_once($CFG->dirroot . "/mod/url/lib.php"); $params = self::validate_parameters(self::view_url_parameters(), array( 'urlid' => $urlid )); $warnings = array(); // Request and permission validation. $url = $DB->get_record('url', array('id' => $params['urlid']), '*', MUST_EXIST); list($course, $cm) = get_course_and_cm_from_instance($url, 'url'); $context = context_module::instance($cm->id); self::validate_context($context); require_capability('mod/url:view', $context); // Call the url/lib API. url_view($url, $course, $cm, $context); $result = array(); $result['status'] = true; $result['warnings'] = $warnings; return $result; } /** * Returns description of method result value * * @return external_description * @since Moodle 3.0 */ public static function view_url_returns() { return new external_single_structure( array( 'status' => new external_value(PARAM_BOOL, 'status: true if success'), 'warnings' => new external_warnings() ) ); } }