mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 11:26:31 +03:00
[Kanali6Bridge] Add bridge (#2798)
This commit is contained in:
parent
9503f9ad7f
commit
33e3d9b596
1 changed files with 21 additions and 0 deletions
21
bridges/Kanali6Bridge.php
Normal file
21
bridges/Kanali6Bridge.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
class Kanali6Bridge extends XPathAbstract {
|
||||
const NAME = 'Kanali6 Latest Podcasts';
|
||||
const DESCRIPTION = 'Returns the latest podcasts';
|
||||
const URI = 'https://kanali6.com.cy/mp3/TOC.html';
|
||||
const MAINTAINER = 'Yaman Qalieh';
|
||||
|
||||
const FEED_SOURCE_URL = 'https://kanali6.com.cy/mp3/TOC.xml';
|
||||
const XPATH_EXPRESSION_ITEM = '//recording[position() <= 50]';
|
||||
const XPATH_EXPRESSION_ITEM_TITLE = './title';
|
||||
const XPATH_EXPRESSION_ITEM_CONTENT = './durationvisual';
|
||||
const XPATH_EXPRESSION_ITEM_URI = './filename';
|
||||
const XPATH_EXPRESSION_ITEM_AUTHOR = './/producersname';
|
||||
const XPATH_EXPRESSION_ITEM_TIMESTAMP = './recfinisheddatetime';
|
||||
const XPATH_EXPRESSION_ITEM_ENCLOSURES = './filename';
|
||||
|
||||
public function getURI() {
|
||||
return self::URI;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue