changeslist.php
来自「php 开发的内容管理系统」· PHP 代码 · 共 654 行 · 第 1/2 页
PHP
654 行
<?php/** * @package MediaWiki * Contain class to show various lists of change: * - what's link here * - related changes * - recent changes *//** * @todo document * @package MediaWiki */class RCCacheEntry extends RecentChange{ var $secureName, $link; var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ; var $userlink, $timestamp, $watched; function newFromParent( $rc ) { $rc2 = new RCCacheEntry; $rc2->mAttribs = $rc->mAttribs; $rc2->mExtra = $rc->mExtra; return $rc2; }} ;/** * @package MediaWiki */class ChangesList { # Called by history lists and recent changes # /** @todo document */ function ChangesList( &$skin ) { $this->skin =& $skin; $this->preCacheMessages(); } /** * Fetch an appropriate changes list class for the specified user * Some users might want to use an enhanced list format, for instance * * @param $user User to fetch the list class for * @return ChangesList derivative */ function newFromUser( &$user ) { $sk =& $user->getSkin(); $list = NULL; if( wfRunHooks( 'FetchChangesList', array( &$user, &$skin, &$list ) ) ) { return $user->getOption( 'usenewrc' ) ? new EnhancedChangesList( $sk ) : new OldChangesList( $sk ); } else { return $list; } } /** * As we use the same small set of messages in various methods and that * they are called often, we call them once and save them in $this->message */ function preCacheMessages() { // Precache various messages if( !isset( $this->message ) ) { foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '. 'blocklink changes history boteditletter' ) as $msg ) { $this->message[$msg] = wfMsgExt( $msg, array( 'escape') ); } } } /** * Returns the appropriate flags for new page, minor change and patrolling */ function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ', $bot = false ) { $f = $new ? '<span class="newpage">' . $this->message['newpageletter'] . '</span>' : $nothing; $f .= $minor ? '<span class="minor">' . $this->message['minoreditletter'] . '</span>' : $nothing; $f .= $bot ? '<span class="bot">' . $this->message['boteditletter'] . '</span>' : $nothing; $f .= $patrolled ? '<span class="unpatrolled">!</span>' : $nothing; return $f; } /** * Returns text for the start of the tabular part of RC */ function beginRecentChangesList() { $this->rc_cache = array(); $this->rcMoveIndex = 0; $this->rcCacheIndex = 0; $this->lastdate = ''; $this->rclistOpen = false; return ''; } /** * Returns text for the end of RC */ function endRecentChangesList() { if( $this->rclistOpen ) { return "</ul>\n"; } else { return ''; } } function insertMove( &$s, $rc ) { # Diff $s .= '(' . $this->message['diff'] . ') ('; # Hist $s .= $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), $this->message['hist'], 'action=history' ) . ') . . '; # "[[x]] moved to [[y]]" $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir'; $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ), $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) ); } function insertDateHeader(&$s, $rc_timestamp) { global $wgLang; # Make date header if necessary $date = $wgLang->date( $rc_timestamp, true, true ); $s = ''; if( $date != $this->lastdate ) { if( '' != $this->lastdate ) { $s .= "</ul>\n"; } $s .= '<h4>'.$date."</h4>\n<ul class=\"special\">"; $this->lastdate = $date; $this->rclistOpen = true; } } function insertLog(&$s, $title, $logtype) { $logname = LogPage::logName( $logtype ); $s .= '(' . $this->skin->makeKnownLinkObj($title, $logname ) . ')'; } function insertDiffHist(&$s, &$rc, $unpatrolled) { # Diff link if( $rc->mAttribs['rc_type'] == RC_NEW || $rc->mAttribs['rc_type'] == RC_LOG ) { $diffLink = $this->message['diff']; } else { $rcidparam = $unpatrolled ? array( 'rcid' => $rc->mAttribs['rc_id'] ) : array(); $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], wfArrayToCGI( array( 'curid' => $rc->mAttribs['rc_cur_id'], 'diff' => $rc->mAttribs['rc_this_oldid'], 'oldid' => $rc->mAttribs['rc_last_oldid'] ), $rcidparam ), '', '', ' tabindex="'.$rc->counter.'"'); } $s .= '('.$diffLink.') ('; # History link $s .= $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['hist'], wfArrayToCGI( array( 'curid' => $rc->mAttribs['rc_cur_id'], 'action' => 'history' ) ) ); $s .= ') . . '; } function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) { # Article link # If it's a new article, there is no diff link, but if it hasn't been # patrolled yet, we need to give users a way to do so $params = ( $unpatrolled && $rc->mAttribs['rc_type'] == RC_NEW ) ? 'rcid='.$rc->mAttribs['rc_id'] : ''; $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params ); if($watched) $articlelink = '<strong>'.$articlelink.'</strong>'; global $wgContLang; $articlelink .= $wgContLang->getDirMark(); $s .= ' '.$articlelink; } function insertTimestamp(&$s, &$rc) { global $wgLang; # Timestamp $s .= '; ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . '; } /** Insert links to user page, user talk page and eventually a blocking link */ function insertUserRelatedLinks(&$s, &$rc) { $s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] ); $s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] ); } /** insert a formatted comment */ function insertComment(&$s, &$rc) { # Add comment if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) { $s .= $this->skin->commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() ); } } /** * Check whether to enable recent changes patrol features * @return bool */ function usePatrol() { global $wgUseRCPatrol, $wgUser; return( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ); }}/** * Generate a list of changes using the good old system (no javascript) */class OldChangesList extends ChangesList { /** * Format a line using the old system (aka without any javascript). */ function recentChangesLine( &$rc, $watched = false ) { global $wgContLang; $fname = 'ChangesList::recentChangesLineOld'; wfProfileIn( $fname ); # Extract DB fields into local scope extract( $rc->mAttribs ); $curIdEq = 'curid=' . $rc_cur_id; # Should patrol-related stuff be shown? $unpatrolled = $this->usePatrol() && $rc_patrolled == 0; $this->insertDateHeader($s,$rc_timestamp); $s .= '<li>'; // moved pages if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) { $this->insertMove( $s, $rc ); // log entries } elseif( $rc_namespace == NS_SPECIAL && preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) { $this->insertLog($s, $rc->getTitle(), $matches[1]); // all other stuff } else { wfProfileIn($fname.'-page'); $this->insertDiffHist($s, $rc, $unpatrolled); # M, N, b and ! (minor, new, bot and unpatrolled) $s .= ' ' . $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $unpatrolled, '', $rc_bot ); $this->insertArticleLink($s, $rc, $unpatrolled, $watched); wfProfileOut($fname.'-page'); } wfProfileIn( $fname.'-rest' ); $this->insertTimestamp($s,$rc); $this->insertUserRelatedLinks($s,$rc); $this->insertComment($s, $rc); if($rc->numberofWatchingusers > 0) { $s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers)); } $s .= "</li>\n"; wfProfileOut( $fname.'-rest' ); wfProfileOut( $fname ); return $s; }}/** * Generate a list of changes using an Enhanced system (use javascript). */class EnhancedChangesList extends ChangesList { /** * Format a line for enhanced recentchange (aka with javascript and block of lines). */ function recentChangesLine( &$baseRC, $watched = false ) { global $wgLang, $wgContLang; # Create a specialised object $rc = RCCacheEntry::newFromParent( $baseRC ); # Extract fields from DB into the function scope (rc_xxxx variables) extract( $rc->mAttribs ); $curIdEq = 'curid=' . $rc_cur_id; # If it's a new day, add the headline and flush the cache $date = $wgLang->date( $rc_timestamp, true); $ret = ''; if( $date != $this->lastdate ) { # Process current cache $ret = $this->recentChangesBlock(); $this->rc_cache = array(); $ret .= "<h4>{$date}</h4>\n"; $this->lastdate = $date; } # Should patrol-related stuff be shown? if( $this->usePatrol() ) { $rc->unpatrolled = !$rc_patrolled; } else { $rc->unpatrolled = false; } # Make article link if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) { $msg = ( $rc_type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir"; $clink = wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ), $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) ); } elseif( $rc_namespace == NS_SPECIAL && preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) { # Log updates, etc $logtype = $matches[1]; $logname = LogPage::logName( $logtype );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?