PaperBag/www/index.php

18 lines
332 B
PHP

<?php
require_once '../Router.php';
class HomePage extends WebPage {
public $pagekey = "home";
public $title = "PaperBag - Plan & Execute Your Shopping";
function load(){
if (file_exists('changes.txt')) {
$this->changes = file_get_contents('changes.txt');
}
}
}
$a = new HomePage();