00001 <?php 00024 class WebShipSimuLoginWelcomeAction extends BaseShipSimuAction implements Commandable, Registerable { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 } 00034 00041 public final static function createWebShipSimuLoginWelcomeAction (ActionResolver $resolverInstance) { 00042 // Get a new instance 00043 $actionInstance = new WebShipSimuLoginWelcomeAction(); 00044 00045 // Set the resolver instance 00046 $actionInstance->setResolverInstance($resolverInstance); 00047 00048 // Return the instance 00049 return $actionInstance; 00050 } 00051 00060 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00061 // Call parent execute method 00062 parent::execute($requestInstance, $responseInstance); 00063 00064 // Add your code here... 00065 } 00066 00075 public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) { 00076 // Unfinished method 00077 } 00078 } 00079 00080 // [EOF] 00081 ?>
1.5.6