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/demo/controller.php
Chris 4516486b8e
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
loaing of model via arbitrary field and nice home page
2023-10-29 17:37:28 +01:00

34 lines
743 B
PHP

<?php
class Demo extends Page{
function setMenu()
{
$this->menu_text = 'Demo';
$this->menu_image = 'fas fa-do';
$this->menu_priority = 5;
}
function setSubmenu()
{
//$this->addSubmenuItem('Hunde anzeigen','/dogs','far fa-list-alt');
//$this->addSubmenuItem('Hund hinzufügen','/dogs/add','fas fa-plus-circle');
}
function test()
{
$u = new User();
$u->load('Chris','firstname');
var_dump($u->data);
}
function index()
{
$this->set('successTitle','Erfolgreich');
$this->set('successMessage','Text davon');
$this->set('errorMessage','Fehler ohne Titel');
$this->set('template','demo.html');
}
}