rss-bridge/formats/JsonFormat.php
Benoit.S « Benpro » fd4af15ce6 Respect PHP Coding Standards.
PSR-1 and PSR-2.

PSR-0 need more modifications.
2014-02-06 11:34:19 +01:00

27 lines
512 B
PHP

<?php
/**
* Json
* Builds a JSON string from $this->items and return it to browser.
*
* @name Json
*/
class JsonFormat extends FormatAbstract
{
public function stringify()
{
// FIXME : sometime content can be null, transform to empty string
$datas = $this->getDatas();
return json_encode($datas);
}
public function display()
{
$this
->setContentType('application/json')
->callContentType();
return parent::display();
}
}