@@ -70,7 +70,7 @@ |
||
70 | 70 | while ($post = $result->fetchObject()) |
71 | 71 | { |
72 | 72 | $entryPContent = str_format(localize("bookword", $post->count), $post->count); |
73 | - $entryPLinkArray = array(new LinkNavigation ($this->getUri($post->id))); |
|
73 | + $entryPLinkArray = array(new LinkNavigation($this->getUri($post->id))); |
|
74 | 74 | |
75 | 75 | $entry = new Entry($post->name, $this->getEntryId($post->id), $entryPContent, $this->datatype, $entryPLinkArray, "", $post->count); |
76 | 76 |
@@ -67,8 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | $result = $this->getDb()->query($query); |
69 | 69 | $entryArray = array(); |
70 | - while ($post = $result->fetchObject()) |
|
71 | - { |
|
70 | + while ($post = $result->fetchObject()) { |
|
72 | 71 | $entryPContent = str_format(localize("bookword", $post->count), $post->count); |
73 | 72 | $entryPLinkArray = array(new LinkNavigation ($this->getUri($post->id))); |
74 | 73 | |
@@ -82,7 +81,9 @@ discard block |
||
82 | 81 | public function getDescription() |
83 | 82 | { |
84 | 83 | $desc = $this->getDatabaseDescription(); |
85 | - if ($desc === NULL || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
84 | + if ($desc === NULL || empty($desc)) { |
|
85 | + $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
86 | + } |
|
86 | 87 | return $desc; |
87 | 88 | } |
88 | 89 |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if ($post = $result->fetchObject()) { |
58 | 58 | return new CustomColumn($id, $post->name, $this); |
59 | 59 | } |
60 | - return NULL; |
|
60 | + return null; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | protected function getAllCustomValuesFromDatabase() |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | public function getDescription() |
83 | 83 | { |
84 | 84 | $desc = $this->getDatabaseDescription(); |
85 | - if ($desc === NULL || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
85 | + if ($desc === null || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
86 | 86 | return $desc; |
87 | 87 | } |
88 | 88 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | if ($post = $result->fetchObject()) { |
96 | 96 | return new CustomColumn($post->id, $post->name, $this); |
97 | 97 | } |
98 | - return new CustomColumn(NULL, "", $this); |
|
98 | + return new CustomColumn(null, "", $this); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | public function isSearchable() |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $result = $this->getDb()->prepare(str_format("SELECT id, value AS name FROM {0} WHERE id = ?", $this->getTableName())); |
56 | 56 | $result->execute(array($id)); |
57 | 57 | if ($post = $result->fetchObject()) { |
58 | - return new CustomColumn ($id, $post->name, $this); |
|
58 | + return new CustomColumn($id, $post->name, $this); |
|
59 | 59 | } |
60 | 60 | return NULL; |
61 | 61 | } |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | $entryArray = array(); |
70 | 70 | while ($post = $result->fetchObject()) { |
71 | 71 | $entryPContent = str_format(localize("bookword", $post->count), $post->count); |
72 | - $entryPLinkArray = array(new LinkNavigation ($this->getUri($post->id))); |
|
72 | + $entryPLinkArray = array(new LinkNavigation($this->getUri($post->id))); |
|
73 | 73 | |
74 | - $entry = new Entry ($post->name, $this->getEntryId($post->id), $entryPContent, $this->datatype, $entryPLinkArray, "", $post->count); |
|
74 | + $entry = new Entry($post->name, $this->getEntryId($post->id), $entryPContent, $this->datatype, $entryPLinkArray, "", $post->count); |
|
75 | 75 | |
76 | 76 | array_push($entryArray, $entry); |
77 | 77 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if ($post = $result->fetchObject()) { |
58 | 58 | return new CustomColumn ($id, $post->name, $this); |
59 | 59 | } |
60 | - return NULL; |
|
60 | + return null; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | protected function getAllCustomValuesFromDatabase() |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | if ($post = $result->fetchObject()) { |
93 | 93 | return new CustomColumn($post->id, $post->name, $this); |
94 | 94 | } |
95 | - return new CustomColumn(NULL, localize("customcolumn.enum.unknown"), $this); |
|
95 | + return new CustomColumn(null, localize("customcolumn.enum.unknown"), $this); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | public function isSearchable() |
@@ -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 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | { |
11 | 11 | public function InitializeContent () |
12 | 12 | { |
13 | - $customId = getURLParam ("custom", NULL); |
|
13 | + $customId = getURLParam ("custom", null); |
|
14 | 14 | $custom = CustomColumn::createCustom ($customId, $this->idGet); |
15 | 15 | $this->idPage = $custom->getEntryId (); |
16 | 16 | $this->title = $custom->value; |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $this->activeFacet = $pactiveFacet; |
31 | 31 | } |
32 | 32 | |
33 | - public function hrefXhtml () { |
|
33 | + public function hrefXhtml() { |
|
34 | 34 | return $this->href; |
35 | 35 | } |
36 | 36 |
@@ -21,7 +21,8 @@ discard block |
||
21 | 21 | public $facetGroup; |
22 | 22 | public $activeFacet; |
23 | 23 | |
24 | - public function __construct($phref, $ptype, $prel = NULL, $ptitle = NULL, $pfacetGroup = NULL, $pactiveFacet = FALSE) { |
|
24 | + public function __construct($phref, $ptype, $prel = NULL, $ptitle = NULL, $pfacetGroup = NULL, $pactiveFacet = FALSE) |
|
25 | + { |
|
25 | 26 | $this->href = $phref; |
26 | 27 | $this->type = $ptype; |
27 | 28 | $this->rel = $prel; |
@@ -30,11 +31,13 @@ discard block |
||
30 | 31 | $this->activeFacet = $pactiveFacet; |
31 | 32 | } |
32 | 33 | |
33 | - public function hrefXhtml () { |
|
34 | + public function hrefXhtml () |
|
35 | + { |
|
34 | 36 | return $this->href; |
35 | 37 | } |
36 | 38 | |
37 | - public function getScriptName() { |
|
39 | + public function getScriptName() |
|
40 | + { |
|
38 | 41 | $parts = explode('/', $_SERVER["SCRIPT_NAME"]); |
39 | 42 | return $parts[count($parts) - 1]; |
40 | 43 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | public $facetGroup; |
22 | 22 | public $activeFacet; |
23 | 23 | |
24 | - public function __construct($phref, $ptype, $prel = NULL, $ptitle = NULL, $pfacetGroup = NULL, $pactiveFacet = FALSE) { |
|
24 | + public function __construct($phref, $ptype, $prel = null, $ptitle = null, $pfacetGroup = null, $pactiveFacet = false) { |
|
25 | 25 | $this->href = $phref; |
26 | 26 | $this->type = $ptype; |
27 | 27 | $this->rel = $prel; |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | class PageAllLanguages extends Page |
10 | 10 | { |
11 | - public function InitializeContent () |
|
11 | + public function InitializeContent() |
|
12 | 12 | { |
13 | 13 | $this->title = localize("languages.title"); |
14 | 14 | $this->entryArray = Language::getAllLanguages(); |
@@ -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 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $id = $date->format("Y-m-d"); |
50 | 50 | |
51 | 51 | $entryPContent = str_format(localize("bookword", $post->count), $post->count); |
52 | - $entryPLinkArray = array(new LinkNavigation ($this->getUri($id))); |
|
52 | + $entryPLinkArray = array(new LinkNavigation($this->getUri($id))); |
|
53 | 53 | |
54 | 54 | $entry = new Entry($date->format(localize("customcolumn.date.format")), $this->getEntryId($id), $entryPContent, $this->datatype, $entryPLinkArray, "", $post->count); |
55 | 55 |
@@ -62,7 +62,9 @@ |
||
62 | 62 | public function getDescription() |
63 | 63 | { |
64 | 64 | $desc = $this->getDatabaseDescription(); |
65 | - if ($desc === NULL || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
65 | + if ($desc === NULL || empty($desc)) { |
|
66 | + $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
67 | + } |
|
66 | 68 | return $desc; |
67 | 69 | } |
68 | 70 |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | public function getDescription() |
63 | 63 | { |
64 | 64 | $desc = $this->getDatabaseDescription(); |
65 | - if ($desc === NULL || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
65 | + if ($desc === null || empty($desc)) $desc = str_format(localize("customcolumn.description"), $this->getTitle()); |
|
66 | 66 | return $desc; |
67 | 67 | } |
68 | 68 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | return new CustomColumn($date->format("Y-m-d"), $date->format(localize("customcolumn.date.format")), $this); |
79 | 79 | } |
80 | - return new CustomColumn(NULL, localize("customcolumn.date.unknown"), $this); |
|
80 | + return new CustomColumn(null, localize("customcolumn.date.unknown"), $this); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | public function isSearchable() |
@@ -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 | } |
@@ -78,7 +78,8 @@ discard block |
||
78 | 78 | } |
79 | 79 | } |
80 | 80 | |
81 | - public function __construct($pid, $pquery, $pn) { |
|
81 | + public function __construct($pid, $pquery, $pn) |
|
82 | + { |
|
82 | 83 | global $config; |
83 | 84 | |
84 | 85 | $this->idGet = $pid; |
@@ -111,23 +112,33 @@ discard block |
||
111 | 112 | } |
112 | 113 | if (!in_array (PageQueryResult::SCOPE_SERIES, getCurrentOption ('ignored_categories'))) { |
113 | 114 | $series = Serie::getCount(); |
114 | - if (!is_null ($series)) array_push ($this->entryArray, $series); |
|
115 | + if (!is_null ($series)) { |
|
116 | + array_push ($this->entryArray, $series); |
|
117 | + } |
|
115 | 118 | } |
116 | 119 | if (!in_array (PageQueryResult::SCOPE_PUBLISHER, getCurrentOption ('ignored_categories'))) { |
117 | 120 | $publisher = Publisher::getCount(); |
118 | - if (!is_null ($publisher)) array_push ($this->entryArray, $publisher); |
|
121 | + if (!is_null ($publisher)) { |
|
122 | + array_push ($this->entryArray, $publisher); |
|
123 | + } |
|
119 | 124 | } |
120 | 125 | if (!in_array (PageQueryResult::SCOPE_TAG, getCurrentOption ('ignored_categories'))) { |
121 | 126 | $tags = Tag::getCount(); |
122 | - if (!is_null ($tags)) array_push ($this->entryArray, $tags); |
|
127 | + if (!is_null ($tags)) { |
|
128 | + array_push ($this->entryArray, $tags); |
|
129 | + } |
|
123 | 130 | } |
124 | 131 | if (!in_array (PageQueryResult::SCOPE_RATING, getCurrentOption ('ignored_categories'))) { |
125 | 132 | $rating = Rating::getCount(); |
126 | - if (!is_null ($rating)) array_push ($this->entryArray, $rating); |
|
133 | + if (!is_null ($rating)) { |
|
134 | + array_push ($this->entryArray, $rating); |
|
135 | + } |
|
127 | 136 | } |
128 | 137 | if (!in_array ("language", getCurrentOption ('ignored_categories'))) { |
129 | 138 | $languages = Language::getCount(); |
130 | - if (!is_null ($languages)) array_push ($this->entryArray, $languages); |
|
139 | + if (!is_null ($languages)) { |
|
140 | + array_push ($this->entryArray, $languages); |
|
141 | + } |
|
131 | 142 | } |
132 | 143 | foreach ($config['cops_calibre_custom_column'] as $lookup) { |
133 | 144 | $customColumn = CustomColumnType::createByLookup($lookup); |
@@ -137,7 +148,9 @@ discard block |
||
137 | 148 | } |
138 | 149 | $this->entryArray = array_merge ($this->entryArray, Book::getCount()); |
139 | 150 | |
140 | - if (Base::isMultipleDatabaseEnabled ()) $this->title = Base::getDbName (); |
|
151 | + if (Base::isMultipleDatabaseEnabled ()) { |
|
152 | + $this->title = Base::getDbName (); |
|
153 | + } |
|
141 | 154 | } |
142 | 155 | } |
143 | 156 | |
@@ -173,8 +186,12 @@ discard block |
||
173 | 186 | |
174 | 187 | public function containsBook () |
175 | 188 | { |
176 | - if (count ($this->entryArray) == 0) return false; |
|
177 | - if (get_class ($this->entryArray [0]) == "EntryBook") return true; |
|
189 | + if (count ($this->entryArray) == 0) { |
|
190 | + return false; |
|
191 | + } |
|
192 | + if (get_class ($this->entryArray [0]) == "EntryBook") { |
|
193 | + return true; |
|
194 | + } |
|
178 | 195 | return false; |
179 | 196 | } |
180 | 197 | } |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | if (($this->n) * getCurrentOption ("max_item_per_page") < $this->totalNumber) { |
155 | 155 | return new LinkNavigation ($currentUrl . "&n=" . ($this->n + 1), "next", localize ("paging.next.alternate")); |
156 | 156 | } |
157 | - return NULL; |
|
157 | + return null; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | public function getPrevLink () |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | if ($this->n > 1) { |
164 | 164 | return new LinkNavigation ($currentUrl . "&n=" . ($this->n - 1), "previous", localize ("paging.previous.alternate")); |
165 | 165 | } |
166 | - return NULL; |
|
166 | + return null; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | public function getMaxPage () |
@@ -8,15 +8,15 @@ |
||
8 | 8 | |
9 | 9 | class PageAllBooksLetter extends Page |
10 | 10 | { |
11 | - public function InitializeContent () |
|
11 | + public function InitializeContent() |
|
12 | 12 | { |
13 | - list ($this->entryArray, $this->totalNumber) = Book::getBooksByStartingLetter ($this->idGet, $this->n); |
|
14 | - $this->idPage = Book::getEntryIdByLetter ($this->idGet); |
|
13 | + list ($this->entryArray, $this->totalNumber) = Book::getBooksByStartingLetter($this->idGet, $this->n); |
|
14 | + $this->idPage = Book::getEntryIdByLetter($this->idGet); |
|
15 | 15 | |
16 | 16 | $count = $this->totalNumber; |
17 | 17 | if ($count == -1) |
18 | - $count = count ($this->entryArray); |
|
18 | + $count = count($this->entryArray); |
|
19 | 19 | |
20 | - $this->title = str_format (localize ("splitByLetter.letter"), str_format (localize ("bookword", $count), $count), $this->idGet); |
|
20 | + $this->title = str_format(localize("splitByLetter.letter"), str_format(localize("bookword", $count), $count), $this->idGet); |
|
21 | 21 | } |
22 | 22 | } |
@@ -14,8 +14,9 @@ |
||
14 | 14 | $this->idPage = Book::getEntryIdByLetter ($this->idGet); |
15 | 15 | |
16 | 16 | $count = $this->totalNumber; |
17 | - if ($count == -1) |
|
18 | - $count = count ($this->entryArray); |
|
17 | + if ($count == -1) { |
|
18 | + $count = count ($this->entryArray); |
|
19 | + } |
|
19 | 20 | |
20 | 21 | $this->title = str_format (localize ("splitByLetter.letter"), str_format (localize ("bookword", $count), $count), $this->idGet); |
21 | 22 | } |