function authcache_theme_registry_alter in Authenticated User Page Caching (Authcache) 6
Implements hook_theme_registry_alter().
File
- ./
authcache.module, line 467 - Authenticated User Page Caching (and anonymous users, too!)
Code
function authcache_theme_registry_alter(&$theme_registry) {
// Best way to modify $links variable in comment view??
// (Since the comment.module preprocess function flatens $links array)
$theme_registry['comment_view']['function'] = 'theme_authcache_comment_view';
}