* All content handlers that deal with code/data tend to have English as their page language & pageview language, so moved common code to the abstract CodeContentHandler class. * Renamed JSONContent & JSONContentHandler into JsonContent* Change-Id: I46819a0572ef5becc211d0d82471ff7102edaa3c
26 lines
455 B
PHP
26 lines
455 B
PHP
<?php
|
|
/**
|
|
* JSON Schema Content Handler
|
|
*
|
|
* @file
|
|
*
|
|
* @author Ori Livneh <ori@wikimedia.org>
|
|
* @author Kunal Mehta <legoktm@gmail.com>
|
|
*/
|
|
|
|
/**
|
|
* @since 1.24
|
|
*/
|
|
class JsonContentHandler extends CodeContentHandler {
|
|
|
|
public function __construct( $modelId = CONTENT_MODEL_JSON ) {
|
|
parent::__construct( $modelId, array( CONTENT_FORMAT_JSON ) );
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getContentClass() {
|
|
return 'JsonContent';
|
|
}
|
|
}
|