Home
last modified time | relevance | path

Searched refs:register_hook (Results 1 – 20 of 20) sorted by relevance

/dokuwiki/_test/tests/inc/
H A DPageUtilsIsHiddenPage.test.php39 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'BEFORE', $this, 'alwaysHide');
51 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'BEFORE', $this, 'showBefore');
65 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'alwaysHide');
73 …$EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'hideBeforeWithoutPrevent');
85 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'showAfter');
H A Devents_nested.test.php16 $EVENT_HANDLER->register_hook('NESTED_EVENT', 'BEFORE', null,
26 $EVENT_HANDLER->register_hook('NESTED_EVENT', 'BEFORE', null,
H A Dparserutils_set_metadata_during_rendering.test.php27 $EVENT_HANDLER->register_hook(
34 $EVENT_HANDLER->register_hook(
41 …$EVENT_HANDLER->register_hook('PARSER_HANDLER_DONE', 'BEFORE', $this, 'helper_inject_test_instruct…
H A Dcommon_saveWikiText.test.php282 $EVENT_HANDLER->register_hook('IO_WIKIPAGE_WRITE', 'BEFORE', $this, 'handle_write');
/dokuwiki/_test/tests/test/
H A Dglobals.test.php18 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
39 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
H A Dhooks.test.php14 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
H A Dplugins_defaults.test.php14 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
H A Dplugins.test.php22 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
H A Dreset.test.php16 $EVENT_HANDLER->register_hook('DOKUWIKI_STARTED', 'AFTER', null,
/dokuwiki/lib/plugins/testing/
H A Daction.php19 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'dokuwikiStarted');
/dokuwiki/lib/plugins/testing/_test/
H A Ddummy_plugin_integration_test.test.php22 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
/dokuwiki/lib/plugins/authad/
H A Daction.php24 $controller->register_hook('AUTH_LOGIN_CHECK', 'BEFORE', $this, 'handleAuthLoginCheck');
25 $controller->register_hook('FORM_LOGIN_OUTPUT', 'BEFORE', $this, 'handleFormLoginOutput');
/dokuwiki/lib/plugins/logviewer/
H A Daction.php18 $controller->register_hook('INDEXER_TASKS_RUN', 'AFTER', $this, 'pruneLogs');
/dokuwiki/lib/plugins/styling/
H A Daction.php23 $controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'handleHeader');
/dokuwiki/_test/tests/lib/exe/
H A Dajax_requests.test.php78 $EVENT_HANDLER->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', null,
91 $EVENT_HANDLER->register_hook('AJAX_CALL_UNKNOWN', 'AFTER', null,
/dokuwiki/lib/plugins/popularity/
H A Daction.php27 $controller->register_hook('INDEXER_TASKS_RUN', 'AFTER', $this, 'autosubmit', []);
/dokuwiki/lib/plugins/extension/
H A Daction.php24 $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handleAjaxToggle');
/dokuwiki/lib/plugins/acl/
H A Daction.php27 $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handleAjaxCallAcl');
/dokuwiki/lib/plugins/safefnrecode/
H A Daction.php18 $controller->register_hook('INDEXER_TASKS_RUN', 'BEFORE', $this, 'handleIndexerTasksRun');
/dokuwiki/inc/Extension/
H A DEventHandler.php50 public function register_hook($event, $advise, $obj, $method, $param = null, $seq = 0) function in dokuwiki\\Extension\\EventHandler