summaryrefslogtreecommitdiff
path: root/plugins/af_zz_noautoplay/init.php
blob: 491800708fd27e7c06866c7d38676a0dda16740f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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;
	}

}