本文整理匯總了PHP中pagination::setTplElement方法的典型用法代碼示例。如果您正苦於以下問題:PHP pagination::setTplElement方法的具體用法?PHP pagination::setTplElement怎麽用?PHP pagination::setTplElement使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pagination
的用法示例。
在下文中一共展示了pagination::setTplElement方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: pagination
<?php
/**
* Created by PhpStorm.
* User: Listopadov
* Date: 12.02.2016
* Time: 14:12
*/
require_once __DIR__ . "/../include/header.php";
?>
<div class="row">
<div class="col-md-2 category">
<?php
echo $categoryList;
?>
</div>
<div class="col-md-10">
<?php
echo $wisdom;
$page = new pagination($count_data, 10, $page);
$page->setTplElement("<li><a href='" . $path . "&page=%s'>%s</a></li>");
echo $page;
?>
</div>
</div>
<?php
require_once __DIR__ . "/../include/footer.php";
示例2: pagination
<?php
require_once "/../include/header.php";
?>
<section class="content">
<?php
echo $news;
?>
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<?php
$page = new pagination("news", 5, $page);
$page->setTplElement("<li><a href=\"?ctrl=news&action=News&page=%s\">%s</a></li>");
$page->setTplPrevious(" <li>\r\n <a href=\"?ctrl=news&action=News&page=%s\" aria-label=\"Previous\">\r\n <span aria-hidden=\"true\">«</span>\r\n </a>\r\n </li>");
$page->setTplNext("<li>\r\n <a href=\"?ctrl=news&action=News&page=%s\" aria-label=\"Next\">\r\n <span aria-hidden=\"true\">»</span>\r\n </a>\r\n </li>");
$page->responsePagination(3);
echo $page;
?>
</div>
<div class="col-sm-3"></div>
</div>
</section>
<?php
require_once "/../include/footer.php";