You are here

function themekey_contact_themekey_paths in ThemeKey 7.3

Implements hook_themekey_paths().

File

modules/themekey.contact.inc, line 33

Code

function themekey_contact_themekey_paths() {
  $paths = array();
  $paths[] = array(
    'path' => 'user/#contact:uid/contact',
  );
  return $paths;
}