@@ -62,6 +62,9 @@ discard block |
||
62 | 62 | return self::getEntryArray (self::SQL_AUTHORS_BY_FIRST_LETTER, array ($letter . "%")); |
63 | 63 | } |
64 | 64 | |
65 | + /** |
|
66 | + * @param string $query |
|
67 | + */ |
|
65 | 68 | public static function getAuthorsForSearch($query) { |
66 | 69 | return self::getEntryArray (self::SQL_AUTHORS_FOR_SEARCH, array ($query . "%", $query . "%")); |
67 | 70 | } |
@@ -70,6 +73,9 @@ discard block |
||
70 | 73 | return self::getEntryArray (self::SQL_ALL_AUTHORS, array ()); |
71 | 74 | } |
72 | 75 | |
76 | + /** |
|
77 | + * @param string $query |
|
78 | + */ |
|
73 | 79 | public static function getEntryArray ($query, $params) { |
74 | 80 | return Base::getEntryArrayWithBookNumber ($query, self::AUTHOR_COLUMNS, $params, "Author"); |
75 | 81 | } |
@@ -289,6 +289,11 @@ discard block |
||
289 | 289 | } |
290 | 290 | } |
291 | 291 | |
292 | + /** |
|
293 | + * @param string $format |
|
294 | + * |
|
295 | + * @return boolean |
|
296 | + */ |
|
292 | 297 | public function getDataFormat ($format) { |
293 | 298 | $reduced = array_filter ($this->getDatas (), function ($data) use ($format) { |
294 | 299 | return $data->format == $format; |
@@ -296,6 +301,10 @@ discard block |
||
296 | 301 | return reset ($reduced); |
297 | 302 | } |
298 | 303 | |
304 | + /** |
|
305 | + * @param string $extension |
|
306 | + * @param integer $idData |
|
307 | + */ |
|
299 | 308 | public function getFilePath ($extension, $idData = NULL, $relative = false) |
300 | 309 | { |
301 | 310 | if ($extension == "jpg") |
@@ -355,6 +364,9 @@ discard block |
||
355 | 364 | } |
356 | 365 | } |
357 | 366 | |
367 | + /** |
|
368 | + * @param string $outputfile |
|
369 | + */ |
|
358 | 370 | public function getThumbnail ($width, $height, $outputfile = NULL) { |
359 | 371 | if (is_null ($width) && is_null ($height)) { |
360 | 372 | return false; |
@@ -428,6 +440,9 @@ discard block |
||
428 | 440 | $this->getLinkArray (), $this); |
429 | 441 | } |
430 | 442 | |
443 | + /** |
|
444 | + * @param integer $database |
|
445 | + */ |
|
431 | 446 | public static function getBookCount($database = NULL) { |
432 | 447 | return parent::executeQuerySingle ('select count(*) from books', $database); |
433 | 448 | } |
@@ -493,6 +508,9 @@ discard block |
||
493 | 508 | return NULL; |
494 | 509 | } |
495 | 510 | |
511 | + /** |
|
512 | + * @param integer $dataId |
|
513 | + */ |
|
496 | 514 | public static function getBookByDataId($dataId) { |
497 | 515 | $result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . ', data.name, data.format |
498 | 516 | from data, books ' . self::SQL_BOOKS_LEFT_JOIN . ' |
@@ -509,6 +527,10 @@ discard block |
||
509 | 527 | return NULL; |
510 | 528 | } |
511 | 529 | |
530 | + /** |
|
531 | + * @param integer $database |
|
532 | + * @param integer $numberPerPage |
|
533 | + */ |
|
512 | 534 | public static function getBooksByQuery($query, $n, $database = NULL, $numberPerPage = NULL) { |
513 | 535 | $i = 0; |
514 | 536 | $critArray = array (); |
@@ -553,6 +575,9 @@ discard block |
||
553 | 575 | return $entryArray; |
554 | 576 | } |
555 | 577 | |
578 | + /** |
|
579 | + * @param integer $numberPerPage |
|
580 | + */ |
|
556 | 581 | public static function getBooksByStartingLetter($letter, $n, $database = NULL, $numberPerPage = NULL) { |
557 | 582 | return self::getEntryArray (self::SQL_BOOKS_BY_FIRST_LETTER, array ($letter . "%"), $n, $database, $numberPerPage); |
558 | 583 | } |
@@ -139,6 +139,9 @@ discard block |
||
139 | 139 | return new Link ($href, $this->getMimeType (), Link::OPDS_ACQUISITION_TYPE, $title); |
140 | 140 | } |
141 | 141 | |
142 | + /** |
|
143 | + * @param Book $book |
|
144 | + */ |
|
142 | 145 | public static function getDataByBook ($book) { |
143 | 146 | $out = array (); |
144 | 147 | $result = parent::getDb ()->prepare('select id, format, name |
@@ -152,6 +155,9 @@ discard block |
||
152 | 155 | return $out; |
153 | 156 | } |
154 | 157 | |
158 | + /** |
|
159 | + * @param string $urlParam |
|
160 | + */ |
|
155 | 161 | public static function handleThumbnailLink ($urlParam, $height) { |
156 | 162 | global $config; |
157 | 163 | |
@@ -171,6 +177,10 @@ discard block |
||
171 | 177 | return $urlParam; |
172 | 178 | } |
173 | 179 | |
180 | + /** |
|
181 | + * @param string $type |
|
182 | + * @param string $filename |
|
183 | + */ |
|
174 | 184 | public static function getLink ($book, $type, $mime, $rel, $filename, $idData, $title = NULL, $height = NULL) |
175 | 185 | { |
176 | 186 | global $config; |
@@ -38,6 +38,9 @@ |
||
38 | 38 | return self::getEntryArray (self::SQL_ALL_RATINGS, array ()); |
39 | 39 | } |
40 | 40 | |
41 | + /** |
|
42 | + * @param string $query |
|
43 | + */ |
|
41 | 44 | public static function getEntryArray ($query, $params) { |
42 | 45 | list (, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1); |
43 | 46 | $entryArray = array(); |
@@ -47,6 +47,9 @@ |
||
47 | 47 | return Base::getEntryArrayWithBookNumber (self::SQL_ALL_TAGS, self::TAG_COLUMNS, array (), "Tag"); |
48 | 48 | } |
49 | 49 | |
50 | + /** |
|
51 | + * @param integer $numberPerPage |
|
52 | + */ |
|
50 | 53 | public static function getAllTagsByQuery($query, $n, $database = NULL, $numberPerPage = NULL) { |
51 | 54 | $columns = "tags.id as id, tags.name as name, (select count(*) from books_tags_link where tags.id = tag) as count"; |
52 | 55 | $sql = 'select {0} from tags where upper (tags.name) like ? {1} order by tags.name'; |
@@ -26,6 +26,9 @@ discard block |
||
26 | 26 | unlink (TEST_FEED); |
27 | 27 | } |
28 | 28 | |
29 | + /** |
|
30 | + * @param string $relax |
|
31 | + */ |
|
29 | 32 | function jingValidateSchema($feed, $relax = OPDS_RELAX_NG) { |
30 | 33 | $path = ""; |
31 | 34 | if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
@@ -57,6 +60,9 @@ discard block |
||
57 | 60 | return true; |
58 | 61 | } |
59 | 62 | |
63 | + /** |
|
64 | + * @param string $feed |
|
65 | + */ |
|
60 | 66 | function opdsCompleteValidation ($feed) { |
61 | 67 | return $this->jingValidateSchema($feed) && $this->opdsValidator($feed); |
62 | 68 | } |
@@ -189,6 +189,10 @@ |
||
189 | 189 | $this->assertEquals (14, count($filtered)); |
190 | 190 | } |
191 | 191 | |
192 | + /** |
|
193 | + * @param string $src |
|
194 | + * @param string $out |
|
195 | + */ |
|
192 | 196 | public function normalSearch ($src, $out) |
193 | 197 | { |
194 | 198 | $driver = $this; |
@@ -163,7 +163,7 @@ |
||
163 | 163 | /** |
164 | 164 | * Replaces a Unicode character using the transliteration database. |
165 | 165 | * |
166 | - * @param $ord |
|
166 | + * @param integer $ord |
|
167 | 167 | * An ordinal Unicode character code. |
168 | 168 | * @param $unknown |
169 | 169 | * Replacement string for characters that do not have a suitable ASCII |
@@ -60,6 +60,9 @@ discard block |
||
60 | 60 | $_SERVER['REDIRECT_STATUS'] = 404; |
61 | 61 | } |
62 | 62 | |
63 | +/** |
|
64 | + * @param string $name |
|
65 | + */ |
|
63 | 66 | function getURLParam ($name, $default = NULL) { |
64 | 67 | if (!empty ($_GET) && isset($_GET[$name]) && $_GET[$name] != "") { |
65 | 68 | return $_GET[$name]; |
@@ -99,6 +102,11 @@ discard block |
||
99 | 102 | return $url . "?v=" . VERSION; |
100 | 103 | } |
101 | 104 | |
105 | +/** |
|
106 | + * @param string $xml |
|
107 | + * |
|
108 | + * @return string |
|
109 | + */ |
|
102 | 110 | function xml2xhtml($xml) { |
103 | 111 | return preg_replace_callback('#<(\w+)([^>]*)\s*/>#s', create_function('$m', ' |
104 | 112 | $xhtml_tags = array("br", "hr", "input", "frame", "img", "area", "link", "col", "base", "basefont", "param"); |
@@ -312,6 +320,9 @@ discard block |
||
312 | 320 | return $phrase; |
313 | 321 | } |
314 | 322 | |
323 | +/** |
|
324 | + * @param string $paramName |
|
325 | + */ |
|
315 | 326 | function addURLParameter($urlParams, $paramName, $paramValue) { |
316 | 327 | if (empty ($urlParams)) { |
317 | 328 | $urlParams = ""; |
@@ -376,6 +387,9 @@ discard block |
||
376 | 387 | |
377 | 388 | class LinkNavigation extends Link |
378 | 389 | { |
390 | + /** |
|
391 | + * @param string $prel |
|
392 | + */ |
|
379 | 393 | public function __construct($phref, $prel = NULL, $ptitle = NULL) { |
380 | 394 | parent::__construct ($phref, Link::OPDS_NAVIGATION_TYPE, $prel, $ptitle); |
381 | 395 | if (!is_null (GetUrlParam (DB))) $this->href = addURLParameter ($this->href, DB, GetUrlParam (DB)); |
@@ -390,6 +404,9 @@ discard block |
||
390 | 404 | |
391 | 405 | class LinkFacet extends Link |
392 | 406 | { |
407 | + /** |
|
408 | + * @param string $phref |
|
409 | + */ |
|
393 | 410 | public function __construct($phref, $ptitle = NULL, $pfacetGroup = NULL, $pactiveFacet = FALSE) { |
394 | 411 | parent::__construct ($phref, Link::OPDS_PAGING_TYPE, "http://opds-spec.org/facet", $ptitle, $pfacetGroup, $pactiveFacet); |
395 | 412 | if (!is_null (GetUrlParam (DB))) $this->href = addURLParameter ($this->href, DB, GetUrlParam (DB)); |
@@ -469,6 +486,12 @@ discard block |
||
469 | 486 | { |
470 | 487 | public $book; |
471 | 488 | |
489 | + /** |
|
490 | + * @param string $pid |
|
491 | + * @param string $pcontent |
|
492 | + * @param string $pcontentType |
|
493 | + * @param Book $pbook |
|
494 | + */ |
|
472 | 495 | public function __construct($ptitle, $pid, $pcontent, $pcontentType, $plinkArray, $pbook) { |
473 | 496 | parent::__construct ($ptitle, $pid, $pcontent, $pcontentType, $plinkArray); |
474 | 497 | $this->book = $pbook; |
@@ -1053,6 +1076,9 @@ discard block |
||
1053 | 1076 | |
1054 | 1077 | class PageCustomize extends Page |
1055 | 1078 | { |
1079 | + /** |
|
1080 | + * @param string $key |
|
1081 | + */ |
|
1056 | 1082 | private function isChecked ($key, $testedValue = 1) { |
1057 | 1083 | $value = getCurrentOption ($key); |
1058 | 1084 | if (is_array ($value)) { |
@@ -1067,6 +1093,9 @@ discard block |
||
1067 | 1093 | return ""; |
1068 | 1094 | } |
1069 | 1095 | |
1096 | + /** |
|
1097 | + * @param string $key |
|
1098 | + */ |
|
1070 | 1099 | private function isSelected ($key, $value) { |
1071 | 1100 | if (getCurrentOption ($key) == $value) { |
1072 | 1101 | return "selected='selected'"; |
@@ -1213,6 +1242,9 @@ discard block |
||
1213 | 1242 | } |
1214 | 1243 | } |
1215 | 1244 | |
1245 | + /** |
|
1246 | + * @param integer $database |
|
1247 | + */ |
|
1216 | 1248 | public static function getDbName ($database = NULL) { |
1217 | 1249 | global $config; |
1218 | 1250 | if (self::isMultipleDatabaseEnabled ()) { |
@@ -1226,6 +1258,9 @@ discard block |
||
1226 | 1258 | return ""; |
1227 | 1259 | } |
1228 | 1260 | |
1261 | + /** |
|
1262 | + * @return string |
|
1263 | + */ |
|
1229 | 1264 | public static function getDbDirectory ($database = NULL) { |
1230 | 1265 | global $config; |
1231 | 1266 | if (self::isMultipleDatabaseEnabled ()) { |
@@ -1289,6 +1324,11 @@ discard block |
||
1289 | 1324 | return self::getDb ($database)->query($query)->fetchColumn(); |
1290 | 1325 | } |
1291 | 1326 | |
1327 | + /** |
|
1328 | + * @param string $table |
|
1329 | + * @param string $id |
|
1330 | + * @param string $numberOfString |
|
1331 | + */ |
|
1292 | 1332 | public static function getCountGeneric($table, $id, $pageId, $numberOfString = NULL) { |
1293 | 1333 | if (!$numberOfString) { |
1294 | 1334 | $numberOfString = $table . ".alphabetical"; |
@@ -1301,6 +1341,10 @@ discard block |
||
1301 | 1341 | return $entry; |
1302 | 1342 | } |
1303 | 1343 | |
1344 | + /** |
|
1345 | + * @param string $columns |
|
1346 | + * @param string $category |
|
1347 | + */ |
|
1304 | 1348 | public static function getEntryArrayWithBookNumber ($query, $columns, $params, $category) { |
1305 | 1349 | list (, $result) = self::executeQuery ($query, $columns, "", $params, -1); |
1306 | 1350 | $entryArray = array(); |
@@ -1319,6 +1363,9 @@ discard block |
||
1319 | 1363 | return $entryArray; |
1320 | 1364 | } |
1321 | 1365 | |
1366 | + /** |
|
1367 | + * @param string $filter |
|
1368 | + */ |
|
1322 | 1369 | public static function executeQuery($query, $columns, $filter, $params, $n, $database = NULL, $numberPerPage = NULL) { |
1323 | 1370 | $totalResult = -1; |
1324 | 1371 |