a84016bcb6
getDatas -> getItems setDatas -> setItems Note: Bridge->setDatas actually sets data, where Bridge->getItems only returns items (this is why Bridge->setDatas was not changed)
20 lines
No EOL
420 B
PHP
20 lines
No EOL
420 B
PHP
<?php
|
|
/**
|
|
* Plaintext
|
|
* Returns $this->items as raw php data.
|
|
*/
|
|
class PlaintextFormat extends FormatAbstract{
|
|
|
|
public function stringify(){
|
|
$datas = $this->getItems();
|
|
return print_r($datas, true);
|
|
}
|
|
|
|
public function display(){
|
|
$this
|
|
->setContentType('text/plain;charset=' . $this->getCharset())
|
|
->callContentType();
|
|
|
|
return parent::display();
|
|
}
|
|
} |