[ 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
/
backup
/
layouts
/
joomla
/
toolbar
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 containeropen.php
383 B
SET
[ EDIT ]
|
[ DEL ]
📄 iconclass.php
295 B
SET
[ EDIT ]
|
[ DEL ]
📄 link.php
531 B
SET
[ EDIT ]
|
[ DEL ]
📄 modal.php
1,255 B
SET
[ EDIT ]
|
[ DEL ]
📄 title.php
495 B
SET
[ EDIT ]
|
[ DEL ]
📄 versions.php
905 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: modal.php
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.core'); /** * Generic toolbar button layout to open a modal * ----------------------------------------------- * @param array $displayData Button parameters. Default supported parameters: * - selector string Unique DOM identifier for the modal. CSS id without # * - class string Button class * - icon string Button icon * - text string Button text */ $selector = $displayData['selector']; $class = isset($displayData['class']) ? $displayData['class'] : 'btn btn-small'; $icon = isset($displayData['icon']) ? $displayData['icon'] : 'out-3'; $text = isset($displayData['text']) ? $displayData['text'] : ''; ?> <button class="<?php echo $class; ?>" data-toggle="modal" data-target="#<?php echo $selector; ?>"> <span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo $text; ?> </button>