@@ -9,8 +9,8 @@ |
||
| 9 | 9 | class LinkFacet extends Link |
| 10 | 10 | { |
| 11 | 11 | public function __construct($phref, $ptitle = NULL, $pfacetGroup = NULL, $pactiveFacet = FALSE) { |
| 12 | - parent::__construct ($phref, Link::OPDS_PAGING_TYPE, "http://opds-spec.org/facet", $ptitle, $pfacetGroup, $pactiveFacet); |
|
| 13 | - if (!is_null (GetUrlParam (DB))) $this->href = addURLParameter ($this->href, DB, GetUrlParam (DB)); |
|
| 12 | + parent::__construct($phref, Link::OPDS_PAGING_TYPE, "http://opds-spec.org/facet", $ptitle, $pfacetGroup, $pactiveFacet); |
|
| 13 | + if (!is_null(GetUrlParam(DB))) $this->href = addURLParameter($this->href, DB, GetUrlParam(DB)); |
|
| 14 | 14 | $this->href = parent::getScriptName() . $this->href; |
| 15 | 15 | } |
| 16 | 16 | } |
@@ -8,10 +8,10 @@ discard block |
||
| 8 | 8 | |
| 9 | 9 | class PageCustomize extends Page |
| 10 | 10 | { |
| 11 | - private function isChecked ($key, $testedValue = 1) { |
|
| 12 | - $value = getCurrentOption ($key); |
|
| 13 | - if (is_array ($value)) { |
|
| 14 | - if (in_array ($testedValue, $value)) { |
|
| 11 | + private function isChecked($key, $testedValue = 1) { |
|
| 12 | + $value = getCurrentOption($key); |
|
| 13 | + if (is_array($value)) { |
|
| 14 | + if (in_array($testedValue, $value)) { |
|
| 15 | 15 | return "checked='checked'"; |
| 16 | 16 | } |
| 17 | 17 | } else { |
@@ -22,29 +22,29 @@ discard block |
||
| 22 | 22 | return ""; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - private function isSelected ($key, $value) { |
|
| 26 | - if (getCurrentOption ($key) == $value) { |
|
| 25 | + private function isSelected($key, $value) { |
|
| 26 | + if (getCurrentOption($key) == $value) { |
|
| 27 | 27 | return "selected='selected'"; |
| 28 | 28 | } |
| 29 | 29 | return ""; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - private function getStyleList () { |
|
| 33 | - $result = array (); |
|
| 34 | - foreach (glob ("templates/" . getCurrentTemplate () . "/styles/style-*.css") as $filename) { |
|
| 35 | - if (preg_match ('/styles\/style-(.*?)\.css/', $filename, $m)) { |
|
| 36 | - array_push ($result, $m [1]); |
|
| 32 | + private function getStyleList() { |
|
| 33 | + $result = array(); |
|
| 34 | + foreach (glob("templates/" . getCurrentTemplate() . "/styles/style-*.css") as $filename) { |
|
| 35 | + if (preg_match('/styles\/style-(.*?)\.css/', $filename, $m)) { |
|
| 36 | + array_push($result, $m [1]); |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | return $result; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function InitializeContent () |
|
| 42 | + public function InitializeContent() |
|
| 43 | 43 | { |
| 44 | - $this->title = localize ("customize.title"); |
|
| 45 | - $this->entryArray = array (); |
|
| 44 | + $this->title = localize("customize.title"); |
|
| 45 | + $this->entryArray = array(); |
|
| 46 | 46 | |
| 47 | - $ignoredBaseArray = array (PageQueryResult::SCOPE_AUTHOR, |
|
| 47 | + $ignoredBaseArray = array(PageQueryResult::SCOPE_AUTHOR, |
|
| 48 | 48 | PageQueryResult::SCOPE_TAG, |
| 49 | 49 | PageQueryResult::SCOPE_SERIES, |
| 50 | 50 | PageQueryResult::SCOPE_PUBLISHER, |
@@ -52,49 +52,49 @@ discard block |
||
| 52 | 52 | "language"); |
| 53 | 53 | |
| 54 | 54 | $content = ""; |
| 55 | - array_push ($this->entryArray, new Entry ("Template", "", |
|
| 55 | + array_push($this->entryArray, new Entry("Template", "", |
|
| 56 | 56 | "<span style='cursor: pointer;' onclick='$.cookie(\"template\", \"bootstrap\", { expires: 365 });window.location=$(\".headleft\").attr(\"href\");'>Click to switch to Bootstrap</span>", "text", |
| 57 | - array ())); |
|
| 57 | + array())); |
|
| 58 | 58 | if (!preg_match("/(Kobo|Kindle\/3.0|EBRD1101)/", $_SERVER['HTTP_USER_AGENT'])) { |
| 59 | 59 | $content .= '<select id="style" onchange="updateCookie (this);">'; |
| 60 | - foreach ($this-> getStyleList () as $filename) { |
|
| 61 | - $content .= "<option value='{$filename}' " . $this->isSelected ("style", $filename) . ">{$filename}</option>"; |
|
| 60 | + foreach ($this-> getStyleList() as $filename) { |
|
| 61 | + $content .= "<option value='{$filename}' " . $this->isSelected("style", $filename) . ">{$filename}</option>"; |
|
| 62 | 62 | } |
| 63 | 63 | $content .= '</select>'; |
| 64 | 64 | } else { |
| 65 | - foreach ($this-> getStyleList () as $filename) { |
|
| 66 | - $content .= "<input type='radio' onchange='updateCookieFromCheckbox (this);' id='style-{$filename}' name='style' value='{$filename}' " . $this->isChecked ("style", $filename) . " /><label for='style-{$filename}'> {$filename} </label>"; |
|
| 65 | + foreach ($this-> getStyleList() as $filename) { |
|
| 66 | + $content .= "<input type='radio' onchange='updateCookieFromCheckbox (this);' id='style-{$filename}' name='style' value='{$filename}' " . $this->isChecked("style", $filename) . " /><label for='style-{$filename}'> {$filename} </label>"; |
|
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | - array_push ($this->entryArray, new Entry (localize ("customize.style"), "", |
|
| 69 | + array_push($this->entryArray, new Entry(localize("customize.style"), "", |
|
| 70 | 70 | $content, "text", |
| 71 | - array ())); |
|
| 72 | - if (!useServerSideRendering ()) { |
|
| 73 | - $content = '<input type="checkbox" onchange="updateCookieFromCheckbox (this);" id="use_fancyapps" ' . $this->isChecked ("use_fancyapps") . ' />'; |
|
| 74 | - array_push ($this->entryArray, new Entry (localize ("customize.fancybox"), "", |
|
| 71 | + array())); |
|
| 72 | + if (!useServerSideRendering()) { |
|
| 73 | + $content = '<input type="checkbox" onchange="updateCookieFromCheckbox (this);" id="use_fancyapps" ' . $this->isChecked("use_fancyapps") . ' />'; |
|
| 74 | + array_push($this->entryArray, new Entry(localize("customize.fancybox"), "", |
|
| 75 | 75 | $content, "text", |
| 76 | - array ())); |
|
| 76 | + array())); |
|
| 77 | 77 | } |
| 78 | - $content = '<input type="number" onchange="updateCookie (this);" id="max_item_per_page" value="' . getCurrentOption ("max_item_per_page") . '" min="-1" max="1200" pattern="^[-+]?[0-9]+$" />'; |
|
| 79 | - array_push ($this->entryArray, new Entry (localize ("customize.paging"), "", |
|
| 78 | + $content = '<input type="number" onchange="updateCookie (this);" id="max_item_per_page" value="' . getCurrentOption("max_item_per_page") . '" min="-1" max="1200" pattern="^[-+]?[0-9]+$" />'; |
|
| 79 | + array_push($this->entryArray, new Entry(localize("customize.paging"), "", |
|
| 80 | 80 | $content, "text", |
| 81 | - array ())); |
|
| 82 | - $content = '<input type="text" onchange="updateCookie (this);" id="email" value="' . getCurrentOption ("email") . '" />'; |
|
| 83 | - array_push ($this->entryArray, new Entry (localize ("customize.email"), "", |
|
| 81 | + array())); |
|
| 82 | + $content = '<input type="text" onchange="updateCookie (this);" id="email" value="' . getCurrentOption("email") . '" />'; |
|
| 83 | + array_push($this->entryArray, new Entry(localize("customize.email"), "", |
|
| 84 | 84 | $content, "text", |
| 85 | - array ())); |
|
| 86 | - $content = '<input type="checkbox" onchange="updateCookieFromCheckbox (this);" id="html_tag_filter" ' . $this->isChecked ("html_tag_filter") . ' />'; |
|
| 87 | - array_push ($this->entryArray, new Entry (localize ("customize.filter"), "", |
|
| 85 | + array())); |
|
| 86 | + $content = '<input type="checkbox" onchange="updateCookieFromCheckbox (this);" id="html_tag_filter" ' . $this->isChecked("html_tag_filter") . ' />'; |
|
| 87 | + array_push($this->entryArray, new Entry(localize("customize.filter"), "", |
|
| 88 | 88 | $content, "text", |
| 89 | - array ())); |
|
| 89 | + array())); |
|
| 90 | 90 | $content = ""; |
| 91 | 91 | foreach ($ignoredBaseArray as $key) { |
| 92 | - $keyPlural = preg_replace ('/(ss)$/', 's', $key . "s"); |
|
| 93 | - $content .= '<input type="checkbox" name="ignored_categories[]" onchange="updateCookieFromCheckboxGroup (this);" id="ignored_categories_' . $key . '" ' . $this->isChecked ("ignored_categories", $key) . ' > ' . localize ("{$keyPlural}.title") . '</input> '; |
|
| 92 | + $keyPlural = preg_replace('/(ss)$/', 's', $key . "s"); |
|
| 93 | + $content .= '<input type="checkbox" name="ignored_categories[]" onchange="updateCookieFromCheckboxGroup (this);" id="ignored_categories_' . $key . '" ' . $this->isChecked("ignored_categories", $key) . ' > ' . localize("{$keyPlural}.title") . '</input> '; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - array_push ($this->entryArray, new Entry (localize ("customize.ignored"), "", |
|
| 96 | + array_push($this->entryArray, new Entry(localize("customize.ignored"), "", |
|
| 97 | 97 | $content, "text", |
| 98 | - array ())); |
|
| 98 | + array())); |
|
| 99 | 99 | } |
| 100 | 100 | } |
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PageAbout extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $this->title = localize ("about.title"); |
|
| 13 | + $this->title = localize("about.title"); |
|
| 14 | 14 | } |
| 15 | 15 | } |
@@ -8,11 +8,11 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PagePublisherDetail extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $publisher = Publisher::getPublisherById ($this->idGet); |
|
| 13 | + $publisher = Publisher::getPublisherById($this->idGet); |
|
| 14 | 14 | $this->title = $publisher->name; |
| 15 | - list ($this->entryArray, $this->totalNumber) = Book::getBooksByPublisher ($this->idGet, $this->n); |
|
| 16 | - $this->idPage = $publisher->getEntryId (); |
|
| 15 | + list ($this->entryArray, $this->totalNumber) = Book::getBooksByPublisher($this->idGet, $this->n); |
|
| 16 | + $this->idPage = $publisher->getEntryId(); |
|
| 17 | 17 | } |
| 18 | 18 | } |
@@ -19,10 +19,10 @@ discard block |
||
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - $expires = 60*60*24*14; |
|
| 22 | + $expires = 60 * 60 * 24 * 14; |
|
| 23 | 23 | header('Pragma: public'); |
| 24 | 24 | header('Cache-Control: maxage=' . $expires); |
| 25 | - header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expires) . ' GMT'); |
|
| 25 | + header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT'); |
|
| 26 | 26 | $bookId = getURLParam('id', NULL); |
| 27 | 27 | $type = getURLParam('type', 'jpg'); |
| 28 | 28 | $idData = getURLParam('data', NULL); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | if (!$book) { |
| 36 | - notFound (); |
|
| 36 | + notFound(); |
|
| 37 | 37 | return; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -55,15 +55,15 @@ discard block |
||
| 55 | 55 | header('Content-Type: image/jpeg'); |
| 56 | 56 | //by default, we don't cache |
| 57 | 57 | $thumbnailCacheFullpath = null; |
| 58 | - if ( isset($config['cops_thumbnail_cache_directory']) && $config['cops_thumbnail_cache_directory'] !== '' ) { |
|
| 58 | + if (isset($config['cops_thumbnail_cache_directory']) && $config['cops_thumbnail_cache_directory'] !== '') { |
|
| 59 | 59 | $thumbnailCacheFullpath = $config['cops_thumbnail_cache_directory']; |
| 60 | 60 | //if multiple databases, add a subfolder with the database ID |
| 61 | - $thumbnailCacheFullpath .= !is_null(GetUrlParam (DB)) ? 'db-' . GetUrlParam (DB) . DIRECTORY_SEPARATOR : ''; |
|
| 61 | + $thumbnailCacheFullpath .= !is_null(GetUrlParam(DB))?'db-' . GetUrlParam(DB) . DIRECTORY_SEPARATOR:''; |
|
| 62 | 62 | //when there are lots of thumbnails, it's better to save files in subfolders, so if the book's uuid is |
| 63 | 63 | //"01234567-89ab-cdef-0123-456789abcdef", we will save the thumbnail in .../0/12/34567-89ab-cdef-0123-456789abcdef-... |
| 64 | 64 | $thumbnailCacheFullpath .= substr($book->uuid, 0, 1) . DIRECTORY_SEPARATOR . substr($book->uuid, 1, 2) . DIRECTORY_SEPARATOR; |
| 65 | 65 | //check if cache folder exists or create it |
| 66 | - if ( file_exists($thumbnailCacheFullpath) || mkdir($thumbnailCacheFullpath, 0700, true) ) { |
|
| 66 | + if (file_exists($thumbnailCacheFullpath) || mkdir($thumbnailCacheFullpath, 0700, true)) { |
|
| 67 | 67 | //we name the thumbnail from the book's uuid and it's dimensions (width and/or height) |
| 68 | 68 | $thumbnailCacheName = substr($book->uuid, 3) . '-' . getURLParam('width') . 'x' . getURLParam('height') . '.jpg'; |
| 69 | 69 | $thumbnailCacheFullpath = $thumbnailCacheFullpath . $thumbnailCacheName; |
@@ -73,20 +73,20 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - if ( $thumbnailCacheFullpath !== null && file_exists($thumbnailCacheFullpath) ) { |
|
| 76 | + if ($thumbnailCacheFullpath !== null && file_exists($thumbnailCacheFullpath)) { |
|
| 77 | 77 | //return the already cached thumbnail |
| 78 | - readfile( $thumbnailCacheFullpath ); |
|
| 78 | + readfile($thumbnailCacheFullpath); |
|
| 79 | 79 | return; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if ($book->getThumbnail (getURLParam('width'), getURLParam('height'), $thumbnailCacheFullpath)) { |
|
| 82 | + if ($book->getThumbnail(getURLParam('width'), getURLParam('height'), $thumbnailCacheFullpath)) { |
|
| 83 | 83 | //if we don't cache the thumbnail, imagejpeg() in $book->getThumbnail() already return the image data |
| 84 | - if ( $thumbnailCacheFullpath === null ) { |
|
| 84 | + if ($thumbnailCacheFullpath === null) { |
|
| 85 | 85 | // The cover had to be resized |
| 86 | 86 | return; |
| 87 | 87 | } else { |
| 88 | 88 | //return the just cached thumbnail |
| 89 | - readfile( $thumbnailCacheFullpath ); |
|
| 89 | + readfile($thumbnailCacheFullpath); |
|
| 90 | 90 | return; |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -72,11 +72,11 @@ |
||
| 72 | 72 | try { |
| 73 | 73 | $data = getComponentContent($book, $component, $add); |
| 74 | 74 | |
| 75 | - $expires = 60*60*24*14; |
|
| 75 | + $expires = 60 * 60 * 24 * 14; |
|
| 76 | 76 | header('Pragma: public'); |
| 77 | - header('Cache-Control: maxage='.$expires); |
|
| 78 | - header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expires) . ' GMT'); |
|
| 79 | - header ('Content-Type: ' . $book->componentContentType($component)); |
|
| 77 | + header('Cache-Control: maxage=' . $expires); |
|
| 78 | + header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT'); |
|
| 79 | + header('Content-Type: ' . $book->componentContentType($component)); |
|
| 80 | 80 | echo $data; |
| 81 | 81 | } catch (Exception $e) { |
| 82 | 82 | error_log($e); |
@@ -8,9 +8,9 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PageAllCustoms extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $customId = getURLParam ("custom", NULL); |
|
| 13 | + $customId = getURLParam("custom", NULL); |
|
| 14 | 14 | $columnType = CustomColumnType::createByCustomID($customId); |
| 15 | 15 | |
| 16 | 16 | $this->title = $columnType->getTitle(); |
@@ -24,55 +24,55 @@ discard block |
||
| 24 | 24 | /* @var Entry[] */ |
| 25 | 25 | public $entryArray = array(); |
| 26 | 26 | |
| 27 | - public static function getPage ($pageId, $id, $query, $n) |
|
| 27 | + public static function getPage($pageId, $id, $query, $n) |
|
| 28 | 28 | { |
| 29 | 29 | switch ($pageId) { |
| 30 | 30 | case Base::PAGE_ALL_AUTHORS : |
| 31 | - return new PageAllAuthors ($id, $query, $n); |
|
| 31 | + return new PageAllAuthors($id, $query, $n); |
|
| 32 | 32 | case Base::PAGE_AUTHORS_FIRST_LETTER : |
| 33 | - return new PageAllAuthorsLetter ($id, $query, $n); |
|
| 33 | + return new PageAllAuthorsLetter($id, $query, $n); |
|
| 34 | 34 | case Base::PAGE_AUTHOR_DETAIL : |
| 35 | - return new PageAuthorDetail ($id, $query, $n); |
|
| 35 | + return new PageAuthorDetail($id, $query, $n); |
|
| 36 | 36 | case Base::PAGE_ALL_TAGS : |
| 37 | - return new PageAllTags ($id, $query, $n); |
|
| 37 | + return new PageAllTags($id, $query, $n); |
|
| 38 | 38 | case Base::PAGE_TAG_DETAIL : |
| 39 | - return new PageTagDetail ($id, $query, $n); |
|
| 39 | + return new PageTagDetail($id, $query, $n); |
|
| 40 | 40 | case Base::PAGE_ALL_LANGUAGES : |
| 41 | - return new PageAllLanguages ($id, $query, $n); |
|
| 41 | + return new PageAllLanguages($id, $query, $n); |
|
| 42 | 42 | case Base::PAGE_LANGUAGE_DETAIL : |
| 43 | - return new PageLanguageDetail ($id, $query, $n); |
|
| 43 | + return new PageLanguageDetail($id, $query, $n); |
|
| 44 | 44 | case Base::PAGE_ALL_CUSTOMS : |
| 45 | - return new PageAllCustoms ($id, $query, $n); |
|
| 45 | + return new PageAllCustoms($id, $query, $n); |
|
| 46 | 46 | case Base::PAGE_CUSTOM_DETAIL : |
| 47 | - return new PageCustomDetail ($id, $query, $n); |
|
| 47 | + return new PageCustomDetail($id, $query, $n); |
|
| 48 | 48 | case Base::PAGE_ALL_RATINGS : |
| 49 | - return new PageAllRating ($id, $query, $n); |
|
| 49 | + return new PageAllRating($id, $query, $n); |
|
| 50 | 50 | case Base::PAGE_RATING_DETAIL : |
| 51 | - return new PageRatingDetail ($id, $query, $n); |
|
| 51 | + return new PageRatingDetail($id, $query, $n); |
|
| 52 | 52 | case Base::PAGE_ALL_SERIES : |
| 53 | - return new PageAllSeries ($id, $query, $n); |
|
| 53 | + return new PageAllSeries($id, $query, $n); |
|
| 54 | 54 | case Base::PAGE_ALL_BOOKS : |
| 55 | - return new PageAllBooks ($id, $query, $n); |
|
| 55 | + return new PageAllBooks($id, $query, $n); |
|
| 56 | 56 | case Base::PAGE_ALL_BOOKS_LETTER: |
| 57 | - return new PageAllBooksLetter ($id, $query, $n); |
|
| 57 | + return new PageAllBooksLetter($id, $query, $n); |
|
| 58 | 58 | case Base::PAGE_ALL_RECENT_BOOKS : |
| 59 | - return new PageRecentBooks ($id, $query, $n); |
|
| 59 | + return new PageRecentBooks($id, $query, $n); |
|
| 60 | 60 | case Base::PAGE_SERIE_DETAIL : |
| 61 | - return new PageSerieDetail ($id, $query, $n); |
|
| 61 | + return new PageSerieDetail($id, $query, $n); |
|
| 62 | 62 | case Base::PAGE_OPENSEARCH_QUERY : |
| 63 | - return new PageQueryResult ($id, $query, $n); |
|
| 63 | + return new PageQueryResult($id, $query, $n); |
|
| 64 | 64 | case Base::PAGE_BOOK_DETAIL : |
| 65 | - return new PageBookDetail ($id, $query, $n); |
|
| 65 | + return new PageBookDetail($id, $query, $n); |
|
| 66 | 66 | case Base::PAGE_ALL_PUBLISHERS: |
| 67 | - return new PageAllPublishers ($id, $query, $n); |
|
| 67 | + return new PageAllPublishers($id, $query, $n); |
|
| 68 | 68 | case Base::PAGE_PUBLISHER_DETAIL : |
| 69 | - return new PagePublisherDetail ($id, $query, $n); |
|
| 69 | + return new PagePublisherDetail($id, $query, $n); |
|
| 70 | 70 | case Base::PAGE_ABOUT : |
| 71 | - return new PageAbout ($id, $query, $n); |
|
| 71 | + return new PageAbout($id, $query, $n); |
|
| 72 | 72 | case Base::PAGE_CUSTOMIZE : |
| 73 | - return new PageCustomize ($id, $query, $n); |
|
| 73 | + return new PageCustomize($id, $query, $n); |
|
| 74 | 74 | default: |
| 75 | - $page = new Page ($id, $query, $n); |
|
| 75 | + $page = new Page($id, $query, $n); |
|
| 76 | 76 | $page->idPage = "cops:catalog"; |
| 77 | 77 | return $page; |
| 78 | 78 | } |
@@ -85,96 +85,96 @@ discard block |
||
| 85 | 85 | $this->query = $pquery; |
| 86 | 86 | $this->n = $pn; |
| 87 | 87 | $this->favicon = $config['cops_icon']; |
| 88 | - $this->authorName = empty($config['cops_author_name']) ? utf8_encode('Sébastien Lucas') : $config['cops_author_name']; |
|
| 89 | - $this->authorUri = empty($config['cops_author_uri']) ? 'http://blog.slucas.fr' : $config['cops_author_uri']; |
|
| 90 | - $this->authorEmail = empty($config['cops_author_email']) ? '[email protected]' : $config['cops_author_email']; |
|
| 88 | + $this->authorName = empty($config['cops_author_name'])?utf8_encode('Sébastien Lucas'):$config['cops_author_name']; |
|
| 89 | + $this->authorUri = empty($config['cops_author_uri'])?'http://blog.slucas.fr':$config['cops_author_uri']; |
|
| 90 | + $this->authorEmail = empty($config['cops_author_email'])?'[email protected]':$config['cops_author_email']; |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - public function InitializeContent () |
|
| 93 | + public function InitializeContent() |
|
| 94 | 94 | { |
| 95 | 95 | global $config; |
| 96 | 96 | $this->title = $config['cops_title_default']; |
| 97 | 97 | $this->subtitle = $config['cops_subtitle_default']; |
| 98 | - if (Base::noDatabaseSelected ()) { |
|
| 98 | + if (Base::noDatabaseSelected()) { |
|
| 99 | 99 | $i = 0; |
| 100 | - foreach (Base::getDbNameList () as $key) { |
|
| 101 | - $nBooks = Book::getBookCount ($i); |
|
| 102 | - array_push ($this->entryArray, new Entry ($key, "cops:{$i}:catalog", |
|
| 103 | - str_format (localize ("bookword", $nBooks), $nBooks), "text", |
|
| 104 | - array ( new LinkNavigation ("?" . DB . "={$i}")), "", $nBooks)); |
|
| 100 | + foreach (Base::getDbNameList() as $key) { |
|
| 101 | + $nBooks = Book::getBookCount($i); |
|
| 102 | + array_push($this->entryArray, new Entry($key, "cops:{$i}:catalog", |
|
| 103 | + str_format(localize("bookword", $nBooks), $nBooks), "text", |
|
| 104 | + array(new LinkNavigation("?" . DB . "={$i}")), "", $nBooks)); |
|
| 105 | 105 | $i++; |
| 106 | - Base::clearDb (); |
|
| 106 | + Base::clearDb(); |
|
| 107 | 107 | } |
| 108 | 108 | } else { |
| 109 | - if (!in_array (PageQueryResult::SCOPE_AUTHOR, getCurrentOption ('ignored_categories'))) { |
|
| 110 | - array_push ($this->entryArray, Author::getCount()); |
|
| 109 | + if (!in_array(PageQueryResult::SCOPE_AUTHOR, getCurrentOption('ignored_categories'))) { |
|
| 110 | + array_push($this->entryArray, Author::getCount()); |
|
| 111 | 111 | } |
| 112 | - if (!in_array (PageQueryResult::SCOPE_SERIES, getCurrentOption ('ignored_categories'))) { |
|
| 112 | + if (!in_array(PageQueryResult::SCOPE_SERIES, getCurrentOption('ignored_categories'))) { |
|
| 113 | 113 | $series = Serie::getCount(); |
| 114 | - if (!is_null ($series)) array_push ($this->entryArray, $series); |
|
| 114 | + if (!is_null($series)) array_push($this->entryArray, $series); |
|
| 115 | 115 | } |
| 116 | - if (!in_array (PageQueryResult::SCOPE_PUBLISHER, getCurrentOption ('ignored_categories'))) { |
|
| 116 | + if (!in_array(PageQueryResult::SCOPE_PUBLISHER, getCurrentOption('ignored_categories'))) { |
|
| 117 | 117 | $publisher = Publisher::getCount(); |
| 118 | - if (!is_null ($publisher)) array_push ($this->entryArray, $publisher); |
|
| 118 | + if (!is_null($publisher)) array_push($this->entryArray, $publisher); |
|
| 119 | 119 | } |
| 120 | - if (!in_array (PageQueryResult::SCOPE_TAG, getCurrentOption ('ignored_categories'))) { |
|
| 120 | + if (!in_array(PageQueryResult::SCOPE_TAG, getCurrentOption('ignored_categories'))) { |
|
| 121 | 121 | $tags = Tag::getCount(); |
| 122 | - if (!is_null ($tags)) array_push ($this->entryArray, $tags); |
|
| 122 | + if (!is_null($tags)) array_push($this->entryArray, $tags); |
|
| 123 | 123 | } |
| 124 | - if (!in_array (PageQueryResult::SCOPE_RATING, getCurrentOption ('ignored_categories'))) { |
|
| 124 | + if (!in_array(PageQueryResult::SCOPE_RATING, getCurrentOption('ignored_categories'))) { |
|
| 125 | 125 | $rating = Rating::getCount(); |
| 126 | - if (!is_null ($rating)) array_push ($this->entryArray, $rating); |
|
| 126 | + if (!is_null($rating)) array_push($this->entryArray, $rating); |
|
| 127 | 127 | } |
| 128 | - if (!in_array ("language", getCurrentOption ('ignored_categories'))) { |
|
| 128 | + if (!in_array("language", getCurrentOption('ignored_categories'))) { |
|
| 129 | 129 | $languages = Language::getCount(); |
| 130 | - if (!is_null ($languages)) array_push ($this->entryArray, $languages); |
|
| 130 | + if (!is_null($languages)) array_push($this->entryArray, $languages); |
|
| 131 | 131 | } |
| 132 | 132 | foreach ($config['cops_calibre_custom_column'] as $lookup) { |
| 133 | 133 | $customColumn = CustomColumnType::createByLookup($lookup); |
| 134 | - if (!is_null ($customColumn) && $customColumn->isSearchable()) { |
|
| 135 | - array_push ($this->entryArray, $customColumn->getCount()); |
|
| 134 | + if (!is_null($customColumn) && $customColumn->isSearchable()) { |
|
| 135 | + array_push($this->entryArray, $customColumn->getCount()); |
|
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | - $this->entryArray = array_merge ($this->entryArray, Book::getCount()); |
|
| 138 | + $this->entryArray = array_merge($this->entryArray, Book::getCount()); |
|
| 139 | 139 | |
| 140 | - if (Base::isMultipleDatabaseEnabled ()) $this->title = Base::getDbName (); |
|
| 140 | + if (Base::isMultipleDatabaseEnabled()) $this->title = Base::getDbName(); |
|
| 141 | 141 | } |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - public function isPaginated () |
|
| 144 | + public function isPaginated() |
|
| 145 | 145 | { |
| 146 | - return (getCurrentOption ("max_item_per_page") != -1 && |
|
| 146 | + return (getCurrentOption("max_item_per_page") != -1 && |
|
| 147 | 147 | $this->totalNumber != -1 && |
| 148 | - $this->totalNumber > getCurrentOption ("max_item_per_page")); |
|
| 148 | + $this->totalNumber > getCurrentOption("max_item_per_page")); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - public function getNextLink () |
|
| 151 | + public function getNextLink() |
|
| 152 | 152 | { |
| 153 | - $currentUrl = preg_replace ("/\&n=.*?$/", "", "?" . getQueryString ()); |
|
| 154 | - if (($this->n) * getCurrentOption ("max_item_per_page") < $this->totalNumber) { |
|
| 155 | - return new LinkNavigation ($currentUrl . "&n=" . ($this->n + 1), "next", localize ("paging.next.alternate")); |
|
| 153 | + $currentUrl = preg_replace("/\&n=.*?$/", "", "?" . getQueryString()); |
|
| 154 | + if (($this->n) * getCurrentOption("max_item_per_page") < $this->totalNumber) { |
|
| 155 | + return new LinkNavigation($currentUrl . "&n=" . ($this->n + 1), "next", localize("paging.next.alternate")); |
|
| 156 | 156 | } |
| 157 | 157 | return NULL; |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - public function getPrevLink () |
|
| 160 | + public function getPrevLink() |
|
| 161 | 161 | { |
| 162 | - $currentUrl = preg_replace ("/\&n=.*?$/", "", "?" . getQueryString ()); |
|
| 162 | + $currentUrl = preg_replace("/\&n=.*?$/", "", "?" . getQueryString()); |
|
| 163 | 163 | if ($this->n > 1) { |
| 164 | - return new LinkNavigation ($currentUrl . "&n=" . ($this->n - 1), "previous", localize ("paging.previous.alternate")); |
|
| 164 | + return new LinkNavigation($currentUrl . "&n=" . ($this->n - 1), "previous", localize("paging.previous.alternate")); |
|
| 165 | 165 | } |
| 166 | 166 | return NULL; |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - public function getMaxPage () |
|
| 169 | + public function getMaxPage() |
|
| 170 | 170 | { |
| 171 | - return ceil ($this->totalNumber / getCurrentOption ("max_item_per_page")); |
|
| 171 | + return ceil($this->totalNumber / getCurrentOption("max_item_per_page")); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - public function containsBook () |
|
| 174 | + public function containsBook() |
|
| 175 | 175 | { |
| 176 | - if (count ($this->entryArray) == 0) return false; |
|
| 177 | - if (get_class ($this->entryArray [0]) == "EntryBook") return true; |
|
| 176 | + if (count($this->entryArray) == 0) return false; |
|
| 177 | + if (get_class($this->entryArray [0]) == "EntryBook") return true; |
|
| 178 | 178 | return false; |
| 179 | 179 | } |
| 180 | 180 | } |
@@ -8,12 +8,12 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PageCustomDetail extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $customId = getURLParam ("custom", NULL); |
|
| 14 | - $custom = CustomColumn::createCustom ($customId, $this->idGet); |
|
| 15 | - $this->idPage = $custom->getEntryId (); |
|
| 13 | + $customId = getURLParam("custom", NULL); |
|
| 14 | + $custom = CustomColumn::createCustom($customId, $this->idGet); |
|
| 15 | + $this->idPage = $custom->getEntryId(); |
|
| 16 | 16 | $this->title = $custom->value; |
| 17 | - list ($this->entryArray, $this->totalNumber) = Book::getBooksByCustom ($custom, $this->idGet, $this->n); |
|
| 17 | + list ($this->entryArray, $this->totalNumber) = Book::getBooksByCustom($custom, $this->idGet, $this->n); |
|
| 18 | 18 | } |
| 19 | 19 | } |