32 parent::__construct(
$query, $moduleName,
'ci' );
37 $alltitles = $this->
getPageSet()->getGoodAndMissingTitlesByNamespace();
45 foreach ( $categories as $c ) {
48 $cattitles[$c] =
$t->getDBkey();
51 $this->
addTables( [
'category',
'page',
'page_props' ] );
53 'page' => [
'LEFT JOIN', [
54 'page_namespace' => NS_CATEGORY,
55 'page_title=cat_title' ] ],
56 'page_props' => [
'LEFT JOIN', [
58 'pp_propname' =>
'hiddencat' ] ],
66 'cat_hidden' =>
'pp_propname'
68 $this->
addWhere( [
'cat_title' => $cattitles ] );
70 if ( !is_null(
$params[
'continue'] ) ) {
71 $title = $this->
getDB()->addQuotes(
$params[
'continue'] );
72 $this->
addWhere(
"cat_title >= $title" );
74 $this->
addOption(
'ORDER BY',
'cat_title' );
78 $catids = array_flip( $cattitles );
79 foreach (
$res as $row ) {
81 $vals[
'size'] = intval( $row->cat_pages );
82 $vals[
'pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
83 $vals[
'files'] = intval( $row->cat_files );
84 $vals[
'subcats'] = intval( $row->cat_subcats );
85 $vals[
'hidden'] = (bool)$row->cat_hidden;
108 'action=query&prop=categoryinfo&titles=Category:Foo|Category:Bar'
109 =>
'apihelp-query+categoryinfo-example-simple',
114 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categoryinfo';
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
addPageSubItems( $pageId, $data)
Add a sub-element under the page element with the given page ID.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
getPageSet()
Get the PageSet object to work on.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
This query adds the "<categories>" subelement to all pages with the list of categories the page is in...
__construct(ApiQuery $query, $moduleName)
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
getHelpUrls()
Return links to more detailed help pages about the module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
This is the main query class.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles