Changeset 1632 for trunk/src/main/php/net/stubbles/websites/processors
- Timestamp:
- 06/19/08 11:00:48 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/websites/processors/stubAbstractProcessorResolver.php
r1447 r1632 46 46 47 47 $this->configure($processor); 48 $this->handlePageBasedProcessor($processor);49 48 return $processor; 50 49 } … … 68 67 69 68 /** 70 * helpermethod to handle page based processors69 * method to handle page based processors 71 70 * 72 71 * @param stubProcessor $processor … … 74 73 * @throws stubRuntimeException 75 74 */ 76 p rotected function handlePageBasedProcessor(stubProcessor $processor)75 public function selectPage(stubProcessor $processor) 77 76 { 78 77 if (($processor instanceof stubPageBasedProcessor) === false) { trunk/src/main/php/net/stubbles/websites/processors/stubProcessorResolver.php
r1445 r1632 29 29 */ 30 30 public function resolve(stubRequest $request, stubSession $session, stubResponse $response); 31 32 /** 33 * method to handle page based processors 34 * 35 * @param stubProcessor $processor 36 * @throws stubConfigurationException 37 * @throws stubRuntimeException 38 */ 39 public function selectPage(stubProcessor $processor); 31 40 } 32 41 ?>
