mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
17 lines
426 B
PHP
17 lines
426 B
PHP
<?php
|
|
/**
|
|
* COPS (Calibre OPDS PHP Server) class file
|
|
*
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
* @author Sébastien Lucas <sebastien@slucas.fr>
|
|
*/
|
|
|
|
class PageRecentBooks extends Page
|
|
{
|
|
public function InitializeContent ()
|
|
{
|
|
$this->title = localize ("recent.title");
|
|
$this->entryArray = Book::getAllRecentBooks ();
|
|
$this->idPage = Book::ALL_RECENT_BOOKS_ID;
|
|
}
|
|
}
|