| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/administrator/components/com_jce2/views/profile/tmpl/ |
Upload File : |
<?php
/**
* @package JCE
* @subpackage Admin
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (c) 2009-2024 Ryan Demmer. All rights reserved
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('JPATH_PLATFORM') or die;
use Joomla\CMS\Language\Text;
?>
<div class="tabbable tabs-left flex-column">
<?php //echo HTMLHelper::_('bootstrap.startTabSet', 'profile-editor', array('active' => 'profile-editor-setup')); ?>
<ul class="nav nav-tabs py-1">
<?php foreach (array('setup', 'typography', 'filesystem', 'advanced') as $key => $item): ?>
<li class="nav-item<?php echo $key === 0 ? ' active show' : ''; ?>"><a href="#" class="nav-link"><?php echo Text::_('WF_PROFILES_EDITOR_' . strtoupper($item), true); ?></a></li>
<?php endforeach;?>
</ul>
<div class="tab-content">
<?php foreach (array('setup', 'typography', 'filesystem', 'advanced') as $key => $item): ?>
<div class="tab-pane<?php echo $key === 0 ? ' active show' : ''; ?>">
<?php //echo HTMLHelper::_('bootstrap.addTab', 'profile-editor', 'profile-editor-' . $item, Text::_('WF_PROFILES_EDITOR_' . strtoupper($item), true));?>
<div class="row-fluid">
<?php echo $this->loadTemplate('editor_' . $item); ?>
</div>
</div>
<?php //echo HTMLHelper::_('bootstrap.endTab');?>
<?php endforeach;?>
</div>
<?php //echo HTMLHelper::_('bootstrap.endTabSet'); ?>
</div>