2013-08-11 13:30:41 +02:00
|
|
|
<?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();
|
|
|
|
|
2016-02-19 17:15:06 +01:00
|
|
|
return json_encode($datas, JSON_PRETTY_PRINT);
|
2013-08-11 13:30:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function display(){
|
|
|
|
$this
|
|
|
|
->setContentType('application/json')
|
|
|
|
->callContentType();
|
|
|
|
|
|
|
|
return parent::display();
|
|
|
|
}
|
2016-02-19 17:15:06 +01:00
|
|
|
}
|