How can I display icon for authors, series, tags and books on COPS instance main page?
The images files are here:
https://github.com/seblucas/cops/tree/master/images
They are included as public static icons... but I can't see them anywhere!
Note: File base.php makes a reference to the images as
PHP Code:
public static $icons = array(
Author::ALL_AUTHORS_ID => 'images/author.png',
Serie::ALL_SERIES_ID => 'images/serie.png',
Book::ALL_RECENT_BOOKS_ID => 'images/recent.png',
Tag::ALL_TAGS_ID => 'images/tag.png',
Language::ALL_LANGUAGES_ID => 'images/language.png',
CustomColumn::ALL_CUSTOMS_ID => 'images/tag.png',
"cops:books$" => 'images/allbook.png',
"cops:books:letter" => 'images/allbook.png',
Publisher::ALL_PUBLISHERS_ID => 'images/publisher.png'
);
my config_default.php has proper
PHP Code:
/*
* Show icon for authors, series, tags and books on OPDS feed
* 1 : enable
* 0 : disable
*/
$config['cops_show_icons'] = "1";
See details:
Issue #228 · seblucas/cops -
https://github.com/seblucas/cops/issues/228
Also see my related feature request
Request to beautify COPS: Images in the main screen · Issue #222 · seblucas/cops -
https://github.com/seblucas/cops/issues/222