You are here

function authcache_panels_pane_machine_name_exists in Authenticated User Page Caching (Authcache) 7.2

Return TRUE if the given machine name exists.

1 call to authcache_panels_pane_machine_name_exists()
authcache_panels_pane_machine_name_generate in modules/authcache_panels/authcache_panels.module
Given a pane, generate an initial machine name.
1 string reference to 'authcache_panels_pane_machine_name_exists'
authcache_panels_cache_settings_form in modules/authcache_panels/plugins/cache/authcache_panels.inc
Settings form.

File

modules/authcache_panels/authcache_panels.module, line 134
Authcache support for Panels.

Code

function authcache_panels_pane_machine_name_exists($machine_name) {
  return authcache_p13n_request_exists('frag/panels/' . str_replace('_', '-', $machine_name));
}