AppStateESS/homestead

View on GitHub
class/BadBannerDataView.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Homestead;

class BadBannerDataView extends View {

    public function __construct()
    {
    }

    public function show()
    {
        $tpl = array();

        $contactCmd = CommandFactory::getCommand('ShowContactForm');

        $tpl['CONTACT_LINK'] = $contactCmd->getLink('click here to contact us.');

        \Layout::addPageTitle("Contact");

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