]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/plugins/test/test.php
03be4f4e8c997bd9eb875ad1f42a65bf4d294eb7
[github/shaarli/Shaarli.git] / tests / plugins / test / test.php
1 <?php
2
3 /**
4 * Hook for test.
5 *
6 * @param array $data - data passed to plugin.
7 *
8 * @return mixed altered data.
9 */
10 function hook_test_random($data)
11 {
12 if (isset($data['_PAGE_']) && $data['_PAGE_'] == 'test') {
13 $data[1] = 'page test';
14 } elseif (isset($data['_LOGGEDIN_']) && $data['_LOGGEDIN_'] === true) {
15 $data[1] = 'loggedin';
16 } elseif (array_key_exists('_LOGGEDIN_', $data)) {
17 $data[1] = 'loggedin';
18 $data[2] = $data['_LOGGEDIN_'];
19 } else {
20 $data[1] = $data[0];
21 }
22
23 return $data;
24 }
25
26 function hook_test_error()
27 {
28 new Unknown();
29 }