53 lines
943 B
PHP
53 lines
943 B
PHP
<?php
|
|
|
|
/**
|
|
* PanaceaHomeView
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Views
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-05
|
|
*/
|
|
|
|
/** Bootstraps the NowhereConcave framework */
|
|
require_once 'NowhereConcave/bootstrap.php';
|
|
|
|
/**
|
|
* View for standard Panacea pages
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Views
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-05
|
|
*/
|
|
class PanaceaHomeView extends PanaceaView {
|
|
|
|
/**
|
|
* Renders the view
|
|
*
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-18
|
|
* @uses addView()
|
|
* @uses PanaceaWelcomeView
|
|
*
|
|
* @param int $priority The priority of this view
|
|
*/
|
|
public function __construct($priority = 0) {
|
|
parent::__construct($priority);
|
|
|
|
$this->addView(new PanaceaWelcomeView(1));
|
|
}
|
|
|
|
/**
|
|
* Renders the view
|
|
*
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-05
|
|
*/
|
|
public function send() {
|
|
parent::send();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|