aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/hooks/basic.php
blob: fe0b847a2789f4a4f9e22945ff6b5e24fc6c2c6a (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
30
31
32
33
34
<?php

register_plugin_hook('get_items', 'example', 'example_plugin_hook');
register_plugin_hook('get_items', 'example', 'example_plugin_hook_2');

$params = array('username' => 'Joe');
$items = trigger_plugin_hook('get_items', 'example', $params, $default);

var_dump($items);

function example_plugin_hook($hook, $type, $value, $params) {
	if (is_array($value)) {
		$value[] = "Hook Value 1";
		$value[] = "Hook Value 2";
	}

	return $value;
}

function example_plugin_hook($hook, $type, $value, $params) {
	$username = isset($params['username']) ? $params['username'] : NULL;
	if (is_array($value)) {
		switch($username) {
			case 'Joe':
				$value[] = "Joe's item";
				break;
			case 'John':
				$value[] = "Joe's item";
				break;
		}
	}

	return $value;
}