示例#1
0
    }
    if (CONTRIBOOK_USER::exist($user)) {
        CONTRIBOOK_PROFILE::show($user);
        $data = CONTRIBOOK_USER::getuser($user);
        // show the blog posts of the user
        if ($data['rssurl'] != '') {
            echo '<br />The latest blogs<br />';
            CONTRIBOOK_BLOG::showuser($user, 0, 10);
        }
        // show the github messages of the user
        if ($data['github'] != '') {
            echo '<br />The latest GitHub messages<br />';
            CONTRIBOOK_GITHUB::show($user, 0, 10);
        }
        // show the twitter posts of the user
        if ($data['twitter'] != '') {
            echo '<br />The latest Twitter posts<br />';
            CONTRIBOOK_MICROBLOG::showuser($user, 0, 10);
        }
    } else {
        echo 'user not found';
    }
}
?>
		</div>

	</div>
</div>