ttrss/plugins/af_zz_noautoplay/init.php

23 lines
322 B
PHP
Raw Normal View History

2015-07-31 12:42:22 +02:00
<?php
class Af_Zz_NoAutoPlay extends Plugin {
private $host;
function about() {
return array(null,
2015-07-31 12:42:22 +02:00
"Don't autoplay HTML5 videos",
"fox");
}
function init($host) {
$this->host = $host;
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function api_version() {
return 2;
}
}