summaryrefslogtreecommitdiff
path: root/providers/Pzbs.php
blob: c37edee84cb7456fd855bde0077f6df9d170be25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Providers;

require_once('Rss.php');
require_once('Item.php');

class Pzbs extends \Providers\Rss {

    protected function _getFeedUrl($feed) {
        return sprintf('https://www.pzbs.pl/%s?format=feed&type=rss', $feed);
    }

    protected function _getCachePath() {
        return '../cache/pzbs.%s';
    }

}

?>