diff options
author | Sem <sembrestels@riseup.net> | 2012-08-01 14:17:07 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-01 14:17:07 +0200 |
commit | 1bd6ef7e6b6a56ac30dc4b7b1daa9b924a5eddd7 (patch) | |
tree | 74360ff6183c192a89733c62464fb893dbcfaa29 /start.php | |
parent | 65dfea09a7d7b7d2d8b723eb2c66240e39d2f9c0 (diff) | |
download | elgg-1bd6ef7e6b6a56ac30dc4b7b1daa9b924a5eddd7.tar.gz elgg-1bd6ef7e6b6a56ac30dc4b7b1daa9b924a5eddd7.tar.bz2 |
Colorbox integration into Elgg.
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/start.php b/start.php new file mode 100644 index 000000000..9a8efafb0 --- /dev/null +++ b/start.php @@ -0,0 +1,17 @@ +<?php +/** + * Elgg Colorbox + * A lightweight customizable lightbox plugin for jQuery + * + * @package ElggColorbox + */ + +elgg_register_event_handler('init', 'system', 'colorbox_init'); + +/** + * Initialize the colorbox plugin. + * + */ +function colorbox_init() { + +} |