summaryrefslogtreecommitdiff
path: root/plugins/no_iframes/init.php
blob: c66d7abafa718f9f0349307f50566f83aa5dd2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
class No_Iframes extends Plugin {
	private $host;

	function about() {
		return array(1.0,
			"Remove embedded iframes",
			"fox");
	}

	function init($host) {
		$this->host = $host;

		$host->add_hook($host::HOOK_SANITIZE, $this);
	}

	function hook_sanitize($doc, $site_url, $allowed_elements, $disallowed_attributes) {

		$allowed_elements = array_diff($allowed_elements, array("iframe"));

		return array($doc, $allowed_elements, $disallowed_attributes);
	}

	function api_version() {
		return 2;
	}

}
?>