MediaWiki REL1_27
|
Represents the content of a JSON content. More...
Public Member Functions | |
__construct ( $text, $modelId=CONTENT_MODEL_JSON) | |
beautifyJSON () | |
Pretty-print JSON. | |
getData () | |
Decodes the JSON string. | |
getJsonData () | |
Decodes the JSON into a PHP associative array. | |
isValid () | |
preSaveTransform (Title $title, User $user, ParserOptions $popts) | |
Beautifies JSON prior to save. | |
Public Member Functions inherited from TextContent | |
convert ( $toModel, $lossy='') | |
This implementation provides lossless conversion between content models based on TextContent. | |
copy () | |
diff (Content $that, Language $lang=null) | |
Diff this content object with another content object. | |
getNativeData () | |
Returns the text represented by this Content object, as a string. | |
getSize () | |
Returns the text's size in bytes. | |
getTextForSearchIndex () | |
Returns the text represented by this Content object, as a string. | |
getTextForSummary ( $maxlength=250) | |
Returns a textual representation of the content suitable for use in edit summaries and log messages. | |
getWikitextForTransclusion () | |
Returns attempts to convert this content object to wikitext, and then returns the text string. | |
isCountable ( $hasLinks=null) | |
Returns true if this content is not a redirect, and $wgArticleCountMethod is "any". | |
Public Member Functions inherited from AbstractContent | |
__construct ( $modelId=null) | |
addSectionHeader ( $header) | |
equals (Content $that=null) | |
getContentHandler () | |
getDefaultFormat () | |
getDeletionUpdates (WikiPage $page, ParserOutput $parserOutput=null) | |
getModel () | |
getParserOutput (Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true) | |
Returns a ParserOutput object containing information derived from this content. | |
getRedirectChain () | |
getRedirectTarget () | |
Subclasses that implement redirects should override this. | |
getSecondaryDataUpdates (Title $title, Content $old=null, $recursive=true, ParserOutput $parserOutput=null) | |
Returns a list of DataUpdate objects for recording information about this Content in some secondary data store. | |
getSection ( $sectionId) | |
getSupportedFormats () | |
getUltimateRedirectTarget () | |
isEmpty () | |
isRedirect () | |
isSupportedFormat ( $format) | |
matchMagicWord (MagicWord $word) | |
This default implementation always returns false. | |
preloadTransform (Title $title, ParserOptions $popts, $params=[]) | |
prepareSave (WikiPage $page, $flags, $parentRevId, User $user) | |
replaceSection ( $sectionId, Content $with, $sectionTitle='') | |
serialize ( $format=null) | |
updateRedirect (Title $target) | |
This default implementation always returns $this. | |
Protected Member Functions | |
arrayRow ( $val) | |
Create HTML table row representing the value in an array. | |
arrayTable ( $mapping) | |
Create HTML table representing a JSON array. | |
fillParserOutput (Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output) | |
Set the HTML and add the appropriate styles. | |
objectRow ( $key, $val) | |
Create HTML table row representing one object property. | |
objectTable ( $mapping) | |
Create HTML table representing a JSON object. | |
primitiveValue ( $val) | |
Construct text representing a JSON primitive value. | |
rootValueTable ( $val) | |
Construct HTML table representation of any JSON value. | |
valueCell ( $val) | |
Construct HTML table cell representing any JSON value. | |
Protected Member Functions inherited from TextContent | |
getHighlightHtml () | |
Generates an HTML version of the content, for display. | |
getHtml () | |
Generates an HTML version of the content, for display. | |
Protected Member Functions inherited from AbstractContent | |
checkFormat ( $format) | |
checkModelID ( $modelId) | |
Protected Attributes | |
Status | $jsonParse |
Protected Attributes inherited from AbstractContent | |
$model_id | |
Name of the content model this Content object represents. | |
JsonContent::__construct | ( | $text, | |
$modelId = CONTENT_MODEL_JSON |
|||
) |
string | $text | JSON |
Reimplemented from TextContent.
Definition at line 26 of file JsonContent.php.
|
protected |
Create HTML table row representing the value in an array.
mixed | $val |
Definition at line 213 of file JsonContent.php.
References Html\rawElement(), and valueCell().
Referenced by arrayTable().
|
protected |
Create HTML table representing a JSON array.
array | $mapping |
Definition at line 187 of file JsonContent.php.
References arrayRow(), as, Html\element(), Html\rawElement(), text, and wfMessage().
Referenced by rootValueTable(), and valueCell().
JsonContent::beautifyJSON | ( | ) |
Pretty-print JSON.
If called before validation, it may return JSON "null".
Definition at line 70 of file JsonContent.php.
References getData().
Referenced by preSaveTransform().
|
protected |
Set the HTML and add the appropriate styles.
Title | $title | |
int | $revId | |
ParserOptions | $options | |
bool | $generateHtml | |
ParserOutput | $output |
Reimplemented from TextContent.
Definition at line 101 of file JsonContent.php.
References $generateHtml, $output, ParserOutput\addModuleStyles(), getData(), isValid(), rootValueTable(), and ParserOutput\setText().
JsonContent::getData | ( | ) |
Decodes the JSON string.
Note that this parses it without casting objects to associative arrays. Objects and arrays are kept as distinguishable types in the PHP values.
Definition at line 49 of file JsonContent.php.
References $jsonParse, and TextContent\getNativeData().
Referenced by beautifyJSON(), fillParserOutput(), and isValid().
JsonContent::getJsonData | ( | ) |
Decodes the JSON into a PHP associative array.
Definition at line 36 of file JsonContent.php.
References TextContent\getNativeData(), and wfDeprecated().
JsonContent::isValid | ( | ) |
Reimplemented from AbstractContent.
Definition at line 59 of file JsonContent.php.
References getData().
Referenced by fillParserOutput(), and preSaveTransform().
|
protected |
Create HTML table row representing one object property.
string | $key | |
mixed | $val |
Definition at line 175 of file JsonContent.php.
References Html\element(), Html\rawElement(), and valueCell().
Referenced by objectTable().
|
protected |
Create HTML table representing a JSON object.
stdClass | $mapping |
Definition at line 148 of file JsonContent.php.
References as, Html\element(), objectRow(), Html\rawElement(), text, and wfMessage().
Referenced by rootValueTable(), and valueCell().
JsonContent::preSaveTransform | ( | Title | $title, |
User | $user, | ||
ParserOptions | $popts | ||
) |
Beautifies JSON prior to save.
Title | $title | Title |
User | $user | User |
ParserOptions | $popts |
Reimplemented from TextContent.
Definition at line 82 of file JsonContent.php.
References beautifyJSON(), and isValid().
|
protected |
Construct text representing a JSON primitive value.
mixed | $val |
Definition at line 242 of file JsonContent.php.
Referenced by rootValueTable(), and valueCell().
|
protected |
Construct HTML table representation of any JSON value.
See also valueCell, which is similar.
mixed | $val |
Definition at line 122 of file JsonContent.php.
References arrayTable(), Html\element(), objectTable(), primitiveValue(), and Html\rawElement().
Referenced by fillParserOutput().
|
protected |
Construct HTML table cell representing any JSON value.
mixed | $val |
Definition at line 224 of file JsonContent.php.
References arrayTable(), Html\element(), objectTable(), primitiveValue(), and Html\rawElement().
Referenced by arrayRow(), and objectRow().
|
protected |