本文整理汇总了PHP中flexicontent_html::layout_selector方法的典型用法代码示例。如果您正苦于以下问题:PHP flexicontent_html::layout_selector方法的具体用法?PHP flexicontent_html::layout_selector怎么用?PHP flexicontent_html::layout_selector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flexicontent_html
的用法示例。
在下文中一共展示了flexicontent_html::layout_selector方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
// Form for Text search, Field Filters, Alpha-Index, Items Total Statistics, Selectors(e.g. per page, orderby)
// ***********************************************************************************************************
// Text search, Field Filters
$params =& $this->params;
$form_id = $form_name = 'adminForm';
$filters =& $this->filters;
$text_search_val = $this->lists['filter'];
include "filters.php";
// Alpha-Index
if ($this->params->get('show_alpha', 1)) {
echo $this->loadTemplate('alpha_html5');
}
$limit_selector = flexicontent_html::limit_selector($this->params, $formname = 'adminForm', $autosubmit = 1);
$orderby_selector = flexicontent_html::ordery_selector($this->params, $formname = 'adminForm', $autosubmit = 1, $extra_order_types = array(), $sfx = '');
$orderby_selector_2nd = flexicontent_html::ordery_selector($this->params, $formname = 'adminForm', $autosubmit = 1, $extra_order_types = array(), $sfx = '_2nd');
$clayout_selector = flexicontent_html::layout_selector($this->params, $formname = 'adminForm', $autosubmit = 1, 'clayout');
$tooltip_class = FLEXI_J30GE ? 'hasTooltip' : 'hasTip';
?>
<?php
if (count($this->items) && ($this->params->get('show_item_total', 1) || $limit_selector || $orderby_selector || $orderby_selector_2nd || $clayout_selector)) {
?>
<!-- BOF items total-->
<div id="item_total" class="item_total group">
<?php
if ($this->params->get('show_item_total', 1)) {
?>
<span class="fc_item_total_data<?php
echo $clayout_selector ? ' labelclear' : '';