This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/pages/dog/controller.php
2023-10-22 16:21:27 +02:00

16 lines
258 B
PHP

<?php
class Dog extends Page {
function setMenu()
{
$this->menu_text = 'Dog';
$this->menu_image = 'far fa-dog';
$this->menu_priority = 0;
}
function index() {
$this->set('template', 'dog.html');
}
}