mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-09-19 04:11:39 +02:00
bridges
cache
caches
css
formats
AtomFormat.php
HtmlFormat.php
JsonFormat.php
MrssFormat.php
PlaintextFormat.php
lib
vendor
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
README.md
UNLICENSE
index.php
phpcs.xml
scalingo.json
21 lines
377 B
PHP
21 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();
|
|
}
|
|
}
|