mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
19 lines
618 B
PHP
19 lines
618 B
PHP
<?php
|
|
|
|
namespace SYSTEM\SAI;
|
|
|
|
class SaiModule extends \SYSTEM\API\api_system{
|
|
public static function default_page(){
|
|
$sai = new \SYSTEM\SAI\default_page();
|
|
return $sai->html();}
|
|
|
|
public static function html_li_menu(){
|
|
throw new \RuntimeException("Unimplemented!");}
|
|
//true or false -> if true no call to right_right()
|
|
public static function right_public(){
|
|
throw new \RuntimeException("Unimplemented!");}
|
|
//check your rights here -> returns true or false
|
|
public static function right_right(){
|
|
throw new \RuntimeException("Unimplemented!");}
|
|
|
|
} |