本文整理汇总了PHP中wAvatar::getOwnerAvatarURL方法的典型用法代码示例。如果您正苦于以下问题:PHP wAvatar::getOwnerAvatarURL方法的具体用法?PHP wAvatar::getOwnerAvatarURL怎么用?PHP wAvatar::getOwnerAvatarURL使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wAvatar
的用法示例。
在下文中一共展示了wAvatar::getOwnerAvatarURL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getProfileTop
/**
* Get the header for the social profile page, which includes the user's
* points and user level (if enabled in the site configuration) and lots
* more.
*
* @param $user_id Integer: user ID
* @param $user_name String: user name
*/
function getProfileTop($user_id, $user_name)
{
global $wgOut, $wgUser, $wgLang;
global $wgUserLevels;
$stats = new UserStats($user_id, $user_name);
$stats_data = $stats->getUserStats();
$user_level = new UserLevel($stats_data['points']);
$level_link = Title::makeTitle(NS_HELP, wfMessage('user-profile-userlevels-link')->inContentLanguage()->text());
$this->initializeProfileData($user_name);
$profile_data = $this->profile_data;
// Variables and other crap
$page_title = $this->getTitle()->getText();
$title_parts = explode('/', $page_title);
$user = $title_parts[0];
$id = User::idFromName($user);
$user_safe = urlencode($user);
// Safe urls
$add_relationship = SpecialPage::getTitleFor('AddRelationship');
$remove_relationship = SpecialPage::getTitleFor('RemoveRelationship');
$give_gift = SpecialPage::getTitleFor('GiveGift');
$send_board_blast = SpecialPage::getTitleFor('SendBoardBlast');
$update_profile = SpecialPage::getTitleFor('UpdateProfile');
$watchlist = SpecialPage::getTitleFor('Watchlist');
$contributions = SpecialPage::getTitleFor('Contributions', $user);
$send_message = SpecialPage::getTitleFor('UserBoard');
$upload_avatar = SpecialPage::getTitleFor('UploadAvatar');
$user_page = Title::makeTitle(NS_USER, $user);
$user_social_profile = Title::makeTitle(NS_USER_PROFILE, $user);
$user_wiki = Title::makeTitle(NS_USER_WIKI, $user);
$us = new UserStatus($this->user);
$city = $us->getCity();
$city = Sanitizer::escapeHtmlAllowEntities($city);
$birthday = $us->getBirthday();
$status = $us->getStatus();
$status = Sanitizer::escapeHtmlAllowEntities($status);
$gender = $us->getGender();
if ($gender == 'male') {
$genderIcon = '♂';
$gendertext = '他';
} elseif ($gender == 'female') {
$genderIcon = '♀';
$gendertext = '她';
} else {
$genderIcon = '♂/♀';
$gendertext = 'TA';
}
if ($this->isOwner()) {
$gendertext = '你';
}
if ($id != 0) {
$relationship = UserRelationship::getUserRelationshipByID($id, $wgUser->getID());
}
$avatar = new wAvatar($this->user_id, 'l');
wfDebug('profile type: ' . $profile_data['user_page_type'] . "\n");
$output = '';
//get more
$target = SpecialPage::getTitleFor('ShowFollowedSites');
$query = array('user_id' => $wgUser->getId(), 'target_user_id' => $this->user_id);
$mailVerify = $wgUser->getEmailAuthenticationTimestamp();
if ($mailVerify == NULL) {
$href = "/wiki/Special:ConfirmEmail";
} else {
$href = "/wiki/Special:UploadAvatar";
}
$output .= '<div id="profile-right" class="col-md-6 col-sm-12 col-xs-12">';
$output .= '<div id="profile-title-container">
<h1 id="profile-title">
<div id="profile-image">' . ($this->isOwner() ? '<div class="profile-image-container crop-headimg" id="crop-avatar"><div class="avatar-view upload-tool" title="上传头像">' . $avatar->getOwnerAvatarURL() . '</div>' . $this->cropModal() . '</div>' : $avatar->getAvatarURL()) . '</div>' . $user_name . '</h1></div>';
$output .= '<div class="modal fade watch-url" tabindex="-1" role="dialog" aria-labelledby="mySmModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="gridSystemModalLabel">' . $gendertext . '关注的wiki</h4>
</div>
<div class="modal-body">
<div class="list-group">
</div>
' . Linker::LinkKnown($target, '<i class="fa fa-arrows-alt"></i> 全部', array('type' => 'button', 'class' => 'btn btn-default'), $query) . '
</div>
</div>
</div>
</div>';
// Show the user's level and the amount of points they have if
// UserLevels has been configured contributions
$notice = SpecialPage::getTitleFor('ViewFollows');
$contributions = SpecialPage::getTitleFor('Contributions');
$output .= '<div>
<ul class="user-follow-msg">
<li><h5>编辑</h5>' . Linker::link($contributions, $stats_data['edits'], array(), array('target' => $user, 'contribs' => 'user')) . '</li>
<li><h4>|</h4></li>
<li><h5>关注</h5>' . Linker::link($notice, UserUserFollow::getFollowingCount(User::newFromName($user)), array('id' => 'user-following-count'), array('user' => $user, 'rel_type' => 1)) . '</li>
//.........这里部分代码省略.........