diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-13 01:02:16 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-13 01:02:16 +0000 |
commit | 6e78b8fb472dc5ff8b586911d5ad06cb12aaea4e (patch) | |
tree | ba8933f6619db4c3f58f59523dfa112cf7a5b6fe /tidypics_settings/start.php | |
parent | a80882a24895f9e2fd7447ca46d089d94d217c46 (diff) | |
download | elgg-6e78b8fb472dc5ff8b586911d5ad06cb12aaea4e.tar.gz elgg-6e78b8fb472dc5ff8b586911d5ad06cb12aaea4e.tar.bz2 |
added a new plugin that allows users to set an extensive list of (future) parameters and not have to worry about upgrades
Diffstat (limited to 'tidypics_settings/start.php')
-rw-r--r-- | tidypics_settings/start.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tidypics_settings/start.php b/tidypics_settings/start.php new file mode 100644 index 000000000..6332050a8 --- /dev/null +++ b/tidypics_settings/start.php @@ -0,0 +1,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;
+
+
+
+
+
+?>
\ No newline at end of file |