Code

< 40 %
40-60 %
> 60 %
1
<?php
2
/**
3
 * COPS (Calibre OPDS PHP Server) HTML main script
4
 *
5
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6
 * @author     Sébastien Lucas <[email protected]>
7
 *
8
 */
9
10
require_once('config.php');
11
12
header('Content-Type:application/json;charset=utf-8');
13
14
echo json_encode(JSONRenderer::getJson());
15
16