MediaWiki REL1_40
SiteList Class Reference

Collection of Site objects. More...

Inherits GenericArrayObject.

Collaboration diagram for SiteList:

Public Member Functions

 __unserialize ( $serializationData)
 
 getGlobalIdentifiers ()
 Returns all the global site identifiers.
 
 getGroup ( $groupName)
 Returns the sites that are in the provided group.
 
 getObjectType ()
 
 getSite ( $globalSiteId)
 Returns the Site with the provided global site identifier.
 
 getSiteByInternalId ( $id)
 Returns the Site with the provided site id.
 
 getSiteByNavigationId ( $id)
 Returns the Site with the provided navigational site id.
 
 hasInternalId ( $id)
 Returns if the list contains the site with the provided site id.
 
 hasNavigationId ( $id)
 Returns if the list contains the site with the provided navigational site id.
 
 hasSite ( $globalSiteId)
 Returns if the list contains the site with the provided global site identifier.
 
 isEmpty ()
 Returns if the list contains no sites.
 
 offsetUnset ( $index)
 
 removeSite ( $globalSiteId)
 Removes the site with the specified global site identifier.
 
 removeSiteByInternalId ( $id)
 Removes the site with the specified site id.
 
 removeSiteByNavigationId ( $id)
 Removes the site with the specified navigational site id.
 
 setSite (Site $site)
 Sets a site in the list.
 
- Public Member Functions inherited from GenericArrayObject
 __construct ( $input=null, $flags=0, $iterator_class='ArrayIterator')
 
 __serialize ()
 
 append ( $value)
 
 offsetSet ( $index, $value)
 

Static Public Member Functions

static getSerialVersionId ()
 Returns the version ID that identifies the serialization structure used by getSerializationData() and unserialize(), including the structure of any nested structures.
 

Protected Member Functions

 getSerializationData ()
 
 preSetElement ( $index, $site)
 
- Protected Member Functions inherited from GenericArrayObject
 getNewOffset ()
 Finds a new offset for when appending an element.
 
 hasValidType ( $value)
 Returns if the provided value has the same type as the elements that can be added to this ArrayObject.
 
 setElement ( $index, $value)
 Method that actually sets the element and holds all common code needed for set operations, including type checking and offset resolving.
 

Protected Attributes

array $byGlobalId = []
 Global site identifiers pointing to their sites offset value.
 
array $byInternalId = []
 Internal site identifiers pointing to their sites offset value.
 
array $byNavigationId = []
 Navigational site identifiers alias inter-language prefixes pointing to their sites offset value.
 
- Protected Attributes inherited from GenericArrayObject
int $indexOffset = 0
 

Detailed Description

Collection of Site objects.

Since
1.21
Author
Jeroen De Dauw < jeroe.nosp@m.nded.nosp@m.auw@g.nosp@m.mail.nosp@m..com >

Definition at line 28 of file SiteList.php.

Member Function Documentation

◆ __unserialize()

SiteList::__unserialize ( $serializationData)
See also
GenericArrayObject::__unserialize
Since
1.38
Parameters
array$serializationData

Reimplemented from GenericArrayObject.

Definition at line 340 of file SiteList.php.

◆ getGlobalIdentifiers()

SiteList::getGlobalIdentifiers ( )

Returns all the global site identifiers.

Optionally only those belonging to the specified group.

Since
1.21
Returns
array

Definition at line 128 of file SiteList.php.

◆ getGroup()

SiteList::getGroup ( $groupName)

Returns the sites that are in the provided group.

Since
1.21
Parameters
string$groupName
Returns
SiteList

Definition at line 275 of file SiteList.php.

◆ getObjectType()

SiteList::getObjectType ( )
See also
GenericArrayObject::getObjectType
Since
1.21
Returns
string

Reimplemented from GenericArrayObject.

Definition at line 64 of file SiteList.php.

◆ getSerializationData()

SiteList::getSerializationData ( )
protected
See also
GenericArrayObject::getSerializationData
Since
1.21
Returns
array

Reimplemented from GenericArrayObject.

Definition at line 320 of file SiteList.php.

◆ getSerialVersionId()

static SiteList::getSerialVersionId ( )
static

Returns the version ID that identifies the serialization structure used by getSerializationData() and unserialize(), including the structure of any nested structures.

This is useful for constructing cache keys in cases where the cache relies on serialization for storing the SiteList.

