aboutsummaryrefslogtreecommitdiff
path: root/upgrades
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-02-13 15:39:45 -0800
committerBrett Profitt <brett.profitt@gmail.com>2012-02-13 15:40:52 -0800
commit894ea6758f3f99c49807df99ef4bbd95f74273dc (patch)
tree90f4166d6cd605eb4d7e95d63682732a1c5476a5 /upgrades
parent67d855d73499f36f15331e1ff18cccd13aa8aa74 (diff)
downloadelgg-894ea6758f3f99c49807df99ef4bbd95f74273dc.tar.gz
elgg-894ea6758f3f99c49807df99ef4bbd95f74273dc.tar.bz2
Fixes #11. Added notifications back.
Diffstat (limited to 'upgrades')
-rw-r--r--upgrades/2010102801.php2
-rw-r--r--upgrades/2012020901.php26
2 files changed, 27 insertions, 1 deletions
diff --git a/upgrades/2010102801.php b/upgrades/2010102801.php
index 9190912fe..5bd5f78b4 100644
--- a/upgrades/2010102801.php
+++ b/upgrades/2010102801.php
@@ -23,4 +23,4 @@ while ($item = mysql_fetch_object($river_items)) {
}
}
}
-}
+} \ No newline at end of file
diff --git a/upgrades/2012020901.php b/upgrades/2012020901.php
new file mode 100644
index 000000000..793279b38
--- /dev/null
+++ b/upgrades/2012020901.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Adds last notified metadata and sets the notify interval
+ */
+
+elgg_set_plugin_setting('notify_interval', 60 * 60 * 24, 'tidypics');
+
+$options = array(
+ 'type' => 'object',
+ 'subtype' => 'album',
+ 'limit' => 0
+);
+
+$prefix = elgg_get_config('dbprefix');
+$batch = new ElggBatch('elgg_get_entities', $options);
+
+foreach ($batch as $album) {
+ // grab earliest picture and use that as the notification time
+ // in old version of tidypics notifications went out only when a new album was populated.
+ $q = "SELECT MIN(time_created) as ts FROM {$prefix}entities WHERE container_guid = $album->guid";
+ $row = get_data_row($q);
+
+ if ($row) {
+ $album->last_notified = $row->ts;
+ }
+}