Home
last modified time | relevance | path

Searched refs:event (Results 576 – 600 of 1825) sorted by relevance

1...<<21222324252627282930>>...73

/plugin/docnavigation/
H A Daction.php32 * @param Event $event
34 public function addtopnavigation(Event $event)
38 if ($event->data[0] != 'xhtml' || !in_array($ACT, ['show', 'preview'])) return;
40 $event->data[1] = $this->htmlNavigationbar(false)
41 . $event->data[1]
57 // the RENDERER_CONTENT_POSTPROCESS event is triggered just after rendering the instruction,
30 addtopnavigation(Doku_Event $event) global() argument
/plugin/structacl/
H A Daction.php28 * @param Doku_Event $event event object by reference
32 public function handleAclCheck(Doku_Event $event, $mode) argument
76 if (!empty($users) && in_array($event->data['user'], $users)) {
77 $event->result = AUTH_UPLOAD;
82 $event->preventDefault();
/plugin/file2dw/
H A Daction.php34 * @param Doku_Event $event
37 function _addsvgbutton(&$event, $param) { argument
38 if($event->data['view'] == 'page') {
46 * @param Doku_Event $event It's a dokuwiki event function
49 function _render(&$event, $param) { argument
68 if ( $event->data == 'file2dw' ) $event->preventDefault();
122 * @param Doku_Event $event It's a dokuwiki event function
125 function _parser(&$event, $param) { argument
128 if ( $event->data != 'file2dw' ) return;
164 $event->data = 'show';
[all …]
/plugin/datepicker/
H A Daction.php23 public function insert_button(Doku_Event $event, $param) { argument
24 $event->data[] = array(
36 public function _ajax_call(Doku_Event $event, $param) { argument
37 if ($event->data !== 'plugin_datepicker') {
41 $event->stopPropagation();
42 $event->preventDefault();
/plugin/epub/
H A Daction.php30 function create_ebook_button($event,$param) { argument
55 function get_epub($event, $param) { argument
99 function prevent_cache(&$event) { argument
105 $event->preventDefault();
108 function loadScript(&$event) { argument
121 function check_scriptLoaded(&$event) { argument
/plugin/combo/ComboStrap/
H A DCacheLog.php12 const EVENT_ATT = "event";
28 public static function deleteCacheIfExistsAndLog(IFetcher $fetcher, string $event, string $message) argument
44 $event,
52 LogUtility::log2file("Error while logging cache event. Error: {$e->getMessage()}");
58 public static function renderCacheAndLog(IFetcherSource $fetcher, string $event, string $message) argument
67 $event,
75 LogUtility::log2file("Error while logging cache event. Error: {$e->getMessage()}");
82 public static function logCacheEvent(string $event, string $path, string $format, string $operation, string $message) argument
88 self::EVENT_ATT => $event,
/plugin/photogallery/lightGallery/js/
H A Djquery.mousewheel.min.js8event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detai…
/plugin/refnotes/
H A Dadmin.js235 this.element.change(this, function (event) {
236 event.data.updateDefault();
473 combo.change(this, function (event) {
474 event.data.onChange();
509 edit.change(this, function (event) {
510 event.data.setValue(validate(edit.val()));
513 button.click(this, function (event) {
514 event.data.setValue('inherit');
577 function onNamespaceChange(event) {
581 function onAddNamespace(event) {
[all...]
/plugin/codeprettify/
H A Daction.php23 public function load_code_prettify(Doku_Event $event, $param) argument
53 $event->data['script'][] = [
64 $event->data['script'][] = [
77 $event->data['link'][] = array (
/plugin/usercontact/
H A Daction.php20 public function handle_ajax_call_unknown(Doku_Event $event, $param) argument
22 if ($event->data !== 'plugin_usercontact') {
26 $event->preventDefault();
27 $event->stopPropagation();
/plugin/structpublish/action/
H A Dsave.php20 * Handle the page save event to store revision meta data
22 * @param Doku_Event $event
25 public function handleSave(Doku_Event $event) argument
30 $id = $event->data['id'];
39 $revision = new Revision($id, $event->data['newRevision']);
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
H A Dsharedapi.php246 function sharedapi_capture_gpc_variable($name, $gname, $event, $r = 'r', $reset = false) { argument
284 if (strpos($variable, $event . ':') !== false) {
285 $variable = substr($variable, strlen($event . ':'));
295 function sharedapi_get_destination($pid, $event, $r = 'r', $reset = false) { argument
299 function sharedapi_get_final_destination($pid, $event) { argument
300 sharedapi_get_final_lid($pid, $event);
304 function sharedapi_get_lid($pid, $event, $r = 'r', $reset = false) { argument
308 function sharedapi_get_final_lid($pid, $event) { argument
312 function sharedapi_capture_destination($pid, $event, $api_path) { argument
315 $destination = sharedapi_get_destination($pid, $event, 'gr');
[all …]
/plugin/dlcount/
H A Daction.php36 function _delcounter(&$event, $param) { argument
37 $metafn = $this->metaFnFromFullPath($event->data['path']);
41 function _delcounter2(&$event, $param) { argument
42 $metafn = $this->metaFnFromFullPath($event->data[1]);
47 function _showcount(&$event, $param) { argument
50 $html = &$event->data;
95 function _countdl(&$event, $param) { argument
96 …if ($event->data['download'] != 1) return; // skip embedded images (we don't want to count these)
97 $metafn = $this->metaFnFromFullPath($event->data['file']);
/plugin/linksuggest/
H A Daction.php26 public function _add_config(&$event, $param) {
35 * @param $event
37 public function page_link($event) {
38 if ($event->data !== 'plugin_linksuggest') {
42 $event->stopPropagation();
43 $event->preventDefault();
157 * @param Event $event
159 public function media_link($event) {
160 if ($event->data !== 'plugin_imglinksuggest') {
164 $event
32 page_link($event) global() argument
154 media_link($event) global() argument
[all...]
/plugin/task/
H A Daction.php24 function handle_act_preprocess(&$event, $param) { argument
25 if ($event->data != 'newtask' && $event->data != 'changetask') return;
28 $event->stopPropagation();
30 switch($event->data) {
32 $event->data = $this->_newTask();
35 $event->data = $this->_changeTask();
/plugin/tline/
H A DCHANGES.txt8 * Added test example page for trying and testing event attributes
13 theme.event.track.height & theme.event.tape.height need to work with each other.
29 to re-enable event highlighting
40 theme.event.duration.color or css color for class timeline-small-event-tape
74 * Fixed issue 33: added event attribute durationEvent.
88 event-utils.js. -- LarryK rev 1659
109 Timeline has multiple event bands or a pseudo event band that is just
208 'timeline-event-label hot_event' and 'timeline-event-tape hot_event' for
214 additional event attributes.
222 event object. -- LarryK rev 1576
[all …]
/plugin/combo/action/
H A Dlang.php43 * https://www.dokuwiki.org/devel:event:init_lang_load
51 public function load_lang(Doku_Event $event, $param) argument
55 * this event is send without any context
58 * This event is send before DokuWiki environment has initialized
107 $initialLang = $event->data;
110 $event->data = $pageLang;
121 * @param Doku_Event $event
125 function modifyRtlStyling(Doku_Event $event, $params) argument
/plugin/publish/action/
H A Drevisions.php20 function handle_revisions(Doku_Event &$event, $param) { argument
31 foreach ($event->data->_content as $key => $ref) {
47 $event->data->_content[$member]['class'] = 'li approved_revision';
49 $event->data->_content[$member]['class'] = 'li unapproved_revision';
/plugin/diagramsnet/lib/
H A Delectron.js115 mainWindow.on('close', (event) =>
117 const win = event.sender
163 event.preventDefault()
209 event.returnValue = 'pong'
790 event.preventDefault();
1122 event.finalize = finalize;
1132 event.reply('export-error');
1239 event.finalize = finalize;
1293 event.reply('export-error');
1422 event.reply('export-error');
[all …]
/plugin/dirtylittlehelper/
H A Daction.php29 function dirtylittlehelper_insert_button(Doku_Event $event, $param) { argument
31 $event->data[] = array (
40 function dirtylittlehelper_output(&$event, $param) { argument
46 function dirtylittlehelper_varis(&$event, $param){ argument
399 function dirtylittlehelper_add_js_mermaid(Doku_Event $event, $param){ argument
400 $event->data['script'][] = array(
406 $event->data['script'][] = array(
454 function dirtylittlehelper_extendJSINFO(&$event, $param) { argument
477 function dirtylittlehelper_menu(&$event, $param){ argument
482 …if ($event->data['view']=='user' && $INFO['isadmin'] && $this->getConf('show_menu') && $this->dlh_…
[all …]
/plugin/wysiwyg/fckeditor/editor/css/behaviors/
H A Dshowtableborders.htc3 <public:attach event="oncontentready" onevent="ShowBorders()" />
4 <public:attach event="onpropertychange" onevent="OnPropertyChange()" />
30 if ( event.propertyName == 'border' || event.propertyName == 'className' )
/plugin/data-au/_test/
H A Daction_handle.test.php42 $event = new Doku_Event('', $dataau;
43 $this->action->_handle($event, null);
58 $event = new Doku_Event('', $dataau;
59 $this->action->_handle($event, null);
/plugin/fckg/fckeditor/editor/css/behaviors/
H A Dshowtableborders.htc3 <public:attach event="oncontentready" onevent="ShowBorders()" />
4 <public:attach event="onpropertychange" onevent="OnPropertyChange()" />
30 if ( event.propertyName == 'border' || event.propertyName == 'className' )
/plugin/skilltagicon/action/
H A Dicon.php29 * @param Doku_Event $event event object by reference
35 public function handle_tpl_content_display(Doku_Event &$event, $param) { argument
67 $event->data = $icon_html . $event->data;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecaptchaEnterprise/
H A DGoogleCloudRecaptchaenterpriseV1Assessment.php52 public function setEvent(GoogleCloudRecaptchaenterpriseV1Event $event) argument
54 $this->event = $event;
61 return $this->event;

1...<<21222324252627282930>>...73