Changeset 715
- Timestamp:
- 06/05/07 22:48:36 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ipo/interceptors/stubInterceptorXJConfInitializer.php
r584 r715 2 2 /** 3 3 * Class for initializing the interceptors via XJConf. 4 * 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> 6 6 * @package stubbles … … 42 42 43 43 /** 44 * returns the data to cache 44 * returns the data to cache 45 45 * 46 46 * @return array … … 56 56 } 57 57 } 58 58 59 59 foreach ($this->postInterceptors as $postInterceptor) { 60 60 if ($postInterceptor instanceof stubSerializable) { … … 64 64 } 65 65 } 66 66 67 67 return $cacheData; 68 68 } … … 86 86 stubClassLoader::load($preInterceptor); 87 87 } 88 88 89 89 $this->preInterceptors[] = new $nqClassName(); 90 90 } 91 91 } 92 92 93 93 foreach ($cacheData['postInterceptors'] as $postInterceptor) { 94 94 if ($postInterceptor instanceof stubSerializedObject) { … … 102 102 stubClassLoader::load($postInterceptor); 103 103 } 104 104 105 105 $this->postInterceptors[] = new $nqClassName(); 106 106 } … … 119 119 120 120 /** 121 * will be called in case the stubXJConfProxy did not f ound the data in the121 * will be called in case the stubXJConfProxy did not find the data in the 122 122 * cache and the initializer has to load values from the facade 123 123 *
