1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/source/plugins/af_elreg/init.php
2014-11-29 16:42:53 +01:00

50 lines
898 B
PHP

<?php
class Af_ElReg extends Plugin {
private $host;
function about() {
return array(1.0,
"Fetch content of The Register feeds",
"fox");
}
function init($host) {
$this->host = $host;
$host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
}
function hook_article_filter($article) {
if (strpos($article["link"], "theregister.co.uk") !== FALSE) {
$doc = new DOMDocument();
@$doc->loadHTML(fetch_file_contents($article["link"]));
$basenode = false;
if ($doc) {
$xpath = new DOMXPath($doc);
$trash = $xpath->query("//*[@class='wptl top' or @class='wptl btm']");
foreach ($trash as $t) {
$t->parentNode->removeChild($t);
}
$basenode = $doc->getElementById("body");
if ($basenode) {
$article["content"] = $doc->saveXML($basenode);
}
}
}
return $article;
}
function api_version() {
return 2;
}
}
?>