本文整理匯總了PHP中FabrikHelperHTML::bootstrapGrid方法的典型用法代碼示例。如果您正苦於以下問題:PHP FabrikHelperHTML::bootstrapGrid方法的具體用法?PHP FabrikHelperHTML::bootstrapGrid怎麽用?PHP FabrikHelperHTML::bootstrapGrid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FabrikHelperHTML
的用法示例。
在下文中一共展示了FabrikHelperHTML::bootstrapGrid方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
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
示例2: implode
}
?>
</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
}
示例3: empty
<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);
示例4: foreach
</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>
示例5: implode
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');
示例6: array
<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