mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
17 lines
568 B
PHP
17 lines
568 B
PHP
<?php
|
|
|
|
namespace SYSTEM\SAI;
|
|
|
|
abstract class SaiModule {
|
|
public static function html_content(){
|
|
throw new RuntimeException("Unimplemented!");}
|
|
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!");}
|
|
|
|
} |