blob: ca74c611961ca56583ab5d03ee552ae60dd7e220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
/**
* Activate Tidypics
*
* @author Cash Costello
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
*/
// register classes
if (get_subtype_id('object', 'album')) {
update_subtype('object', 'album', 'TidypicsAlbum');
} else {
add_subtype('object', 'album', 'TidypicsAlbum');
}
if (get_subtype_id('object', 'image')) {
update_subtype('object', 'image', 'TidypicsImage');
} else {
add_subtype('object', 'image', 'TidypicsImage');
}
// set default settings
$plugin = elgg_get_plugin_from_id('tidypics');
$defaults = array(
'tagging' => true,
);
foreach ($defaults as $name => $value) {
if ($plugin->getSetting($name) === null) {
$plugin->setSetting($name, $value);
}
}
|