Add the nmuber of elemnts in search and multidatabase view. re #79

This commit is contained in:
Sébastien Lucas 2014-06-02 21:33:10 +02:00
förälder 270c281741
incheckning f8c7c4a3ef
1 ändrade filer med 2 tillägg och 2 borttagningar

Visa fil

@ -949,7 +949,7 @@ class PageQueryResult extends Page
array_push ($this->entryArray, new Entry (str_format (localize ("search.result.{$key}"), $this->query), DB . ":query:{$d}:{$key}", array_push ($this->entryArray, new Entry (str_format (localize ("search.result.{$key}"), $this->query), DB . ":query:{$d}:{$key}",
str_format (localize("{$key}word", $total), $total), "text", str_format (localize("{$key}word", $total), $total), "text",
array ( new LinkNavigation ("?page={$pagequery}&query={$query}&db={$d}&scope={$key}")), array ( new LinkNavigation ("?page={$pagequery}&query={$query}&db={$d}&scope={$key}")),
Base::noDatabaseSelected () ? "" : "tt-header")); Base::noDatabaseSelected () ? "" : "tt-header", $total));
} }
if (!Base::noDatabaseSelected () && $this->useTypeahead ()) { if (!Base::noDatabaseSelected () && $this->useTypeahead ()) {
foreach ($array as $entry) { foreach ($array as $entry) {
@ -992,7 +992,7 @@ class PageQueryResult extends Page
list ($array, $totalNumber) = Book::getBooksByQuery (array ("all" => $crit), 1, $i, 1); list ($array, $totalNumber) = Book::getBooksByQuery (array ("all" => $crit), 1, $i, 1);
array_push ($this->entryArray, new Entry ($key, DB . ":query:{$i}", array_push ($this->entryArray, new Entry ($key, DB . ":query:{$i}",
str_format (localize ("bookword", $totalNumber), $totalNumber), "text", str_format (localize ("bookword", $totalNumber), $totalNumber), "text",
array ( new LinkNavigation ("?" . DB . "={$i}&page=9&query=" . $this->query)))); array ( new LinkNavigation ("?" . DB . "={$i}&page=9&query=" . $this->query)), "", $totalNumber));
$i++; $i++;
} }
return; return;