diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/demo_plugin/custom_demo.css | 6 | ||||
-rw-r--r-- | plugins/demo_plugin/demo_plugin.php | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/demo_plugin/custom_demo.css b/plugins/demo_plugin/custom_demo.css index ab1720b5..af5e8bf9 100644 --- a/plugins/demo_plugin/custom_demo.css +++ b/plugins/demo_plugin/custom_demo.css | |||
@@ -4,4 +4,10 @@ | |||
4 | 4 | ||
5 | .upper_plugin_demo { | 5 | .upper_plugin_demo { |
6 | float: left; | 6 | float: left; |
7 | } | ||
8 | |||
9 | #demo_marquee { | ||
10 | background: darkmagenta; | ||
11 | color: white; | ||
12 | font-weight: bold; | ||
7 | } \ No newline at end of file | 13 | } \ No newline at end of file |
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'; |