00001 <?php 00024 class WebAdminLoginWelcomeAction extends BaseAction implements PerformableAction, Registerable { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 } 00034 00040 public final static function createWebAdminLoginWelcomeAction () { 00041 // Get a new instance 00042 $actionInstance = new WebAdminLoginWelcomeAction(); 00043 00044 // Return the instance 00045 return $actionInstance; 00046 } 00047 00056 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00057 $this->partialStub("Unfinished part."); 00058 } 00059 00068 public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) { 00069 $this->partialStub("Need to add filters which looks for applications with "admin" directory."); 00070 } 00071 } 00072 00073 // [EOF] 00074 ?>
1.5.6