function authcache_p13n_theme in Authenticated User Page Caching (Authcache) 7.2
Implements hook_theme().
Related topics
1 call to authcache_p13n_theme()
- authcache_p13n_find_theme_functions in modules/
authcache_p13n/ authcache_p13n.module - Discover theme suggestions provided by client-modules.
File
- modules/
authcache_p13n/ authcache_p13n.module, line 119 - Provides methods for serving personalized content fragments.
Code
function authcache_p13n_theme() {
return array(
'authcache_p13n_fragment' => array(
'variables' => array(
'fragment' => '',
'param' => '',
'callback' => NULL,
'clients' => NULL,
'fallback' => 'hide',
'original' => NULL,
'attributes' => array(),
),
),
'authcache_p13n_setting' => array(
'variables' => array(
'setting' => '',
'param' => '',
'callback' => NULL,
'clients' => NULL,
'fallback' => 'hide',
),
),
'authcache_p13n_assembly' => array(
'variables' => array(
'assembly' => '',
'param' => '',
'callback' => NULL,
'clients' => NULL,
'fallback' => 'hide',
),
),
'authcache_p13n_partial' => array(
'variables' => array(
'assembly' => '',
'partial' => '',
'param' => '',
'clients' => NULL,
'fallback' => 'hide',
'original' => NULL,
'attributes' => array(),
),
),
'authcache_p13n_config_client_order' => array(
'render element' => 'element',
),
);
}