mirror of https://github.com/BOINC/boinc.git
54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
|
|
require_once('../inc/util.inc');
|
|
require_once('../inc/time.inc');
|
|
require_once('../inc/forum.inc');
|
|
require_once('../inc/user.inc');
|
|
|
|
$userid = get_int("userid");
|
|
$offset = get_int("offset", true);
|
|
if (!$offset) $offset=0;
|
|
$hide = true;
|
|
$count = 10;
|
|
|
|
$user = lookup_user_id($userid);
|
|
$logged_in_user = get_logged_in_user(false);
|
|
|
|
if( $logged_in_user = get_logged_in_user(false) ) {
|
|
BoincForumPrefs::lookup($logged_in_user);
|
|
if ($user->id==$logged_in_user->id || $logged_in_user->prefs->privilege(0)) {
|
|
$hide = false;
|
|
}
|
|
}
|
|
page_head("Posts by $user->name");
|
|
|
|
if($hide) {
|
|
$posts = BoincPost::enum("user=$userid and hidden=0 order by id desc limit $offset,$count");
|
|
} else {
|
|
$posts = BoincPost::enum("user=$userid order by id desc limit $offset,$count");
|
|
}
|
|
$n = 0;
|
|
start_table();
|
|
$options = get_output_options($logged_in_user);
|
|
|
|
foreach ($posts as $post) {
|
|
$thread = BoincThread::lookup_id($post->thread);
|
|
if (!$thread) continue;
|
|
$forum = BoincForum::lookup_id($thread->forum);
|
|
if (!$forum) continue;
|
|
show_post_and_context($post, $thread, $forum, $options, $n+$offset+1);
|
|
$n++;
|
|
}
|
|
echo "</table>\n";
|
|
|
|
if ($n == $count) {
|
|
$offset += $count;
|
|
echo "
|
|
<br><br>
|
|
<a href=forum_user_posts.php?userid=$userid&offset=$offset><b>Next $count posts</b></a>
|
|
";
|
|
}
|
|
|
|
page_tail();
|
|
?>
|