forked from blallo/rss-bridge
62eec43980
All files are now using tabs for indentation
20 lines
368 B
PHP
20 lines
368 B
PHP
<?php
|
|
/**
|
|
* Plaintext
|
|
* Returns $this->items as raw php data.
|
|
*/
|
|
class PlaintextFormat extends FormatAbstract {
|
|
|
|
public function stringify(){
|
|
$items = $this->getItems();
|
|
return print_r($items, true);
|
|
}
|
|
|
|
public function display(){
|
|
$this
|
|
->setContentType('text/plain;charset=' . $this->getCharset())
|
|
->callContentType();
|
|
|
|
return parent::display();
|
|
}
|
|
}
|