blob: 1cc64ceb1d08c6776ffc9a24a79faad8faf7fd1d (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | <?php
/**
 * Register the ElggWire class for the object/thewire subtype
 */
if (get_subtype_id('object', 'thewire')) {
	update_subtype('object', 'thewire', 'ElggWire');
} else {
	add_subtype('object', 'thewire', 'ElggWire');
}
 |