diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-05-15 15:04:58 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-05-15 15:04:58 -0400 |
commit | fecb8c706dadb790c3a8c219275b4ba88e00b8ea (patch) | |
tree | 674650bcdc21627aedb97250426a554c85eca096 /classes/Notice.php | |
parent | 2e394ef47ce2f069e331c24586cda13bc34413aa (diff) |
Attachments and their list now provide "ajax" view. Also added a few sidebars relating tags and attachments.
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index c2fa2d19e..30508070e 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -124,8 +124,6 @@ class Notice extends Memcached_DataObject $profile = Profile::staticGet($profile_id); -// $final = common_shorten_links($content); - if (!$profile) { common_log(LOG_ERR, 'Problem saving notice. Unknown user.'); return _('Problem saving notice. Unknown user.'); @@ -279,6 +277,16 @@ class Notice extends Memcached_DataObject return true; } + function hasAttachments() { + $post = clone($this); + $query = "select count(file_id) as n_attachments from file join file_to_post on (file_id = file.id) join notice on (post_id = notice.id) where post_id = " . $post->escape($this->id); + $post->query($query); + $post->fetch(); + $n_attachments = intval($post->n_attachments); + $post->free(); + return $n_attachments; + } + function blowCaches($blowLast=false) { $this->blowSubsCache($blowLast); |