summaryrefslogtreecommitdiffstats
path: root/custom/views.php
blob: 6d48d5959181e0cc92ecb49fa5b0dedb11f74c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$views = array(
    'rss10' => array(
        'header' => 'Content-Type: text/xml; charset=UTF-8',
        'prolog' => '<?xml version="1.0" encoding="UTF-8" ?>'."\n",
        'template' => dirname(__FILE__).'/views/rss10/rss10.tpl.php'
    ),
    'atom10' => array(
        //'header' => 'Content-Type: text/xml; charset=UTF-8',
        'header' => 'Content-Type: text/plain; charset=UTF-8',
        'prolog' => '<?xml version="1.0" encoding="UTF-8" ?>'."\n",
        'template' => dirname(__FILE__).'/views/atom10/atom10.tpl.php'
    ),
    'archive' => array(
        'header' => 'Content-type: text/html; charset=UTF-8',
        'prolog' => '',
        'template' => dirname(__FILE__).'/views/archive/archive.tpl.php'
    ),
    'html' => array(
        'header' => 'Content-type: text/html; charset=UTF-8',
        'prolog' => '',
        'template' => dirname(__FILE__).'/views/default/index.tpl.php'
    )
);