From 4364c76c16103870fb4a4cf6be9261871195c06f Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Thu, 2 Jun 2011 18:06:00 -0700 Subject: Added sources to post process --- htdocs/new-post.php | 70 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 65 insertions(+), 5 deletions(-) (limited to 'htdocs/new-post.php') diff --git a/htdocs/new-post.php b/htdocs/new-post.php index 7112a8c..d463d1a 100644 --- a/htdocs/new-post.php +++ b/htdocs/new-post.php @@ -57,8 +57,13 @@ switch ($stage) { handle_images(); break; - case 'finish': + case 'source': if (finish_images()) + handle_source(); + break; + + case 'finish': + if (finish_source()) handle_finish(); break; @@ -100,12 +105,11 @@ function finish_category() { function handle_tos() { // Display ToS - // TODO: Display ToS Here - form_start('post'); echo "

"; + ." I agree to the terms of service.

"; form_end(); } @@ -176,7 +180,7 @@ function handle_images() { // Display image form echo "

You may upload up to four images with your post.

"; - form_start('finish'); + form_start('source'); for ($i = 1; $i <= MAX_IMAGE_UPLOADS; $i++) { echo "

$error
"; + } + + echo "

Where did you hear about this site?

"; + + echo ""; + + echo "

If you selecte other, please explain:"; + echo "

"; + + form_end(); +} + +function finish_source() { + $error = '

This question is required.

'; + + $post = $_SESSION['newpost']; + if (isset($_POST['source']) and is_numeric($_POST['source'])) { + if ($_POST['source'] == 0) { + if (isset($_POST['explain']) and trim($_POST['explain']) != '') { + $post->otherSource($_POST['explain']); + $post->save(); + return true; + + } else { + $error = '

Explaination is a required field.

'; + } + + } else { + $source = Source::getById($_POST['source']); + + if ($source) { + $post->setSource($_POST['source']); + $post->save(); + return true; + } + } + + } + + handle_source($error); + return false; +} + function handle_finish() { $post = $_SESSION['newpost']; -- cgit v1.2.3