| Current Path : /home/m/e/g/megadansyp/www/administrator/components/com_fwgallery/views/tag/tmpl/ |
| Current File : /home/m/e/g/megadansyp/www/administrator/components/com_fwgallery/views/tag/tmpl/edit.php |
<?php
/**
* FW Gallery 6.7.2
* @copyright (C) 2020 Fastw3b
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link http://www.fastw3b.net/ Official website
**/
defined('_JEXEC') or die('Restricted access');
JToolBarHelper::title(JText::_('FWMG_ADMIN_TAGEDIT_TOOLBAR_TITLE'), ' fal fa-tags');
echo JLayoutHelper::render('common.menu_begin', array(
'view' => $this,
'title' => empty($this->object->id)?JText::_('FWMG_ADMIN_TAGEDIT_NEW'):(JText::sprintf('FWMG_ADMIN_TAGEDIT_EDIT',$this->object->name)),
'title_hint' => JText::_('FWMG_DOC_ADMIN_TAGEDIT_HINT')
), JPATH_COMPONENT);
if (!$this->plugin_installed or !$this->plugin_enabled) {
?>
<div class="alert alert-danger">
<?php
if (!$this->plugin_installed) {
echo JText::_('FWMG_TAGS_PLUGIN_NOT_INSTALLED');
} else {
echo JText::_('FWMG_TAGS_PLUGIN_NOT_ENABLED');
}
?>
</div>
<?php
} else {
echo JLayoutHelper::render('admin.tag.edit', array('view'=>$this), JPATH_SITE.'/plugins/fwgallery/tag/layouts');
}
echo JLayoutHelper::render('common.menu_end', array(), JPATH_COMPONENT);