Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla5/components/com_fabrik/views/form/tmpl/bootstrap_tabs/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla5/components/com_fabrik/views/form/tmpl/bootstrap_tabs/default.php

<?php
/**
 * Bootstrap Tabs Form Template
 *
 * @package     Joomla
 * @subpackage  Fabrik
 * @copyright   Copyright (C) 2005-2020  Media A-Team, Inc. - All rights
reserved.
 * @license     GNU/GPL http://www.gnu.org/copyleft/gpl.html
 * @since       3.1
 */

// No direct access
defined('_JEXEC') or die('Restricted access');

use Joomla\CMS\Language\Text;
use Joomla\CMS\Factory;

$form = $this->form;
$model = $this->getModel();
$groupTmpl = $model->editable ? 'group' :
'group_details';
$active = ($form->error != '') ? '' : '
fabrikHide';

if ($model->isMultiPage() && FabrikHelperHTML::isDebug())
{
	$app = Factory::getApplication();
	$app->enqueueMessage(Text::_('COM_FABRIK_ERR_TAB_FORM_TEMPLATE_INCOMPATIBLE_WITH_MULTIPAGE_FORMS'),
'error');
}

if ($this->params->get('show_page_heading', 1)) : ?>
	<div class="componentheading<?php echo
$this->params->get('pageclass_sfx')?>">
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
	</div>
<?php
endif;

if ($this->params->get('show-title', 1)) :?>
	<div class="page-header">
		<h1><?php echo $form->label;?></h1>
	</div>
<?php
endif;

echo $form->intro;
?>
<form method="post" <?php echo $form->attribs?>>
<?php
echo $this->plugintop;
?>

<div class="fabrikMainError alert alert-danger alert-dismissible
fabrikError<?php echo $active?>">
	<button class="btn-close" data-bs-dismiss="alert"
aria-label="<?php echo Text::_('JCLOSE');
?>"></button>
	<?php echo $form->error?>
</div>

<div class="row-fluid nav">
	<div class="col-sm-6 pull-right">
		<?php
		echo $this->loadTemplate('buttons');
		?>
	</div>
	<div class="col-sm-6">
		<?php
		echo $this->loadTemplate('relateddata');
		?>
	</div>
</div>


<?php
$i = 0;
$tabs = array();
$is_err = false;

foreach ($this->groups as $group) :
	foreach ($group->elements as $element) {
		if ($element->error != '') {
			$is_err = true;
			break;
		}
	}
	$err_class = $is_err ? ' fabrikErrorGroup' : '';
	$tabId = $this->form->id . '_' . (int)$this->rowid .
'_' . $i;
	// If this is multi-page then groups are consolidated until a group with a
page break
	// So we should only show a tab if: it is first tab, or if it is a page
break
	if (!$model->isMultiPage() || $i === 0 || $group->splitPage) :
		$is_err = false;
		$tab = new stdClass;
		$tab->id = 'group' . $group->id . '_tab';
		$tab->class = $err_class;
		$tab->css = $group->css;
		$tab->href = 'group-tab' . $tabId;
		$tab->label = !empty($group->title) ? $group->title :
$group->name;;
		$tabs[] = $tab;
		$i ++;
	endif;
endforeach;

echo
FabrikHelperHTML::getLayout('fabrik-tabs')->render((object)
array('tabs' => $tabs));
?>

<div class="tab-content">
	<?php

	$i = 0;
	foreach ($this->groups as $group) :
		$this->group = $group;
		$tabId = $this->form->id . '_' . (int)$this->rowid .
'_' . $i;
		$class = 'group' . $group->id . '_tab_content';

		if ($i == 0 || !$model->isMultiPage() || $group->splitPage) :
			if ($i != 0) :
				echo '</div>';
			endif;
			?>
			<div role="tabpanel" class="<?php echo $class;
?> tab-pane<?php if ($i == 0) echo " active"?>"
id="group-tab<?php echo $tabId;?>">
			<?php
			$i++;
		endif; ?>
			<fieldset class="<?php echo $group->class; ?>"
id="group<?php echo $group->id;?>" style="<?php
echo $group->css;?>">
				<?php
				if ($group->showLegend) : ?>
					<legend class="legend mt-3"><?php echo
$group->title;?></legend>
				<?php
				endif;

				if (!empty($group->intro)) : ?>
					<div class="groupintro"><?php echo $group->intro
?></div>
				<?php
				endif;

				/* Load the group template - this can be :
				 *  * default_group.php - standard group non-repeating rendered as an
unordered list
				 *  * default_repeatgroup.php - repeat group rendered as an unordered
list
				 *  * default_repeatgroup_table.php - repeat group rendered in a table.
				 */
				$this->elements = $group->elements;
				echo $this->loadTemplate($group->tmpl);

				if (!empty($group->outro)) : ?>
					<div class="groupoutro"><?php echo $group->outro
?></div>
				<?php
				endif;
			?>
			</fieldset>
		<?php
	endforeach;
	?>
	</div>
</div>
<?php
if ($model->editable) : ?>
<div class="fabrikHiddenFields">
	<?php echo $this->hiddenFields; ?>
</div>
<?php
endif;

echo $this->pluginbottom;
echo $this->loadTemplate('actions');
?>
</form>
<?php
echo $form->outro;
echo $this->pluginend;
echo FabrikHelperHTML::keepalive();
?>