Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mm/phpwebsite-1.8.x/Global/
Upload File :
Current File : /var/www/html/mmishra/mm/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';
    }
}

?>