本文整理汇总了PHP中UserStatus::getNetworkUpdatesCount方法的典型用法代码示例。如果您正苦于以下问题:PHP UserStatus::getNetworkUpdatesCount方法的具体用法?PHP UserStatus::getNetworkUpdatesCount怎么用?PHP UserStatus::getNetworkUpdatesCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserStatus
的用法示例。
在下文中一共展示了UserStatus::getNetworkUpdatesCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
/**
* Show the special page
*
* @param $par Mixed: parameter passed to the special page or null
*/
public function execute( $par ) {
global $wgRequest, $wgOut, $wgUser, $wgScriptPath;
$messages_show = 25;
$updates_show = 25; // just an arbitrary value to stop PHP from complaining on 12 August 2011 --ashley
$output = '';
$sport_id = $wgRequest->getInt( 'sport_id' );
$team_id = $wgRequest->getInt( 'team_id' );
$page = $wgRequest->getInt( 'page', 1 );
if ( $team_id ) {
$team = SportsTeams::getTeam( $team_id );
$network_name = $team['name'];
} elseif ( $sport_id ) {
$sport = SportsTeams::getSport( $sport_id );
$network_name = $sport['name'];
} else {
// No sports ID nor team ID...bail out or we'll get a database
// error...
$wgOut->setPageTitle( wfMsg( 'userstatus-woops' ) );
$out = '<div class="relationship-request-message">' .
wfMsg( 'userstatus-invalid-link' ) . '</div>';
$out .= '<div class="relationship-request-buttons">';
$out .= '<input type="button" class="site-button" value="' .
wfMsg( 'mainpage' ) .
"\" onclick=\"window.location='" .
Title::newMainPage()->escapeFullURL() . "'\"/>";
/* removed because I was too lazy to port the error message over :P
if ( $wgUser->isLoggedIn() ) {
$out .= ' <input type="button" class="site-button" value="' .
wfMsg( 'st_network_your_profile' ) .
"\" onclick=\"window.location='" .
Title::makeTitle( NS_USER, $wgUser->getName() )->escapeFullURL() . "'\"/>";
}
*/
$out .= '</div>';
$wgOut->addHTML( $out );
return true;
}
$wgOut->setPageTitle( wfMsg( 'userstatus-network-thoughts', $network_name ) );
/**
* Config for the page
*/
$per_page = $messages_show;
$s = new UserStatus();
$total = $s->getNetworkUpdatesCount( $sport_id, $team_id );
$messages = $s->getStatusMessages(
0,
$sport_id,
$team_id,
$messages_show,
$page
);
$output .= '<div class="gift-links">';
$output .= '<a href="' .
SportsTeams::getNetworkURL( $sport_id, $team_id ) . '">' .
wfMsg( 'userstatus-back-to-network' ) . '</a>';
$output .= '</div>';
if( $page == 1 ) {
$start = 1;
} else {
$start = ( $page - 1 ) * $per_page + 1;
}
$end = $start + ( count( $messages ) ) - 1;
if( $total ) {
$output .= '<div class="user-page-message-top">
<span class="user-page-message-count" style="font-size: 11px; color: #666666;">' .
wfMsgExt( 'userstatus-showing-thoughts', 'parsemag', $start, $end, $total ) .
'</span>
</div>';
}
/**
* Build next/prev navigation
*/
$numofpages = $total / $per_page;
if( $numofpages > 1 ) {
$output .= '<div class="page-nav">';
if( $page > 1 ) {
$output .= '<a href="' .
SportsTeams::getFanUpdatesURL( $sport_id, $team_id ) .
'&page=' . ( $page - 1 ) . '">' . wfMsg( 'userstatus-prev' ) .
'</a> ';
}
if( ( $total % $per_page ) != 0 ) {
$numofpages++;
}
//.........这里部分代码省略.........