%PDF- %PDF-
| Direktori : /home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/config/tmpl/ |
| Current File : //home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/config/tmpl/default_form.php |
<?php
/**
* @version $Id$
* @package JSN_Framework
* @author JoomlaShine Team <support@joomlashine.com>
* @copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* Websites: http://www.joomlashine.com
* Technical Support: Feedback - http://www.joomlashine.com/contact-us/get-support.html
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
foreach ($fieldsets AS $fieldset)
{
?>
<fieldset>
<?php
if ($fieldset->label)
{
?>
<legend><?php echo JText::_($fieldset->label); ?></legend>
<?php
}
foreach ($fieldset->form->getFieldset() AS $field)
{
if ($field->label)
{
?>
<div id="<?php echo str_replace('_', '-', $field->id); ?>-field" class="control-group">
<?php
echo $field->label;
?>
<div class="controls"><?php echo $field->input; ?></div>
</div>
<?php
}
else
{
?>
<div id="<?php echo str_replace('_', '-', $field->id); ?>-field">
<?php
echo $field->input;
?>
</div>
<?php
}
}
if (isset($fieldset->form->actions))
{
?>
<div class="form-actions">
<div class="jsn-bootstrap"></div>
<?php
foreach ($fieldset->form->actions AS $action)
{
?>
<button class="btn btn-primary" <?php echo 'value="' . $action->task . '"' . ($action->track ? ' track-change="yes"' : '') . ($action->ajax ? ' ajax-request="yes"' : ''); ?>>
<?php echo JText::_($action->label); ?></button>
<?php
}
?>
</div>
<?php
}
?>
</fieldset>
<?php
}
// Setup form validation
echo JSNHtmlAsset::loadScript(
'jsn/validate',
array(
'id' => 'jsn-config-form',
'lang' => JSNUtilsLanguage::getTranslated(
array('JSN_EXTFW_INVALID_VALUE_TYPE', 'JSN_EXTFW_ERROR_FORM_VALIDATION_FAILED', 'JSN_EXTFW_SYSTEM_CUSTOM_ASSETS_INVALID')
)
),
true
);