Go to the documentation of this file.
52 if ( $this->mName ===
null && $this->mID ===
null ) {
53 throw new MWException( __METHOD__ .
' has both names and IDs null' );
54 } elseif ( $this->mID ===
null ) {
55 $where =
array(
'cat_title' => $this->mName );
56 } elseif ( $this->mName ===
null ) {
57 $where =
array(
'cat_id' => $this->mID );
66 $row =
$dbr->selectRow(
68 array(
'cat_id',
'cat_title',
'cat_pages',
'cat_subcats',
'cat_files' ),
76 # Okay, there were no contents. Nothing to initialize.
77 if ( $this->mTitle ) {
78 # If there is a title object but no record in the category table,
79 # treat this as an empty category.
81 $this->mName = $this->mTitle->getDBkey();
92 $this->mID = $row->cat_id;
93 $this->mName = $row->cat_title;
94 $this->mPages = $row->cat_pages;
95 $this->mSubcats = $row->cat_subcats;
96 $this->mFiles = $row->cat_files;
98 # (bug 13683) If the count is negative, then 1) it's obviously wrong
99 # and should not be kept, and 2) we *probably* don't have to scan many
100 # rows to obtain the correct figure, so let's risk a one-time recount.
101 if ( $this->mPages < 0 || $this->mSubcats < 0 || $this->mFiles < 0 ) {
119 if ( !is_object(
$title ) ) {
124 $cat->mName =
$title->getDBkey();
139 $cat->mName =
$title->getDBkey();
150 public static function newFromID( $id ) {
152 $cat->mID = intval( $id );
172 # NOTE: the row often results from a LEFT JOIN on categorylinks. This may result in
173 # all the cat_xxx fields being null, if the category page exists, but nothing
174 # was ever added to the category. This case should be treated link an empty
175 # category, if possible.
177 if ( $row->cat_title ===
null ) {
179 # the name is probably somewhere in the row, for example as page_title,
180 # but we can't know that here...
183 # if we have a title object, fetch the category name from there
184 $cat->mName =
$title->getDBkey();
192 $cat->mName = $row->cat_title;
193 $cat->mID = $row->cat_id;
194 $cat->mSubcats = $row->cat_subcats;
195 $cat->mPages = $row->cat_pages;
196 $cat->mFiles = $row->cat_files;
206 return $this->
getX(
'mName' );
212 public function getID() {
213 return $this->
getX(
'mID' );
220 return $this->
getX(
'mPages' );
227 return $this->
getX(
'mSubcats' );
234 return $this->
getX(
'mFiles' );
241 if ( $this->mTitle ) {
265 $conds =
array(
'cl_to' => $this->
getName(),
'cl_from = page_id' );
272 if ( $offset !==
'' ) {
273 $conds[] =
'cl_sortkey > ' .
$dbr->addQuotes( $offset );
278 array(
'page',
'categorylinks' ),
279 array(
'page_id',
'page_namespace',
'page_title',
'page_len',
280 'page_is_redirect',
'page_latest' ),
296 private function getX( $key ) {
300 return $this->{$key};
313 # Note, we must use names for this, since categorylinks does.
314 if ( $this->mName ===
null ) {
323 $dbw->begin( __METHOD__ );
325 # Insert the row if it doesn't exist yet (e.g., this is being run via
326 # update.php from a pre-1.16 schema). TODO: This will cause lots and
327 # lots of gaps on some non-MySQL DBMSes if you run populateCategory.php
328 # repeatedly. Plus it's an extra query that's unneeded almost all the
329 # time. This should be rewritten somehow, probably.
330 $seqVal = $dbw->nextSequenceValue(
'category_cat_id_seq' );
335 'cat_title' => $this->mName
341 $cond1 = $dbw->conditional(
array(
'page_namespace' =>
NS_CATEGORY ), 1,
'NULL' );
342 $cond2 = $dbw->conditional(
array(
'page_namespace' =>
NS_FILE ), 1,
'NULL' );
344 array(
'categorylinks',
'page' ),
345 array(
'pages' =>
'COUNT(*)',
346 'subcats' =>
"COUNT($cond1)",
347 'files' =>
"COUNT($cond2)"
349 array(
'cl_to' => $this->mName,
'page_id = cl_from' ),
351 array(
'LOCK IN SHARE MODE' )
357 'cat_subcats' =>
$result->subcats,
360 array(
'cat_title' => $this->mName ),
363 $dbw->commit( __METHOD__ );
367 # Now we should update our local counts.
368 $this->mPages =
$result->pages;
369 $this->mSubcats =
$result->subcats;
370 $this->mFiles =
$result->files;
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
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
static newFromResult( $res)
$mName
Name of the category, normalized to DB-key form.
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
Category objects are immutable, strictly speaking.
wfProfileIn( $functionname)
Begin profiling of a function.
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 noclasses & $ret
wfReadOnly()
Check whether the wiki is in read-only mode.
initialize()
Set up all member variables using a database query.
getX( $key)
Generic accessor.
refreshCounts()
Refresh the counts for this category.
wfProfileOut( $functionname='missing')
Stop profiling of a function.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
getMembers( $limit=false, $offset='')
Fetch a TitleArray of up to $limit category members, beginning after the category sort key $offset.
static newFromRow( $row, $title=null)
Factory function, for constructing a Category object from a result set.
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
static newFromTitle( $title)
Factory function.
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
presenting them properly to the user as errors is done by the caller $title
Allows to change the fields on the form that will be generated $name
static newFromID( $id)
Factory function.
Represents a title within MediaWiki.
Title $mTitle
Category page title.
static newFromName( $name)
Factory function.
$mPages
Counts of membership (cat_pages, cat_subcats, cat_files)