diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 21:33:08 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 21:33:08 +0000 |
commit | e39c305315715202d956b4f78a9f32bfd623d8eb (patch) | |
tree | c7c87bbb675fa84dbbe98332518a21b1add80f00 /src/PhpBB3.php | |
parent | 78969b6d3adb9e3162754207a5a57a3a1e58fd4f (diff) |
Added getPostTime().
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6687 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/PhpBB3.php')
-rw-r--r-- | src/PhpBB3.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/PhpBB3.php b/src/PhpBB3.php index aca8333..48361a6 100644 --- a/src/PhpBB3.php +++ b/src/PhpBB3.php @@ -108,6 +108,18 @@ class PhpBB3 { } } + public function getPostTime($postId) { + throw_if_null($postId); + + global $db; + + $sql = 'SELECT post_time FROM ' . POSTS_TABLE . ' ' . + 'WHERE post_id = ' . $postId; + + $row = $this->get_exactly_one_row($sql); + return $row ? $row['post_time'] : false; + } + public function postMessage($postType, $forumId, $topicId, $msg) { throw_if_null($msg); |