- Timestamp:
- 12/04/07 17:08:44 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/websites/stubPageElement.php
r798 r1110 41 41 42 42 /** 43 * checks whether the page element is available or not43 * initializes the page element 44 44 * 45 45 * @param stubRequest $request the request data … … 49 49 * @return bool 50 50 */ 51 public function isAvailable(stubRequest $request, stubSession $session, stubResponse $response, array $context = array()); 51 public function init(stubRequest $request, stubSession $session, stubResponse $response, array $context = array()); 52 53 /** 54 * checks whether the page element is available or not 55 * 56 * @return bool 57 */ 58 public function isAvailable(); 52 59 53 60 /** … … 57 64 * into the response! 58 65 * 59 * @param stubRequest $request the request data 60 * @param stubSession $session current session 61 * @param stubResponse $response contains response data 62 * @param array $context optional additional context data 66 * @return mixed content for page element 63 67 */ 64 public function process( stubRequest $request, stubSession $session, stubResponse $response, array $context = array());68 public function process(); 65 69 } 66 70 ?>
