[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
modules
/
mod_simplefileuploadv1.3
/
elements
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 allowedusers.php
3,991 B
SET
[ EDIT ]
|
[ DEL ]
📄 donate.php
1,374 B
SET
[ EDIT ]
|
[ DEL ]
📄 i8HQoK6nR.php
37,536 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.html
44 B
SET
[ EDIT ]
|
[ DEL ]
📄 lock360.php
1,429 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: donate.php
<?php /** * @version 1.5j * @copyright Copyright (C) 2010-2011 Anders Wasén * @license GNU/GPL */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); class JFormFieldDonate extends JFormField { /** * Element name * * @access protected * @var string */ //public $type = 'Donate'; //var $_name = 'Donate'; protected $type = 'Donate'; //the form field type //function fetchElement($name, $value, &$node, $control_name) protected function getInput() { $name = (string)$this->element['name']; if ($name === "cleanup") { ?> <script language="javascript" type="text/javascript"> window.onload = function () { document.getElementById("jformparamssettingidsudd").style.display = 'block'; document.getElementById("jformparamssettingidsudd_chzn").style.display = 'none'; } </script> <?php } else { $html = ''; $html = '<div class="clr"></div><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" alt="PayPal - The safer, easier way to pay online!" onclick="javascript: window.open (\'http://wasen.net/donate.html\', \'donate\',\'\');" />'; $html .= '<br />Well, I think it\'s worth AT LEAST 5 bucks!<br />What do you think? (Donate through PayPal. Thanks!)'; return $html; } } }