| Current Path : /var/www/html/ajay/phpwebsite-1.8.x/Global/ |
| Current File : /var/www/html/ajay/phpwebsite-1.8.x/Global/NullView.php |
<?php
/**
* For Compatibility Only
* @author Jeff Tickle <jtickle at tux dot appstate dot edu>
*/
class NullView implements View
{
public function __construct()
{
}
public function render()
{
return "";
}
public function getContentType()
{
return 'text/html';
}
}
?>