Go to the documentation of this file.
50 if ( self::$instance ) {
64 self::$instance =
null;
85 return wfSetVar( $this->mForUpdate, $update );
93 if ( array_key_exists(
$title, $this->mGoodLinks ) ) {
94 return $this->mGoodLinks[
$title];
108 $dbkey =
$title->getPrefixedDBkey();
109 if ( array_key_exists( $dbkey, $this->mGoodLinkFields ) ) {
110 return $this->mGoodLinkFields[$dbkey][$field];
121 return array_key_exists(
$title, $this->mBadLinks );
135 $revision = 0, $model = 0
137 $dbkey =
$title->getPrefixedDBkey();
138 $this->mGoodLinks[$dbkey] = (int)$id;
139 $this->mGoodLinkFields[$dbkey] =
array(
140 'length' => (
int)$len,
141 'redirect' => (
int)$redir,
142 'revision' => (
int)$revision,
143 'model' => (
int)$model
155 $dbkey =
$title->getPrefixedDBkey();
156 $this->mGoodLinks[$dbkey] = intval( $row->page_id );
157 $this->mGoodLinkFields[$dbkey] =
array(
158 'length' => intval( $row->page_len ),
159 'redirect' => intval( $row->page_is_redirect ),
160 'revision' => intval( $row->page_latest ),
161 'model' => !empty( $row->page_content_model ) ? strval( $row->page_content_model ) :
null,
169 $dbkey =
$title->getPrefixedDBkey();
171 $this->mBadLinks[$dbkey] = 1;
176 unset( $this->mBadLinks[
$title] );
183 $dbkey =
$title->getPrefixedDBkey();
184 unset( $this->mBadLinks[$dbkey] );
185 unset( $this->mGoodLinks[$dbkey] );
186 unset( $this->mGoodLinkFields[$dbkey] );
194 return array_keys( $this->mBadLinks );
219 global $wgAntiLockFlags, $wgContentHandlerUseDB;
223 $key = $nt->getPrefixedDBkey();
224 if ( $this->
isBadLink( $key ) || $nt->isExternal() ) {
242 # Some fields heavily used for linking...
243 if ( $this->mForUpdate ) {
255 $f =
array(
'page_id',
'page_len',
'page_is_redirect',
'page_latest' );
256 if ( $wgContentHandlerUseDB ) {
257 $f[] =
'page_content_model';
260 $s = $db->selectRow(
'page',
$f,
261 array(
'page_namespace' => $nt->getNamespace(),
'page_title' => $nt->getDBkey() ),
264 if (
$s !==
false ) {
266 $id = intval(
$s->page_id );
281 $this->mGoodLinks =
array();
282 $this->mGoodLinkFields =
array();
283 $this->mBadLinks =
array();
addLink( $title)
Add a title to the link cache, return the page_id or zero if non-existent.
Cache for article titles (prefixed DB keys) and ids linked from one source.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
addGoodLinkObj( $id, $title, $len=-1, $redir=null, $revision=0, $model=0)
Add a link for the title to the link cache.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
wfProfileIn( $functionname)
Begin profiling of a function.
addLinkObj( $nt)
Add a title to the link cache, return the page_id or zero if non-existent.
forUpdate( $update=null)
General accessor to get/set whether SELECT FOR UPDATE should be used.
wfProfileOut( $functionname='missing')
Stop profiling of a function.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
static setSingleton(LinkCache $instance)
Set the singleton instance to a given object.
when a variable name is used in a it is silently declared as a new masking the global
addGoodLinkObjFromRow( $title, $row)
Same as above with better interface.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
presenting them properly to the user as errors is done by the caller $title
getGoodLinkFieldObj( $title, $field)
Get a field of a title object from cache.
static newFromDBkey( $key)
Create a new Title from a prefixed DB key.
static destroySingleton()
Destroy the singleton instance, a new one will be created next time singleton() is called.
static & singleton()
Get an instance of this class.