]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove unused File::getAttachments()
authorEvan Prodromou <evan@status.net>
Wed, 3 Aug 2011 03:11:41 +0000 (23:11 -0400)
committerEvan Prodromou <evan@status.net>
Wed, 3 Aug 2011 03:11:41 +0000 (23:11 -0400)
classes/File.php

index 36ffff585c58c6f3b56762bde062847e14b8572b..767a10808714693415449cadd99aeb11cbe7f588 100644 (file)
@@ -55,23 +55,6 @@ class File extends Memcached_DataObject
         return 'http://www.facebook.com/login.php' === $url;
     }
 
-    /**
-     * Get the attachments for a particlar notice.
-     *
-     * @param int $post_id
-     * @return array of File objects
-     */
-    static function getAttachments($post_id) {
-        $file = new File();
-        $query = "select file.* from file join file_to_post on (file_id = file.id) where post_id = " . $file->escape($post_id);
-        $file = Memcached_DataObject::cachedQuery('File', $query);
-        $att = array();
-        while ($file->fetch()) {
-            $att[] = clone($file);
-        }
-        return $att;
-    }
-
     /**
      * Save a new file record.
      *