File manager - Edit - /home/ferretapmx/public_html/icons.tar
Back
create.php 0000644 00000001107 15231065431 0006517 0 ustar 00 <?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 * @deprecated 4.3 will be removed in 6.0 */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; $params = $displayData['params']; ?> <?php if ($params->get('show_icons')) : ?> <span class="icon-plus icon-fw" aria-hidden="true"></span> <?php echo Text::_('JNEW'); ?> <?php else : ?> <?php echo Text::_('JNEW') . ' '; ?> <?php endif; ?> edit_lock.php 0000644 00000001641 15231065431 0007214 0 ustar 00 <?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; use Joomla\CMS\Language\Text; if (isset($displayData['ariaDescribed'])) { $aria_described = $displayData['ariaDescribed']; } elseif (isset($displayData['article'])) { $article = $displayData['article']; $aria_described = 'editarticle-' . (int) $article->id; } elseif (isset($displayData['contact'])) { $contact = $displayData['contact']; $aria_described = 'editcontact-' . (int) $contact->id; } $tooltip = $displayData['tooltip']; ?> <span class="hasTooltip icon-lock" aria-hidden="true"></span> <?php echo Text::_('JLIB_HTML_CHECKED_OUT'); ?> <div role="tooltip" id="<?php echo $aria_described; ?>"> <?php echo $tooltip; ?> </div> edit.php 0000644 00000001724 15231065431 0006206 0 ustar 00 <?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; use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; $article = $displayData['article']; $tooltip = $displayData['tooltip']; $nowDate = strtotime(Factory::getDate()); $icon = $article->state ? 'edit' : 'eye-slash'; $currentDate = Factory::getDate()->format('Y-m-d H:i:s'); $isUnpublished = ($article->publish_up > $currentDate) || !is_null($article->publish_down) && ($article->publish_down < $currentDate); if ($isUnpublished) { $icon = 'eye-slash'; } $aria_described = 'editarticle-' . (int) $article->id; ?> <span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo Text::_('JGLOBAL_EDIT'); ?> <div role="tooltip" id="<?php echo $aria_described; ?>"> <?php echo $tooltip; ?> </div> .htaccess 0000555 00000000355 15231065431 0006346 0 ustar 00 <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>