MediaWiki fundraising/REL1_35
Category Class Reference

Category objects are immutable, strictly speaking. More...

Collaboration diagram for Category:

Public Member Functions

 getFileCount ()
 
 getID ()
 
 getMembers ( $limit=false, $offset='')
 Fetch a TitleArray of up to $limit category members, beginning after the category sort key $offset.
 
 getName ()
 
 getPageCount ()
 
 getSubcatCount ()
 
 getTitle ()
 
 refreshCounts ()
 Refresh the counts for this category.
 
 refreshCountsIfEmpty ()
 Call refreshCounts() if there are no entries in the categorylinks table or if the category table has a row that states that there are no entries.
 
 refreshCountsIfSmall ( $maxSize=self::ROW_COUNT_SMALL)
 Call refreshCounts() if there are few entries in the categorylinks table.
 

Static Public Member Functions

static newFromID ( $id)
 Factory function.
 
static newFromName ( $name)
 Factory function.
 
static newFromRow ( $row, $title=null)
 Factory function, for constructing a Category object from a result set.
 
static newFromTitle ( $title)
 Factory function.
 

Public Attributes

const ROW_COUNT_SMALL = 100
 

Protected Member Functions

 initialize ( $mode=self::LOAD_ONLY)
 Set up all member variables using a database query.
 

Protected Attributes

const LAZY_INIT_ROW = 1
 
const LOAD_ONLY = 0
 

Private Member Functions

 __construct ()
 
 getX ( $key)
 Generic accessor.
 

Private Attributes

ILoadBalancer $loadBalancer
 
 $mFiles = null
 
 $mID = null
 
 $mName = null
 Name of the category, normalized to DB-key form.
 
 $mPages = null
 Counts of membership (cat_pages, cat_subcats, cat_files)
 
 $mSubcats = null
 
Title $mTitle = null
 Category page title.
 

Detailed Description

Category objects are immutable, strictly speaking.

If you call methods that change the database, like to refresh link counts, the objects will be appropriately reinitialized. Member variables are lazy-initialized.

Definition at line 32 of file Category.php.

Constructor & Destructor Documentation

◆ __construct()

Category::__construct ( )
private

Definition at line 52 of file Category.php.

Member Function Documentation

◆ getFileCount()

Category::getFileCount ( )
Returns
mixed Number of member files, or false on failure

Definition at line 251 of file Category.php.

References getX().

◆ getID()

Category::getID ( )
Returns
mixed Category ID, or false on failure

Definition at line 230 of file Category.php.

References getX().

◆ getMembers()

Category::getMembers ( $limit = false,
$offset = '' )

Fetch a TitleArray of up to $limit category members, beginning after the category sort key $offset.

Parameters
int | bool$limit
string$offset
Returns
TitleArray TitleArray object for category members.

Definition at line 278 of file Category.php.

References $dbr, DB_REPLICA, and getName().

◆ getName()

Category::getName ( )
Returns
mixed DB key name, or false on failure

Definition at line 223 of file Category.php.

References getX().

Referenced by getMembers(), and refreshCountsIfSmall().

◆ getPageCount()

Category::getPageCount ( )
Returns
mixed Total number of member pages, or false on failure

Definition at line 237 of file Category.php.

References getX().

◆ getSubcatCount()

Category::getSubcatCount ( )
Returns
mixed Number of subcategories, or false on failure

Definition at line 244 of file Category.php.

References getX().

◆ getTitle()

Category::getTitle ( )
Returns
Title|bool Title for this category, or false on failure.

Definition at line 258 of file Category.php.

References $mTitle, initialize(), and NS_CATEGORY.

Referenced by CategoryViewer\addSubcategoryObject().

◆ getX()

Category::getX ( $key)
private

Generic accessor.

Parameters
string$key
Returns
mixed

Definition at line 311 of file Category.php.

References initialize().

Referenced by getFileCount(), getID(), getName(), getPageCount(), and getSubcatCount().

◆ initialize()

Category::initialize ( $mode = self::LOAD_ONLY)
protected

Set up all member variables using a database query.

Parameters
int$modeOne of (Category::LOAD_ONLY, Category::LAZY_INIT_ROW)
Exceptions
MWException
Returns
bool True on success, false on failure.

