mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
|
<?
|
||
|
include(SERVER_ROOT.'/classes/text.class.php');
|
||
|
$Text = new TEXT(true);
|
||
|
|
||
|
$UserID = $_GET['userid'];
|
||
|
|
||
|
if (!is_number($UserID)) {
|
||
|
error("No UserID");
|
||
|
}
|
||
|
|
||
|
$UserInfo = Users::user_info($UserID);
|
||
|
|
||
|
G::$DB->query("
|
||
|
SELECT
|
||
|
u.Username, q.ID, q.Question, q.UserID, q.Date AS QuestionDate, a.Answer, a.Date AS AnswerDate
|
||
|
FROM user_questions AS q
|
||
|
JOIN staff_answers AS a ON q.ID = a.QuestionID
|
||
|
JOIN users_main AS u ON u.ID = q.UserID
|
||
|
WHERE a.UserID = '$UserID'
|
||
|
ORDER BY q.Date DESC");
|
||
|
|
||
|
$Questions = G::$DB->to_array();
|
||
|
|
||
|
View::show_header($UserInfo['Username'] . "'s answers");
|
||
|
|
||
|
?>
|
||
|
<div class="thin">
|
||
|
<h2>
|
||
|
<?=$UserInfo['Username']?>'s Answers
|
||
|
</h2>
|
||
|
<div class="linkbox">
|
||
|
<? if (check_perms("users_mod")) { ?>
|
||
|
<a class="brackets" href="questions.php">View questions</a>
|
||
|
<? } else { ?>
|
||
|
<a class="brackets" href="questions.php">Ask question</a>
|
||
|
<? } ?>
|
||
|
<a class="brackets" href="questions.php?action=answers">View staff answers</a>
|
||
|
</div>
|
||
|
<? foreach($Questions as $Question) { ?>
|
||
|
<div id="question<?=$Question['ID']?>" class="forum_post box box2">
|
||
|
<div class="head">
|
||
|
<span>
|
||
|
<a class="post_id" href="questions.php?action=view_answers&userid=<?=$UserID?>#question<?=$Question['ID']?>">#<?=$Question['ID']?></a>
|
||
|
Question by <?=Users::format_username($Question['UserID'])?> - <?=time_diff($Question['QuestionDate'])?>
|
||
|
</span>
|
||
|
<? if (check_perms("users_mod")) { ?>
|
||
|
<span style="float: right;">
|
||
|
<form class="hidden" id="delete_<?=$Question['ID']?>" method="POST">
|
||
|
<input type="hidden" name="action" value="take_remove_answer" />
|
||
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
||
|
<input type="hidden" name="question_id" value="<?=$Question['ID']?>" />
|
||
|
</form>
|
||
|
<a href="#" onclick="$('#delete_<?=$Question['ID']?>').raw().submit(); return false;" class="brackets">Delete</a>
|
||
|
</span>
|
||
|
<? } ?>
|
||
|
</div>
|
||
|
<div class="pad">
|
||
|
<?=$Text->full_format("[quote=" . $Question['Username'] . "]". $Question['Question'] . "[/quote]" . "\n". $Question['Answer'])?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<? } ?>
|
||
|
</div>
|
||
|
|
||
|
<?
|
||
|
View::show_footer();
|