blob: 342d5e13625e8f49713237068246b0006514b26b (
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() {
}
|