You are here

function authcache_p13n_element_info in Authenticated User Page Caching (Authcache) 7.2

Implements hook_element_info().

Related topics

File

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

Code

function authcache_p13n_element_info() {
  $types['authcache_p13n_config'] = array(
    '#input' => TRUE,
    '#process' => array(
      'authcache_p13n_process_config',
      'form_process_container',
    ),
    '#theme_wrappers' => array(
      'container',
    ),
  );
  return $types;
}