Parent Directory
|
Revision Log
|
Revision Graph
Stores url aliases in a cache, such as memcache.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * Caches path lookups by providing alternate drupal_lookup_path(). |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Implementation of hook_flush_caches(). |
| 11 | */ |
| 12 | function pathcache_flush_caches() { |
| 13 | return array( |
| 14 | 'cache_pathsrc', |
| 15 | 'cache_pathdst', |
| 16 | ); |
| 17 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |