You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?
|
|
class Plugin_Example extends Plugin {
|
|
function initialize() {
|
|
$this->add_listener('article_before');
|
|
}
|
|
|
|
function article_before(&$line) {
|
|
$line["title"] = "EXAMPLE/REPLACED:" . $line["title"];
|
|
}
|
|
}
|
|
?>
|