FRED™  3.0
FRED™: Framework for Rapid and Easy Development
Txt.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class Txt extends \Rsi\Fred\Controller\View{
6 
7  public function render(){
8  if(!headers_sent()) header('Content-type: text/plain; charset=utf-8');
9  print(\Rsi\Ini::toString($this->data));
10  }
11 
12 }