forked from blallo/rss-bridge
a84016bcb6
getDatas -> getItems setDatas -> setItems Note: Bridge->setDatas actually sets data, where Bridge->getItems only returns items (this is why Bridge->setDatas was not changed)
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->getItems();
|
|
|
|
return json_encode($datas, JSON_PRETTY_PRINT);
|
|
}
|
|
|
|
public function display(){
|
|
$this
|
|
->setContentType('application/json')
|
|
->callContentType();
|
|
|
|
return parent::display();
|
|
}
|
|
}
|