blob: 9a8efafb0f2f231d2dc8486a2dad6a701d9e0ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() {
}
|