| Current Path : /home/poneycluc/www/plugins/system/t4/themes/base/html/layouts/joomla/content/icons/ |
| Current File : /home/poneycluc/www/plugins/system/t4/themes/base/html/layouts/joomla/content/icons/edit_lock.php |
<?php
/**
* @package Joomla.Site
* @subpackage Layout
*
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('JPATH_BASE') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
$tooltip = $displayData['tooltip'];
$legacy = $displayData['legacy'];
?>
<?php if ($legacy) : ?>
<span class="hasTooltip" title="<?php echo HTMLHelper::tooltipText($tooltip . '', 0); ?>">
<?php echo HTMLHelper::_('image', 'system/checked_out.png', null, null, true); ?>
</span>
<?php echo Text::_('JLIB_HTML_CHECKED_OUT'); ?>
<?php else : ?>
<span class="hasTooltip fa fa-lock" title="<?php echo HTMLHelper::tooltipText($tooltip . '', 0); ?>"></span>
<?php echo Text::_('JLIB_HTML_CHECKED_OUT'); ?>
<?php endif; ?>