/[drupal]/contributions/modules/pathcache/pathcache.module
ViewVC logotype

Contents of /contributions/modules/pathcache/pathcache.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Wed Dec 3 21:29:46 2008 UTC (11 months, 3 weeks ago) by jvandyk
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
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