first commit
This commit is contained in:
26
_rejestracja/core/class/ControllerInterface.class.php
Normal file
26
_rejestracja/core/class/ControllerInterface.class.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Obowiązkowy interfejs dla wszystkich kontrolerów
|
||||
*
|
||||
*/
|
||||
interface ControllerInterface {
|
||||
/**
|
||||
* metoda wywolywana przed metoda
|
||||
*
|
||||
*/
|
||||
public function PreDispatch($param);
|
||||
|
||||
/**
|
||||
* metoda wywolywana po metodzie
|
||||
*
|
||||
*/
|
||||
public function PostDispatch($param);
|
||||
|
||||
/**
|
||||
* metoda glowna
|
||||
*
|
||||
*/
|
||||
public function IndexAction($param);
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user