summaryrefslogtreecommitdiff
path: root/init.php
blob: bf107bcdd964fe3790e2f59067f47d660b7c3e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
class Af_Img_PlaceHolders extends Plugin {

	function about() {
		return array(null,
			"Add loading placeholders for images (for slow connections)",
			"fox");
	}

	function init($host) {
		//
	}

	function get_js() {
		return file_get_contents(__DIR__ . "/init.js");
	}

	function api_version() {
		return 2;
	}

}