]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/plugins/test/test.php
6 * @param array $data - data passed to plugin.
8 * @return mixed altered data.
10 function hook_test_random($data)
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';