MediaWiki master
MediaWiki\Revision\MutableRevisionSlots Class Reference

Mutable version of RevisionSlots, for constructing a new revision. More...

Inherits MediaWiki\Revision\RevisionSlots.

Collaboration diagram for MediaWiki\Revision\MutableRevisionSlots:

Public Member Functions

 __construct (array $slots=[], ?callable $resetCallback=null)
 
 inheritSlot (SlotRecord $slot)
 Sets the given slot to an inherited version of $slot.
 
 removeSlot ( $role)
 Remove the slot for the given role, discontinue the corresponding stream.
 
 setContent ( $role, Content $content)
 Sets the content for the slot with the given role.
 
 setSlot (SlotRecord $slot)
 Sets the given slot.
 
- Public Member Functions inherited from MediaWiki\Revision\RevisionSlots
 __construct ( $slots)
 
 computeSha1 ()
 Computes the combined hash of the revisions's slots.
 
 computeSize ()
 Computes the total nominal size of the revision's slots, in bogo-bytes.
 
 getContent ( $role)
 Returns the Content of the given slot.
 
 getInheritedSlots ()
 Return all slots that are not originate in the revision they belong to (that is, they are inherited from some other revision).
 
 getOriginalSlots ()
 Return all slots that belong to the revision they originate from (that is, they are not inherited from some other revision).
 
 getPrimarySlots ()
 Return all primary slots (those that are not derived).
 
 getRolesWithDifferentContent (RevisionSlots $other)
 Find roles for which the $other RevisionSlots object has different content as this RevisionSlots object, including any roles that are present in one but not the other.
 
 getSlot ( $role)
 Returns the SlotRecord of the given slot.
 
 getSlotRoles ()
 Returns the slot names (roles) of all slots present in this revision.
 
 getSlots ()
 Returns an associative array that maps role names to SlotRecords.
 
 hasSameContent (RevisionSlots $other)
 Checks whether the other RevisionSlots instance has the same content as this instance.
 
 hasSlot ( $role)
 Returns whether the given slot is set.
 

Static Public Member Functions

static newFromParentRevisionSlots (array $slots, ?callable $resetCallback=null)
 Constructs a MutableRevisionSlots that inherits from the given list of slots.
 

Additional Inherited Members

- Protected Attributes inherited from MediaWiki\Revision\RevisionSlots
SlotRecord[] callable $slots
 

Detailed Description

Mutable version of RevisionSlots, for constructing a new revision.

Since
1.31
1.32 Renamed from MediaWiki\Storage\MutableRevisionSlots

Definition at line 33 of file MutableRevisionSlots.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Revision\MutableRevisionSlots::__construct ( array $slots = [],
?callable $resetCallback = null )
Parameters
SlotRecord[]$slotsAn array of SlotRecords.
callable | null$resetCallbackCallback to be triggered whenever slots change. Signature: function ( MutableRevisionSlots ): void.

Definition at line 67 of file MutableRevisionSlots.php.

References MediaWiki\Revision\RevisionSlots\$slots.

Member Function Documentation

◆ inheritSlot()

MediaWiki\Revision\MutableRevisionSlots::inheritSlot ( SlotRecord $slot)

Sets the given slot to an inherited version of $slot.

If a slot with the same role is already present, it is replaced.

Parameters
SlotRecord$slot

Definition at line 95 of file MutableRevisionSlots.php.

References MediaWiki\Revision\SlotRecord\newInherited(), and MediaWiki\Revision\MutableRevisionSlots\setSlot().

◆ newFromParentRevisionSlots()

static MediaWiki\Revision\MutableRevisionSlots::newFromParentRevisionSlots ( array $slots,
?callable $resetCallback = null )
static

Constructs a MutableRevisionSlots that inherits from the given list of slots.

Parameters
SlotRecord[]$slots
callable | null$resetCallbackCallback to be triggered whenever slots change. Signature: function ( MutableRevisionSlots ): void.
Returns
MutableRevisionSlots

Definition at line 49 of file MutableRevisionSlots.php.

References MediaWiki\Revision\RevisionSlots\$slots, and MediaWiki\Revision\SlotRecord\newInherited().

◆ removeSlot()

MediaWiki\Revision\MutableRevisionSlots::removeSlot ( $role)

Remove the slot for the given role, discontinue the corresponding stream.

Parameters
string$role

Definition at line 116 of file MutableRevisionSlots.php.

References MediaWiki\Revision\RevisionSlots\getSlots().

Referenced by MediaWiki\Storage\RevisionSlotsUpdate\apply().

◆ setContent()

MediaWiki\Revision\MutableRevisionSlots::setContent ( $role,
Content $content )

Sets the content for the slot with the given role.

If a slot with the same role is already present, it is replaced.

Parameters
string$role
Content$content

Definition at line 106 of file MutableRevisionSlots.php.

References MediaWiki\Revision\SlotRecord\newUnsaved(), and MediaWiki\Revision\MutableRevisionSlots\setSlot().

◆ setSlot()

MediaWiki\Revision\MutableRevisionSlots::setSlot ( SlotRecord $slot)

Sets the given slot.

If a slot with the same role is already present, it is replaced.

Parameters
SlotRecord$slot

Definition at line 79 of file MutableRevisionSlots.php.

References MediaWiki\Revision\SlotRecord\getRole(), and MediaWiki\Revision\RevisionSlots\getSlots().

Referenced by MediaWiki\Storage\RevisionSlotsUpdate\apply(), MediaWiki\Revision\MutableRevisionSlots\inheritSlot(), and MediaWiki\Revision\MutableRevisionSlots\setContent().


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