AppStateESS/homestead

View on GitHub
class/PinDisabledView.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Homestead;

/**
 * PinDisabledView
 *
 * Shows the student a notification that his/her PIN is disabled, with instructions on how to re-enable it.
 *
 * @author Jeremy Booker
 * @package HMS
 */

class PinDisabledView extends View {

    public function show()
    {
        $tpl = array();
        return \PHPWS_Template::process($tpl, 'hms', 'student/pinDisabled.tpl');
    }
}