You are here

function authcache_p13n_resource_processors in Authenticated User Page Caching (Authcache) 7.2

Invoke hook_authcache_p13n_resource_processors().

Related topics

2 calls to authcache_p13n_resource_processors()
AuthcacheP13nDefaultRequestRouter::rebuild in modules/authcache_p13n/includes/AuthcacheP13nDefaultRequestRouter.inc
Rebuild the routing information after configuration changes.
authcache_p13n_admin_markup_configs in modules/authcache_p13n/authcache_p13n.admin.inc
Display a list of markup substitution configurations.

File

modules/authcache_p13n/authcache_p13n.module, line 830
Provides methods for serving personalized content fragments.

Code

function authcache_p13n_resource_processors() {
  $processors = module_invoke_all('authcache_p13n_resource_processors');
  drupal_alter('authcache_p13n_resource_processors', $processors);
  return $processors;
}