Definition at line 62 of file Category.php.

References $dbr, and DB_REPLICA.

Referenced by getTitle(), getX(), and refreshCounts().

◆ newFromID()

static Category::newFromID ( $id)
static

Factory function.

Parameters
int$idA category id
Returns
Category

Definition at line 168 of file Category.php.

◆ newFromName()

static Category::newFromName ( $name)
static

Factory function.

Parameters
string$nameA category name (no "Category:" prefix). It need not be normalized, with spaces replaced by underscores.
Returns
Category|bool Category, or false on a totally invalid name

Definition at line 133 of file Category.php.

References $title, and NS_CATEGORY.

◆ newFromRow()

static Category::newFromRow ( $row,
$title = null )
static

Factory function, for constructing a Category object from a result set.

Parameters
object$rowResult set row, must contain the cat_xxx fields. If the fields are null, the resulting Category object will represent an empty category if a title object was given. If the fields are null and no title was given, this method fails and returns false.
Title | null$titleOptional title object for the category represented by the given row. May be provided if it is already known, to avoid having to re-create a title object later.
Returns
Category|false

Definition at line 186 of file Category.php.

References $title.

◆ newFromTitle()

static Category::newFromTitle ( $title)
static

Factory function.

Parameters
Title$titleTitle for the category page
Returns
Category|bool On a totally invalid name

Definition at line 153 of file Category.php.

References $title.

◆ refreshCounts()

Category::refreshCounts ( )

Refresh the counts for this category.

Returns
bool True on success, false on failure

Definition at line 323 of file Category.php.

References DB_MASTER, getTitle(), initialize(), NS_CATEGORY, NS_FILE, and wfReadOnly().

Referenced by refreshCountsIfSmall().

◆ refreshCountsIfEmpty()

Category::refreshCountsIfEmpty ( )

Call refreshCounts() if there are no entries in the categorylinks table or if the category table has a row that states that there are no entries.

Due to lock errors or other failures, the precomputed counts can get out of sync, making it hard to know when to delete the category row without checking the categorylinks table.

Returns
bool Whether links were refreshed
Since
1.32

Definition at line 442 of file Category.php.

References refreshCountsIfSmall().

◆ refreshCountsIfSmall()

Category::refreshCountsIfSmall ( $maxSize = self::ROW_COUNT_SMALL)

Call refreshCounts() if there are few entries in the categorylinks table.

Due to lock errors or other failures, the precomputed counts can get out of sync, making it hard to know when to delete the category row without checking the categorylinks table.

This method will do a non-locking select first to reduce contention.

Parameters
int$maxSizeOnly refresh if there are this or less many backlinks
Returns
bool Whether links were refreshed
Since
1.34

Definition at line 459 of file Category.php.

References DB_MASTER, getName(), and refreshCounts().

Referenced by refreshCountsIfEmpty().

Member Data Documentation

◆ $loadBalancer

ILoadBalancer Category::$loadBalancer
private

Definition at line 50 of file Category.php.

◆ $mFiles

Category::$mFiles = null
private

Definition at line 42 of file Category.php.

◆ $mID

Category::$mID = null
private

Definition at line 35 of file Category.php.

◆ $mName

Category::$mName = null
private

Name of the category, normalized to DB-key form.

Definition at line 34 of file Category.php.

◆ $mPages

Category::$mPages = null
private

Counts of membership (cat_pages, cat_subcats, cat_files)

Definition at line 42 of file Category.php.

◆ $mSubcats

Category::$mSubcats = null
private

Definition at line 42 of file Category.php.

◆ $mTitle

Title Category::$mTitle = null
private

Category page title.

Definition at line 40 of file Category.php.

◆ LAZY_INIT_ROW

const Category::LAZY_INIT_ROW = 1
protected

Definition at line 45 of file Category.php.

◆ LOAD_ONLY

const Category::LOAD_ONLY = 0
protected

Definition at line 44 of file Category.php.

◆ ROW_COUNT_SMALL

const Category::ROW_COUNT_SMALL = 100

Definition at line 47 of file Category.php.


The documentation for this class was generated from the following file: