Ejemplo n.º 1
0
    echo $this->emptyStyle;
    ?>
">
				<?php 
    echo $this->emptyDataMessage;
    ?>
			</div>
		</div>

	<?php 
    $items = array();
    foreach ($group as $this->_row) {
        $items[] = $this->loadTemplate('row');
    }
    $class = 'fabrik_row well row-striped ' . $this->_row->class;
    echo FabrikHelperHTML::bootstrapGrid($items, $columns, $class, true, $this->_row->id);
    ?>
	</div>
	<?php 
}
?>

</div>
<?php 
echo $this->nav;
print_r($this->hiddenFields);
?>
</div>

</form>
<?php 
Ejemplo n.º 2
0
    }
    ?>
	</div>
	<?php 
}
?>
<div class="fabrikFilterContainer modal" id="filter_modal">

	<div class="modal-content">
		<h3><?php 
echo FabrikHelperHTML::icon('icon-filter', FText::_('COM_FABRIK_FILTER'));
?>
</h3>
		<table class="table table-stripped">
			<?php 
echo implode("\n", FabrikHelperHTML::bootstrapGrid($cols, $d->filterCols));
?>
		</table>
	</div>
	<div class="modal-footer">
		<a href="#" class="btn" data-dismiss="modal">Close</a>
		<?php 
if ($d->showClearFilters) {
    ?>
			<a class="btn clearFilters btn-flat" href="#">
				<?php 
    echo FabrikHelperHTML::icon('icon-refresh', FText::_('COM_FABRIK_CLEAR'));
    ?>
			</a>
		<?php 
}
Ejemplo n.º 3
0
							<img style="width:16px" src="<?php 
        echo JURI::base(true) . $button['image'];
        ?>
" />
							<?php 
        echo empty($button['text']) ? '' : '<span>' . $button['text'] . '</span>';
        ?>
						</a>
					</div>
				</div>
			</div>
		<?php 
    }
    ?>
	</div>
	<br>
<?php 
}
?>

<?php 
$items = array();
foreach ($lists as $list) {
    $items[] = '<p>
		<a href="index.php?option=com_fabrik&task=list.view&listid=' . $list->id . '" style="font-size: 36px;">
			<span class="' . $list->icon . '"></span> <span style="margin-left:6px">' . $list->label . '</span>
		</a>
	</p>';
}
echo FabrikHelperHTML::bootstrapGrid($items, 2, '', true);
Ejemplo n.º 4
0
	</div>

	<div class="col-sm-8 col-xs-12">
	<?php 
foreach ($this->rows as $groupedby => $group) {
    if ($this->isGrouped) {
        echo $this->grouptemplates[$groupedby];
    }
    ?>
		<div class="fabrikTable row" id="table_<?php 
    echo $this->table->id;
    ?>
" >
			<?php 
    $items = array();
    foreach ($group as $this->_row) {
        $items[] = $this->loadTemplate('row');
    }
    echo implode("\n", FabrikHelperHTML::bootstrapGrid($items, array(1, 2), 'col-grow-vertical'));
    ?>
		</div>
	<?php 
}
?>
	</div>
</div>




Ejemplo n.º 5
0
            if ($field->hidden) {
                echo $field->input;
            } else {
                $str = '';
                if ($field->fieldname == 'password1') {
                    $str .= '<input type="text" style="display:none">';
                }
                $str .= $field->input;
                $str .= $field->label;
                //$str .= '</div>';
                $items[] = $str;
            }
            ?>
						<?php 
        }
        echo implode("\n", FabrikHelperHTML::bootstrapGrid($items, array(1, 2), 'input-field'));
        ?>
					</div>
				<?php 
    }
    ?>
			<?php 
}
?>

			<?php 
if (count($this->twofactormethods) > 1) {
    ?>
				<fieldset>
					<legend><?php 
    echo JText::_('COM_USERS_PROFILE_TWO_FACTOR_AUTH');
Ejemplo n.º 6
0
			<div class="emptyDataMessage" style="<?php 
    echo $this->emptyStyle;
    ?>
">
				<?php 
    echo $this->emptyDataMessage;
    ?>
			</div>
		</div>

	<?php 
    $items = array();
    foreach ($group as $this->_row) {
        $items[] = $this->loadTemplate('row');
    }
    echo FabrikHelperHTML::bootstrapGrid($items, $columns, 'well', true);
    ?>
	</div>
	<?php 
}
?>

</div>
<?php 
echo $this->nav;
print_r($this->hiddenFields);
?>
</div>

</form>
<?php