<?php
// no direct access
defined('_JEXEC') or die('Restricted access');
JHTML::_('behavior.mootools');
$tabs = KFactory::get('lib.koowa.template.helper.tabs');
?>
<div class="col width-60">
<form name="adminForm" action="<?= @route() ?>" method="post">
<input type="hidden" name="action" value="save" />
<?= $tabs->startPane('socialengine_1') ?>
<?php $groups = @$meta->getGroups() ?>
<?php foreach($groups as $key=>$value) : ?>
<?= $tabs->startPanel(JText::_($key), array()) ?>
<?= @$meta->render('params', $key) ?>
<?= $tabs->endPanel() ?>
<?php endforeach ?>
<?= $tabs->endPane() ?>
</form>
</div>
<div class="col width-40"></div>
<div class="clr"></div>