MediaWiki  1.34.0
HistoryBlob.php
Go to the documentation of this file.
1 <?php
28 interface HistoryBlob {
38  function addItem( $text );
39 
47  function getItem( $key );
48 
59  function setText( $text );
60 
66  function getText();
67 }
HistoryBlob
Base class for general text storage via the "object" flag in old_flags, or two-part external storage ...
Definition: HistoryBlob.php:28
HistoryBlob\getText
getText()
Get default text.
HistoryBlob\getItem
getItem( $key)
Get item by key, or false if the key is not present.
HistoryBlob\addItem
addItem( $text)
Adds an item of text, returns a stub object which points to the item.
HistoryBlob\setText
setText( $text)
Set the "default text" This concept is an odd property of the current DB schema, whereby each text it...