All checks were successful
		
		
	
	Build and push / Pulling repo on server (push) Successful in 3s
				
		
			
				
	
	
		
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class Home extends Page
 | 
						|
{
 | 
						|
    function setMenu()
 | 
						|
    {
 | 
						|
        $this->menu_text = 'home';
 | 
						|
        $this->menu_image = 'mdi-action-home';
 | 
						|
        $this->menu_priority = 0;
 | 
						|
    }
 | 
						|
 | 
						|
    function index()
 | 
						|
    {
 | 
						|
        $this->set('template', "home.html");
 | 
						|
        return $this->renderPagecontent();
 | 
						|
    }
 | 
						|
 | 
						|
    function maySeeThisPage(){return true;}
 | 
						|
} |