forked from blallo/rss-bridge
62eec43980
All files are now using tabs for indentation
20 lines
377 B
PHP
20 lines
377 B
PHP
<?php
|
|
/**
|
|
* Json
|
|
* Builds a JSON string from $this->items and return it to browser.
|
|
*/
|
|
class JsonFormat extends FormatAbstract {
|
|
|
|
public function stringify(){
|
|
$items = $this->getItems();
|
|
return json_encode($items, JSON_PRETTY_PRINT);
|
|
}
|
|
|
|
public function display(){
|
|
$this
|
|
->setContentType('application/json')
|
|
->callContentType();
|
|
|
|
return parent::display();
|
|
}
|
|
}
|