We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7c9e3 commit e1ac57eCopy full SHA for e1ac57e
1 file changed
lib/Scribite/HookHandlers.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+use Zikula\Core\Hook\DisplayHook;
4
+
5
/**
6
* Zikula Application Framework
7
*
@@ -29,12 +31,15 @@ public function setup()
29
31
30
32
33
* Display a html snippet with buttons for inserting Scribites into a textarea
34
+ * NOTE:
35
+ * Zikula_DisplayHook extends Zikula\Core\Hook\DisplayHook
36
+ * SO - this method SHOULD be backward compatible with old hooks.
37
- * @param Zikula_Hook $hook
38
+ * @param DisplayHook $hook
39
40
* @return void
41
*/
- public function uiEdit(Zikula_DisplayHook $hook)
42
+ public function uiEdit(DisplayHook $hook)
43
{
44
// get the module name
45
$module = $hook->getCaller();
0 commit comments