tt-rss/plugins/example_article/init.php

35 lines
549 B
PHP
Raw Normal View History

2013-02-23 13:02:04 +01:00
<?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;
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
2013-02-23 13:02:04 +01:00
}
?>