本文整理汇总了PHP中AdminUIHelper::render_pagination方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminUIHelper::render_pagination方法的具体用法?PHP AdminUIHelper::render_pagination怎么用?PHP AdminUIHelper::render_pagination使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminUIHelper
的用法示例。
在下文中一共展示了AdminUIHelper::render_pagination方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$cid = $input->get('cid', array(), 'array');
$listOrder = $this->escape($this->lists['filter_order']);
$listDirn = $this->escape($this->lists['filter_order_Dir']);
$saveOrder = $listOrder == 'ordering';
if ($saveOrder) {
$saveOrderingUrl = 'index.php?option=com_tsmart&controller=cityarea&task=saveOrderAjax&tmpl=component';
JHtml::_('sortablelist.sortable', 'city_area_list', 'adminForm', strtolower($listDirn), $saveOrderingUrl);
}
AdminUIHelper::startAdminArea($this);
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<div id="editcell">
<div class="vm-page-nav">
<?php
echo AdminUIHelper::render_pagination($this->pagination);
?>
</div>
<table class="adminlist table table-striped table-bordered" id="city_area_list" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="admin-checkbox">
<label class="checkbox"><input type="checkbox" name="toggle" value=""
onclick="Joomla.checkAll(this)"/><?php
echo $this->sort('tsmart_transfer_addon_id', 'Id');
?>
</label>
</th>
<th>
<?php
echo $this->sort('city_area_name', JText::_('GEO_CITY_NAME'));