diff options
Diffstat (limited to 'plugins/demo_plugin/demo_plugin.php')
-rw-r--r-- | plugins/demo_plugin/demo_plugin.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/demo_plugin/demo_plugin.php b/plugins/demo_plugin/demo_plugin.php index 9384c21f..f5f028e0 100644 --- a/plugins/demo_plugin/demo_plugin.php +++ b/plugins/demo_plugin/demo_plugin.php | |||
@@ -76,6 +76,7 @@ function hook_demo_plugin_render_includes($data) | |||
76 | * | 76 | * |
77 | * Template placeholders: | 77 | * Template placeholders: |
78 | * - text | 78 | * - text |
79 | * - endofpage | ||
79 | * - js_files | 80 | * - js_files |
80 | * | 81 | * |
81 | * Data: | 82 | * Data: |
@@ -91,6 +92,11 @@ function hook_demo_plugin_render_footer($data) | |||
91 | // footer text | 92 | // footer text |
92 | $data['text'][] = 'Shaarli is now enhanced by the awesome demo_plugin.'; | 93 | $data['text'][] = 'Shaarli is now enhanced by the awesome demo_plugin.'; |
93 | 94 | ||
95 | // Free elements at the end of the page. | ||
96 | $data['endofpage'][] = '<marquee id="demo_marquee">' . | ||
97 | 'DEMO: it\'s 1999 all over again!' . | ||
98 | '</marquee>'; | ||
99 | |||
94 | // List of plugin's JS files. | 100 | // List of plugin's JS files. |
95 | // Note that you just need to specify CSS path. | 101 | // Note that you just need to specify CSS path. |
96 | $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/demo_plugin/demo_plugin.js'; | 102 | $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/demo_plugin/demo_plugin.js'; |