function authcache_p13n_get_assemblies in Authenticated User Page Caching (Authcache) 7.2
Return all assemblies for this page (including added partials).
Related topics
2 calls to authcache_p13n_get_assemblies()
- AuthcacheP13nTestMarkup::testAddPartial in modules/
authcache_p13n/ tests/ authcache_p13n.markup.test - Cover authcache_p13n_add_partial(), authcache_p13n_get_assemblies().
- authcache_p13n_page_bottom_pre_render in modules/
authcache_p13n/ authcache_p13n.module - Pre-render callback for the page_bottom region.
File
- modules/
authcache_p13n/ authcache_p13n.module, line 430 - Provides methods for serving personalized content fragments.
Code
function authcache_p13n_get_assemblies() {
return drupal_array_merge_deep_array(authcache_p13n_add_partial());
}