mirror of https://github.com/BOINC/boinc.git
70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
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();
|
|
?>
|