Chris
e343bb8f48
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
27 lines
618 B
PHP
27 lines
618 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 index()
|
|
{
|
|
$this->set('successTitle','Erfolgreich');
|
|
$this->set('successMessage','Text davon');
|
|
|
|
$this->set('errorMessage','Fehler ohne Titel');
|
|
|
|
$this->set('template','demo.html');
|
|
}
|
|
} |