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.
tt-rss/plugins/example_api/init.php

35 lines
601 B
PHP

<?php
class Example_Api extends Plugin {
// Demonstrates adding a method to the API
// Plugin methods return an array containint
// 1. status (STATUS_OK or STATUS_ERR)
// 2. arbitrary payload
private $host;
function about() {
return array(1.0,
"Example plugin adding an API method",
"fox",
true,
"http://tt-rss.org/");
}
function init($host) {
$this->host = $host;
$host->add_api_method("example_testmethod", $this);
}
function example_testmethod() {
return array(API::STATUS_OK, array("current_time" => time()));
}
function api_version() {
return 2;
}
}
?>