1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-02 12:50:52 +02:00
ttrss/plugins/example_article/init.php
2013-04-17 16:48:41 +04:00

30 lines
506 B
PHP

<?php
class Example_Article extends Plugin {
private $host;
function about() {
return array(1.0,
"Example plugin for HOOK_RENDER_ARTICLE",
"fox",
true);
}
function init($host) {
$this->host = $host;
$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
}
function get_prefs_js() {
return file_get_contents(dirname(__FILE__) . "/init.js");
}
function hook_render_article($article) {
$article["content"] = "Content changed: " . $article["content"];
return $article;
}
}
?>