Home
last modified time | relevance | path

Searched refs:notifyEvent (Results 1 – 7 of 7) sorted by relevance

/plugin/creole/syntax/
H A Dmonospace.php58 … $this->eventhandler->notifyEvent('open', 'monospace', 'dw-monospace', $pos, $match, $handler);
61 … $this->eventhandler->notifyEvent('open', 'monospace', 'creole-monospace', $pos, $match, $handler);
70 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
73 …$this->eventhandler->notifyEvent('close', 'monospace', 'creole-monospace', $pos, $match, $handler);
95 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
H A Dsubscript.php55 $this->eventhandler->notifyEvent('open', 'subscript', NULL, $pos, $match, $handler);
62 … $this->eventhandler->notifyEvent('close', 'subscript', NULL, $pos, $match, $handler);
74 $this->eventhandler->notifyEvent('close', 'subscript', NULL, $pos, $match, $handler);
H A Dsuperscript.php55 … $this->eventhandler->notifyEvent('open', 'superscript', NULL, $pos, $match, $handler);
62 … $this->eventhandler->notifyEvent('close', 'superscript', NULL, $pos, $match, $handler);
74 $this->eventhandler->notifyEvent('close', 'superscript', NULL, $pos, $match, $handler);
H A Dlistblock.php55 $this->eventhandler->notifyEvent('open', 'list', NULL, $pos, $match, $handler);
61 $this->eventhandler->notifyEvent('close', 'list', NULL, $pos, $match, $handler);
H A Dtable.php48 $this->eventhandler->notifyEvent('open', 'table', NULL, $pos, $match, $handler);
61 $this->eventhandler->notifyEvent('close', 'table', NULL, $pos, $match, $handler);
H A Dheader.php56 $this->eventhandler->notifyEvent('insert', 'header', 'header', $pos, $match, $handler);
/plugin/creole/helper/
H A Deventhandler.php144 public function notifyEvent ($state, $clazz, $tag, $pos, $match, $handler) { function in helper_plugin_creole_eventhandler