X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/classes/progress
home
/
cbholdings
/
pasukulu
/
lib
/
classes
/
progress
/
📁
..
📄
base.php
(12.55 KB)
📄
db_updater.php
(3.88 KB)
📄
display.php
(4.99 KB)
📄
display_if_slow.php
(4.08 KB)
📄
none.php
(1.32 KB)
Editing: none.php
<?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/>. /** * Progress handler that ignores progress entirely. * * @package core * @copyright 2013 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\progress; defined('MOODLE_INTERNAL') || die(); /** * Progress handler that ignores progress entirely. * * @package core * @copyright 2013 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class none extends base { /** * When progress is updated, do nothing. * * @see \core\progress\base::update_progress() */ public function update_progress() { // Do nothing. } }
Upload File
Create Folder