Returns
string A string uniquely identifying the version of the serialization structure, including any sub-structures.

Definition at line 309 of file SiteList.php.

◆ getSite()

SiteList::getSite ( $globalSiteId)

Returns the Site with the provided global site identifier.

The site needs to exist, so if not sure, call hasGlobalId first.

Since
1.21
Parameters
string$globalSiteId
Returns
Site

Definition at line 153 of file SiteList.php.

Referenced by CachingSiteStore\getSite().

◆ getSiteByInternalId()

SiteList::getSiteByInternalId ( $id)

Returns the Site with the provided site id.

The site needs to exist, so if not sure, call has first.

Since
1.21
Parameters
int$id
Returns
Site

Definition at line 201 of file SiteList.php.

◆ getSiteByNavigationId()

SiteList::getSiteByNavigationId ( $id)

Returns the Site with the provided navigational site id.

The site needs to exist, so if not sure, call has first.

Since
1.23
Parameters
string$id
Returns
Site

Definition at line 238 of file SiteList.php.

◆ hasInternalId()

SiteList::hasInternalId ( $id)

Returns if the list contains the site with the provided site id.

Parameters
int$id
Returns
bool

Definition at line 187 of file SiteList.php.

◆ hasNavigationId()

SiteList::hasNavigationId ( $id)

Returns if the list contains the site with the provided navigational site id.

Parameters
string$id
Returns
bool

Definition at line 224 of file SiteList.php.

◆ hasSite()

SiteList::hasSite ( $globalSiteId)

Returns if the list contains the site with the provided global site identifier.

Parameters
string$globalSiteId
Returns
bool

Definition at line 139 of file SiteList.php.

Referenced by CachingSiteStore\getSite(), and preSetElement().

◆ isEmpty()

SiteList::isEmpty ( )

Returns if the list contains no sites.

Since
1.21
Returns
bool

Reimplemented from GenericArrayObject.

Definition at line 176 of file SiteList.php.

◆ offsetUnset()

SiteList::offsetUnset ( $index)
See also
ArrayObject::offsetUnset()
Since
1.21
Parameters
mixed$index

Definition at line 101 of file SiteList.php.

◆ preSetElement()

SiteList::preSetElement ( $index,
$site )
protected
See also
GenericArrayObject::preSetElement
Since
1.21
Parameters
int | string$index
Site$site
Returns
bool

Reimplemented from GenericArrayObject.

Definition at line 78 of file SiteList.php.

References hasSite(), and removeSite().

◆ removeSite()

SiteList::removeSite ( $globalSiteId)

Removes the site with the specified global site identifier.

The site needs to exist, so if not sure, call hasGlobalId first.

Since
1.21
Parameters
string$globalSiteId

Definition at line 165 of file SiteList.php.

Referenced by preSetElement().

◆ removeSiteByInternalId()

SiteList::removeSiteByInternalId ( $id)

Removes the site with the specified site id.

The site needs to exist, so if not sure, call has first.

Since
1.21
Parameters
int$id

Definition at line 213 of file SiteList.php.

◆ removeSiteByNavigationId()

SiteList::removeSiteByNavigationId ( $id)

Removes the site with the specified navigational site id.

The site needs to exist, so if not sure, call has first.

Since
1.23
Parameters
string$id

Definition at line 250 of file SiteList.php.

◆ setSite()

SiteList::setSite ( Site $site)

Sets a site in the list.

If the site was not there, it will be added. If it was, it will be updated.

Since
1.21
Parameters
Site$site

Definition at line 262 of file SiteList.php.

Member Data Documentation

◆ $byGlobalId

array SiteList::$byGlobalId = []
protected

Global site identifiers pointing to their sites offset value.

Since
1.21

Maps string identifiers to local ArrayObject keys

Definition at line 45 of file SiteList.php.

◆ $byInternalId

array SiteList::$byInternalId = []
protected

Internal site identifiers pointing to their sites offset value.

Since
1.21

Maps int identifiers to local ArrayObject keys

Definition at line 36 of file SiteList.php.

◆ $byNavigationId

array SiteList::$byNavigationId = []
protected

Navigational site identifiers alias inter-language prefixes pointing to their sites offset value.

Since
1.23

Maps string identifiers to local ArrayObject keys

Definition at line 55 of file SiteList.php.


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