tag.php 2.95 KB
Newer Older
Scott committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
/*
	Question2Answer by Gideon Greenspan and contributors
	http://www.question2answer.org/

	File: qa-include/qa-page-tag.php
	Description: Controller for page for a specific tag


	This program is free software; you can redistribute it and/or
	modify it under the terms of the GNU General Public License
	as published by the Free Software Foundation; either version 2
	of the License, or (at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	More about this license: http://www.question2answer.org/license.php
*/

Scott committed
23 24 25 26
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
	header('Location: ../');
	exit;
}
Scott committed
27

Scott committed
28 29 30
require_once QA_INCLUDE_DIR . 'db/selects.php';
require_once QA_INCLUDE_DIR . 'app/format.php';
require_once QA_INCLUDE_DIR . 'app/updates.php';
Scott committed
31

Scott committed
32 33 34
$tag = qa_request_part(1); // picked up from qa-page.php
$start = qa_get_start();
$userid = qa_get_logged_in_userid();
Scott committed
35 36 37 38


//	Find the questions with this tag

Scott committed
39 40
if (!strlen($tag))
	qa_redirect('tags');
Scott committed
41

Scott committed
42 43 44 45
list($questions, $tagword) = qa_db_select_with_pending(
	qa_db_tag_recent_qs_selectspec($userid, $tag, $start, false, qa_opt_if_loaded('page_size_tag_qs')),
	qa_db_tag_word_selectspec($tag)
);
Scott committed
46

Scott committed
47 48 49
$pagesize = qa_opt('page_size_tag_qs');
$questions = array_slice($questions, 0, $pagesize);
$usershtml = qa_userids_handles_html($questions);
Scott committed
50 51 52 53


//	Prepare content for theme

Scott committed
54
$qa_content = qa_content_prepare(true);
Scott committed
55

Scott committed
56
$qa_content['title'] = qa_lang_html_sub('main/questions_tagged_x', qa_html($tag));
Scott committed
57

Scott committed
58 59 60
if (isset($userid) && isset($tagword)) {
	$favoritemap = qa_get_favorite_non_qs_map();
	$favorite = @$favoritemap['tag'][qa_strtolower($tagword['word'])];
Scott committed
61

Scott committed
62 63 64
	$qa_content['favorite'] = qa_favorite_form(QA_ENTITY_TAG, $tagword['wordid'], $favorite,
		qa_lang_sub($favorite ? 'main/remove_x_favorites' : 'main/add_tag_x_favorites', $tagword['word']));
}
Scott committed
65

Scott committed
66 67
if (!count($questions))
	$qa_content['q_list']['title'] = qa_lang_html('main/no_questions_found');
Scott committed
68

Scott committed
69 70
$qa_content['q_list']['form'] = array(
	'tags' => 'method="post" action="' . qa_self_html() . '"',
Scott committed
71

Scott committed
72 73 74 75
	'hidden' => array(
		'code' => qa_get_form_security_code('vote'),
	),
);
Scott committed
76

Scott committed
77 78 79 80 81
$qa_content['q_list']['qs'] = array();
foreach ($questions as $postid => $question) {
	$qa_content['q_list']['qs'][] =
		qa_post_html_fields($question, $userid, qa_cookie_get(), $usershtml, null, qa_post_html_options($question));
}
Scott committed
82

Scott committed
83
$qa_content['page_links'] = qa_html_page_links(qa_request(), $start, $pagesize, $tagword['tagcount'], qa_opt('pages_prev_next'));
Scott committed
84

Scott committed
85 86
if (empty($qa_content['page_links']))
	$qa_content['suggest_next'] = qa_html_suggest_qs_tags(true);
Scott committed
87

Scott committed
88 89 90 91 92 93
if (qa_opt('feed_for_tag_qs')) {
	$qa_content['feed'] = array(
		'url' => qa_path_html(qa_feed_request('tag/' . $tag)),
		'label' => qa_lang_html_sub('main/questions_tagged_x', qa_html($tag)),
	);
}
Scott committed
94 95


Scott committed
96
return $qa_content;