Skip to content
Matthew P. Kerle edited this page Jul 16, 2014 · 1 revision

Description
An action loads a corresponding action handling file, which loads up the Processing class for the action, containing all "sub-actions", which are executed using &perform=Y.


when action=X
construct class Actions_X
construct class Processes_X


when action=X and perform=Y
call method Processes_X::methodY();


Guest Example
index.php?action=user&perform=login
./Actions/User.php - class Actions_User {}
./Processes/User.php - class construct() {}
./Processes/User.php - class performLogin() {}


Clone this wiki locally