forked from blallo/rss-bridge
eb3392db82
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
22 lines
506 B
PHP
22 lines
506 B
PHP
<?php
|
|
/**
|
|
* Json
|
|
* Builds a JSON string from $this->items and return it to browser.
|
|
*/
|
|
class JsonFormat extends FormatAbstract{
|
|
|
|
public function stringify(){
|
|
// FIXME : sometime content can be null, transform to empty string
|
|
$datas = $this->getDatas();
|
|
|
|
return json_encode($datas, JSON_PRETTY_PRINT);
|
|
}
|
|
|
|
public function display(){
|
|
$this
|
|
->setContentType('application/json')
|
|
->callContentType();
|
|
|
|
return parent::display();
|
|
}
|
|
}
|