system/sai/sai/SaiModule.php
2013-05-16 20:37:28 +02:00

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!");}
}