當前位置: 首頁>>代碼示例>>PHP>>正文


PHP pagination::setTplElement方法代碼示例

本文整理匯總了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";
開發者ID:Jluct,項目名稱:obuceisea,代碼行數:30,代碼來源:wisdom.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\">&laquo;</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\">&raquo;</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";
開發者ID:Jluct,項目名稱:obuceisea,代碼行數:29,代碼來源:news.php


注:本文中的pagination::setTplElement方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。