1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 14:18:35 +01:00
php-rss-bridge/formats/JsonFormat.php

21 lines
377 B
PHP
Raw Normal View History

2013-08-11 13:30:41 +02:00
<?php
/**
* Json
* Builds a JSON string from $this->items and return it to browser.
*/
class JsonFormat extends FormatAbstract {
2013-08-11 13:30:41 +02:00
public function stringify(){
$items = $this->getItems();
return json_encode($items, JSON_PRETTY_PRINT);
}
2013-08-11 13:30:41 +02:00
public function display(){
$this
->setContentType('application/json')
->callContentType();
2013-08-11 13:30:41 +02:00
return parent::display();
}
}