28 parent::__construct( $text, $modelId );
51 if ( $this->jsonParse ===
null ) {
52 $this->jsonParse = FormatJson::parse( $this->
getNativeData() );
61 return $this->
getData()->isGood();
72 return FormatJson::encode( $this->
getData()->getValue(),
true, FormatJson::UTF8_OK );
107 if ( $generateHtml && $this->
isValid() ) {
109 $output->addModuleStyles(
'mediawiki.content.json' );
124 if ( is_object( $val ) ) {
128 if ( is_array( $val ) ) {
134 return Html::rawElement(
'table', [
'class' =>
'mw-json mw-json-single-value' ],
135 Html::rawElement(
'tbody', [],
136 Html::rawElement(
'tr', [],
153 foreach ( $mapping as $key => $val ) {
158 $rows[] = Html::rawElement(
'tr', [],
159 Html::element(
'td', [
'class' =>
'mw-json-empty' ],
164 return Html::rawElement(
'table', [
'class' =>
'mw-json' ],
165 Html::rawElement(
'tbody', [], implode(
'',
$rows ) )
177 $th = Html::element(
'th', [], $key );
179 return Html::rawElement(
'tr', [], $th . $td );
192 foreach ( $mapping as $val ) {
197 $rows[] = Html::rawElement(
'tr', [],
198 Html::element(
'td', [
'class' =>
'mw-json-empty' ],
203 return Html::rawElement(
'table', [
'class' =>
'mw-json' ],
204 Html::rawElement(
'tbody', [], implode(
"\n",
$rows ) )
216 return Html::rawElement(
'tr', [], $td );
226 if ( is_object( $val ) ) {
227 return Html::rawElement(
'td', [], $this->
objectTable( $val ) );
230 if ( is_array( $val ) ) {
231 return Html::rawElement(
'td', [], $this->
arrayTable( $val ) );
234 return Html::element(
'td', [
'class' =>
'value' ], $this->
primitiveValue( $val ) );
244 if ( is_string( $val ) ) {
247 return '"' . $val .
'"';
249 return FormatJson::encode( $val );
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Represents the content of a JSON content.
objectRow( $key, $val)
Create HTML table row representing one object property.
objectTable( $mapping)
Create HTML table representing a JSON object.
valueCell( $val)
Construct HTML table cell representing any JSON value.
arrayRow( $val)
Create HTML table row representing the value in an array.
primitiveValue( $val)
Construct text representing a JSON primitive value.
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Beautifies JSON prior to save.
__construct( $text, $modelId=CONTENT_MODEL_JSON)
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Set the HTML and add the appropriate styles.
getJsonData()
Decodes the JSON into a PHP associative array.
beautifyJSON()
Pretty-print JSON.
rootValueTable( $val)
Construct HTML table representation of any JSON value.
getData()
Decodes the JSON string.
arrayTable( $mapping)
Create HTML table representing a JSON array.
Set options of the Parser.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Content object implementation for representing flat text.
getNativeData()
Returns the text represented by this Content object, as a string.
static normalizeLineEndings( $text)
Do a "\\r\\n" -> "\\n" and "\\r" -> "\\n" transformation as well as trim trailing whitespace.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services