1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-25 11:57:42 +02:00
ttrss/plugins/af_zz_noautoplay/init.php

23 lines
321 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(1.0,
"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;
}
}