diff options
author | uckelman <uckelman@nomic.net> | 2010-04-20 20:01:07 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-20 20:01:07 +0000 |
commit | 36cc1d4510d4f28c463e9584cb7ce849a5e4e2ec (patch) | |
tree | 76dfd56ec5ab24208a49f44f84f093b470a7d2bc /src/PhpBB3.php | |
parent | 66ed9441658a9a5100ec78b82af19c6127a56575 (diff) |
Added getAttachmentData().
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6721 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/PhpBB3.php')
-rw-r--r-- | src/PhpBB3.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/PhpBB3.php b/src/PhpBB3.php index 381c9a4..f5f0df9 100644 --- a/src/PhpBB3.php +++ b/src/PhpBB3.php @@ -120,6 +120,20 @@ class PhpBB3 { return $row ? $row['post_time'] : false; } + public function getAttachmentData($attachId) { + throw_if_null($attachId); + + global $db; + + $sql = 'SELECT physical_filename, real_filename, ' . + 'attach_comment, mimetype, filesize ' . + 'FROM ' . ATTACHMENTS_TABLE . + 'WHERE attach_id = ' . $attachId; + + $row = $this->get_exactly_one_row($sql); + return $row; + } + public function postMessage($postType, $forumId, $topicId, $msg) { throw_if_null($msg); |