Added a general secure view for pages in the secure
section of the website.
This commit is contained in:
21
lib/SecureView.php
Normal file
21
lib/SecureView.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
require_once "View.php";
|
||||
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: sean
|
||||
* Date: 10/30/17
|
||||
* Time: 11:07 AM
|
||||
*/
|
||||
class SecureView extends View
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->addNav("Home", ROOT);
|
||||
$this->addNav("Minutes", ROOT . "secure/minutes.php");
|
||||
$this->addNav("Milestones", ROOT . "secure/milestones.php");
|
||||
$this->addNav("Logoff", ROOT . "secure/");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user