| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/administrator/components/com_jce/views/profile/tmpl/ |
Upload File : |
<?php
/**
* @copyright Copyright (c) 2009-2022 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
$plugins = array_values(array_filter($this->plugins, function($plugin) {
return $plugin->editable && !empty($plugin->form);
}));
?>
<div class="<?php echo $this->formclass;?> tabbable tabs-left flex-column">
<?php //echo JHtml::_('bootstrap.startTabSet', 'profile-plugins', array('active' => 'profile-plugins-' . $plugins[0]->name));?>
<ul class="nav nav-tabs" id="profile-plugins-tabs">
<?php
$key = 0;
foreach ($plugins as $plugin) :
$plugin->state = "hide";
if ($plugin->active) {
$plugin->state = "";
$key++;
if ($key === 1) {
$plugin->state = "active";
}
}
$icons = '';
$title = '';
$title .= '<p>' . $plugin->title . '</p>';
if (!empty($plugin->icon)) {
foreach ($plugin->icon as $icon) {
$icons .= '<div class="mce-widget mce-btn mceButton ' . $plugin->class . '" title="' . $plugin->title . '"><span class="mce-ico mce-i-' . $icon . ' mceIcon mce_' . $icon . '"></span></div>';
}
$title .= '<div class="mceEditor mceDefaultSkin"><div class="mce-container mce-toolbar mceToolbarItem">' . $icons . '</div></div>';
}
//echo JHtml::_('bootstrap.addTab', 'profile-plugins', 'profile-plugins-' . $plugin->name, $title); ?>
<li class="nav-item <?php echo $plugin->state;?>"><a href="#profile-plugins-<?php echo $plugin->name;?>" class="nav-link"><?php echo $title;?></a></li>
<?php endforeach;?>
</ul>
<div class="tab-content">
<?php foreach ($plugins as $plugin) : ?>
<div class="tab-pane <?php echo $plugin->state;?>" id="profile-plugins-<?php echo $plugin->name;?>">
<div class="row-fluid">
<?php if ($plugin->form) :
$plugin->fieldsname = "config";
$plugin->name = $plugin->title;
$plugin->description = "";
echo JLayoutHelper::render('joomla.content.options_default', $plugin);
foreach ($plugin->extensions as $type => $extensions) : ?>
<h3><?php echo JText::_('WF_EXTENSIONS_' . strtoupper($type) . '_TITLE', true); ?></h3>
<?php foreach ($extensions as $name => $extension) : ?>
<div class="row-fluid">
<?php if ($extension->form) :
$extension->fieldsname = "";
$extension->name = JText::_($extension->title, true);
$extension->description = "";
echo JLayoutHelper::render('joomla.content.options_default', $extension);
endif; ?>
</div>
<?php endforeach; ?>
<?php endforeach;
endif; ?>
</div>
<?php //echo JHtml::_('bootstrap.endTab');?>
</div>
<?php endforeach;?>
</div>
<?php //echo JHtml::_('bootstrap.endTabSet'); ?>
</div>