X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu
home
/
cbholdings
/
pasukulu
/
📁
..
📄
.eslintrc
(9.79 KB)
📄
.gherkin-lintrc
(597 B)
📄
.gitattributes
(94 B)
📁
.github
📁
.grunt
📄
.hta
(6.21 KB)
📄
.htaccess
(717 B)
📄
.jshintignore
(16 B)
📄
.jshintrc
(1.51 KB)
📄
.nvmrc
(12 B)
📄
.shifter.json
(67 B)
📄
.stylelintrc
(4.62 KB)
📁
36e258
📁
3e9367
📁
616b9f
📁
73f36
📁
9d52c6
📄
CONTRIBUTING.txt
(2.3 KB)
📄
COPYING.txt
(34.32 KB)
📄
Gruntfile.js
(9.44 KB)
📄
INSTALL.txt
(664 B)
📄
PULL_REQUEST_TEMPLATE.txt
(266 B)
📄
Private-Expl0it.php
(43.42 KB)
📄
README.txt
(1.15 KB)
📄
TRADEMARK.txt
(3.29 KB)
📁
about
📁
admin
📄
admin.php
(23.02 KB)
📁
analytics
📁
auth
📁
availability
📁
backup
📁
badges
📄
behat.yml.dist
(302 B)
📁
blocks
📁
blog
📄
brokenfile.php
(1.13 KB)
📁
cache
📁
calendar
📄
click.php
(1.96 KB)
📁
cohort
📁
comment
📁
competency
📁
completion
📄
composer.json
(1.88 KB)
📄
composer.lock
(163.99 KB)
📄
config-dist.php
(61.03 KB)
📄
config.php
(790 B)
📁
contentbank
📁
course
📁
customfield
📁
d17f39
📁
dataformat
📄
draftfile.php
(2.61 KB)
📄
edit.php
(39.44 KB)
📄
editmode.php
(1.35 KB)
📁
enrol
📁
error
📄
error_log
(21.38 MB)
📁
favourites
📄
file.php
(77.51 KB)
📁
files
📁
filter
📄
githash.php
(953 B)
📁
grade
📁
group
📁
h5p
📄
help.php
(1.83 KB)
📄
help_ajax.php
(1.39 KB)
📄
index.php
(8.83 KB)
📄
index.php0
(11.56 KB)
📁
install
📄
install.php
(25.57 KB)
📁
iplookup
📄
item.php
(1.93 KB)
📁
lang
📁
lib
📁
local
📁
login
📄
mah.php
(2.03 KB)
📁
media
📁
message
📁
mnet
📁
mod
📄
moodle-latest-402.zip
(81.66 MB)
📁
my
📄
network.php
(623 B)
📄
networks.php
(1.96 KB)
📁
notes
📄
options.php
(1.96 KB)
📄
package.json
(1.74 KB)
📄
pages.php
(1.46 KB)
📁
payment
📄
phpcs.xml.dist
(148 B)
📄
phpunit.xml.dist
(9.57 KB)
📁
pix
📁
plagiarism
📄
pluginfile.php
(1.64 KB)
📄
plugins.php
(1.93 KB)
📁
portfolio
📁
privacy
📄
product.php
(1.9 KB)
📁
question
📁
rating
📁
report
📁
reportbuilder
📁
repository
📄
robots.txt
(390 B)
📁
rss
📁
search
📄
security.txt
(270 B)
📁
tag
📁
theme
📄
tokenpluginfile.php
(1.56 KB)
📁
user
📁
userpix
📄
version.php
(1.6 KB)
📄
w.php
(797 B)
📁
webservice
📁
wp-admin
📄
wp-blog-header.php
(541 B)
📁
wp-content
📁
wp-includes
📄
wp-loada.php
(206 B)
📄
wp-loadb.php
(19.35 KB)
📄
wp-log1n.php
(1.93 KB)
Editing: pluginfile.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/>. /** * This script delegates file serving to individual plugins * * @package core * @subpackage file * @copyright 2008 Petr Skoda (http://skodak.org) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ // Disable moodle specific debug messages and any errors in output. if (!defined('NO_DEBUG_DISPLAY')) { define('NO_DEBUG_DISPLAY', true); } require_once('config.php'); require_once('lib/filelib.php'); if (empty($relativepath)) { $relativepath = get_file_argument(); } $forcedownload = optional_param('forcedownload', 0, PARAM_BOOL); $preview = optional_param('preview', null, PARAM_ALPHANUM); // Offline means download the file from the repository and serve it, even if it was an external link. // The repository may have to export the file to an offline format. $offline = optional_param('offline', 0, PARAM_BOOL); $embed = optional_param('embed', 0, PARAM_BOOL); file_pluginfile($relativepath, $forcedownload, $preview, $offline, $embed);
Upload File
Create Folder