blob: 6332050a802c55ae4a2777ada3fca1fbf39d0101 (
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
33
34
35
|
<?php
/**
* Elgg tidypics_settings plugin
*
* Only uncomment and change settings that you want to change.
*
*/
// setup tidypics settings object
global $CONFIG;
if (!isset($CONFIG->tidypics)) {
error_log('tidypics_settings: error - not loaded after tidypics plugin!!!');
}
/////////////////////////////////////////////////////////////////////
// Image sizes - Tidypics makes 3 views of an image:
// Large - displayed when viewing the image alone
// Small - displayed on an album page
// Thumb - used for the activity log
// There is also the original image that is available for download
// $CONFIG->tidypics->image_large_width = 600;
// $CONFIG->tidypics->image_large_height = 600;
// $CONFIG->tidypics->image_small_width = 153;
// $CONFIG->tidypics->image_small_height = 153;
// $CONFIG->tidypics->image_thumb_width = 60;
// $CONFIG->tidypics->image_thumb_height = 60;
?>
|