AppStateESS/homestead

View on GitHub
class/ContactFormThankYouView.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Homestead;

class ContactFormThankYouView extends View{

    public function show(){
        $tpl = array();
        $tpl['LOGOUT_LINK'] = \PHPWS_Text::secureLink(_('Log Out'), 'users', array('action'=>'user', 'command'=>'logout'));

        \Layout::addPageTitle("Contact");

        return \PHPWS_Template::process($tpl, 'hms', 'student/contact_form_thankyou.tpl');
    }
}