From 558684e32769d9dbd0d27a6feb3bbb9cf9aa22d7 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Tue, 30 Aug 2011 10:37:35 -0700 Subject: Abstracted source name code and added a source name listing to the moderation index. (Eventum #33). --- htdocs/moderate/index.php | 5 +++-- htdocs/postings.php | 25 +++++-------------------- htdocs/src/Post.inc.php | 16 ++++++++++++++++ 3 files changed, 24 insertions(+), 22 deletions(-) diff --git a/htdocs/moderate/index.php b/htdocs/moderate/index.php index 908c43b..7d35eb0 100644 --- a/htdocs/moderate/index.php +++ b/htdocs/moderate/index.php @@ -28,12 +28,13 @@ $posts->query(); if ($posts->valid()) { foreach ($posts as $id => $post) { printf("

%s

" - . "%s %s
", + . "%s %s - %s", $GLOBALS['CONFIG']['urlroot'], $id, $post->getName(), $post->getCreated(), - $post->getEmail(), $post->getEmail()); + $post->getEmail(), $post->getEmail(), + $post->getSourceName()); } } else { diff --git a/htdocs/postings.php b/htdocs/postings.php index 15d3d5f..0440ab0 100644 --- a/htdocs/postings.php +++ b/htdocs/postings.php @@ -49,7 +49,8 @@ if (isset($_SESSION['currentUser'])) { , $post->getid(), $post->getid()); // Print Source information - printSourceInfo($post); + printf("

This post was posted by %s from %s.

", + $post->getEmail(), $post->getSourceName()); echo "

return to moderation

"; echo ""; @@ -63,7 +64,9 @@ if (isset($_SESSION['currentUser'])) { . "reject post", $post->getid(), $post->getid()); - printSourceInfo($post); + // Print source info. + printf("

This post was posted by %s from %s.

", + $post->getEmail(), $post->getSourceName()); echo ""; } @@ -98,24 +101,6 @@ foreach ($post->getImages() as $imgid) { require_once "src/footer.inc.php"; -function printSourceInfo($post) { - // Print Source information - $source = $post->getSource(); - - if ($source !== false) { - // Get source from source id - $sourceObj = Source::getById($source); - $source = $sourceObj->getName(); - - - } else { - // Get other - $source = $post->getOtherSource(); - } - - printf("

This post was posted by %s from %s.

", - $post->getEmail(), $source); -} function errorNotFound() { // Get the 404 page diff --git a/htdocs/src/Post.inc.php b/htdocs/src/Post.inc.php index 906778e..eaad6b3 100644 --- a/htdocs/src/Post.inc.php +++ b/htdocs/src/Post.inc.php @@ -155,6 +155,22 @@ class Post { } } + public function getSourceName() { + $source = $this->getSource(); + + if ($source !== false) { + // Get source from source id + $sourceObj = Source::getById($source); + $source = $sourceObj->getName(); + + } else { + // Get other + $source = "Other: " . $post->getOtherSource(); + } + + return $source; + } + public function getOtherSource() { return $this->info['reason']; } -- cgit v1.2.3