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


PHP Book::getCount方法代碼示例

本文整理匯總了PHP中Book::getCount方法的典型用法代碼示例。如果您正苦於以下問題:PHP Book::getCount方法的具體用法?PHP Book::getCount怎麽用?PHP Book::getCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Book的用法示例。


在下文中一共展示了Book::getCount方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testGetCountRecent

 public function testGetCountRecent()
 {
     global $config;
     $config['cops_recentbooks_limit'] = 0;
     $entryArray = Book::getCount();
     $this->assertEquals(1, count($entryArray));
     $config['cops_recentbooks_limit'] = 2;
     $entryArray = Book::getCount();
     $entryRecentBooks = $entryArray[1];
     $this->assertEquals("2 most recent books", $entryRecentBooks->content);
     $config['cops_recentbooks_limit'] = 50;
 }
開發者ID:horus68,項目名稱:cops,代碼行數:12,代碼來源:bookTest.php

示例2: InitializeContent

 public function InitializeContent()
 {
     global $config;
     $this->title = $config['cops_title_default'];
     $this->subtitle = $config['cops_subtitle_default'];
     if (Base::noDatabaseSelected()) {
         $i = 0;
         foreach (Base::getDbNameList() as $key) {
             $nBooks = Book::getBookCount($i);
             array_push($this->entryArray, new Entry($key, "cops:{$i}:catalog", str_format(localize("bookword", $nBooks), $nBooks), "text", array(new LinkNavigation("?" . DB . "={$i}")), "", $nBooks));
             $i++;
             Base::clearDb();
         }
     } else {
         if (!in_array(PageQueryResult::SCOPE_AUTHOR, getCurrentOption('ignored_categories'))) {
             array_push($this->entryArray, Author::getCount());
         }
         if (!in_array(PageQueryResult::SCOPE_SERIES, getCurrentOption('ignored_categories'))) {
             $series = Serie::getCount();
             if (!is_null($series)) {
                 array_push($this->entryArray, $series);
             }
         }
         if (!in_array(PageQueryResult::SCOPE_PUBLISHER, getCurrentOption('ignored_categories'))) {
             $publisher = Publisher::getCount();
             if (!is_null($publisher)) {
                 array_push($this->entryArray, $publisher);
             }
         }
         if (!in_array(PageQueryResult::SCOPE_TAG, getCurrentOption('ignored_categories'))) {
             $tags = Tag::getCount();
             if (!is_null($tags)) {
                 array_push($this->entryArray, $tags);
             }
         }
         if (!in_array(PageQueryResult::SCOPE_RATING, getCurrentOption('ignored_categories'))) {
             $rating = Rating::getCount();
             if (!is_null($rating)) {
                 array_push($this->entryArray, $rating);
             }
         }
         if (!in_array("language", getCurrentOption('ignored_categories'))) {
             $languages = Language::getCount();
             if (!is_null($languages)) {
                 array_push($this->entryArray, $languages);
             }
         }
         foreach ($config['cops_calibre_custom_column'] as $lookup) {
             $customId = CustomColumn::getCustomId($lookup);
             if (!is_null($customId)) {
                 array_push($this->entryArray, CustomColumn::getCount($customId));
             }
         }
         $this->entryArray = array_merge($this->entryArray, Book::getCount());
         if (Base::isMultipleDatabaseEnabled()) {
             $this->title = Base::getDbName();
         }
     }
 }
開發者ID:Klemart3D,項目名稱:COPS,代碼行數:59,代碼來源:base.php

示例3: AdminPage

<?php

require_once "config.php";
require_once WWW_DIR . "/lib/adminpage.php";
require_once WWW_DIR . "/lib/book.php";
$page = new AdminPage();
$book = new Book();
$page->title = "Book List";
$concount = $book->getCount();
$offset = isset($_REQUEST["offset"]) ? $_REQUEST["offset"] : 0;
$page->smarty->assign('pagertotalitems', $concount);
$page->smarty->assign('pageroffset', $offset);
$page->smarty->assign('pageritemsperpage', ITEMS_PER_PAGE);
$page->smarty->assign('pagerquerybase', WWW_TOP . "/book-list.php?offset=");
$pager = $page->smarty->fetch("pager.tpl");
$page->smarty->assign('pager', $pager);
$booklist = $book->getRange($offset, ITEMS_PER_PAGE);
$page->smarty->assign('booklist', $booklist);
$page->content = $page->smarty->fetch('book-list.tpl');
$page->render();
開發者ID:scriptzteam,項目名稱:newzNZB-premium-indexer,代碼行數:20,代碼來源:book-list.php


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