You are here

function themekey_og_context_themekey_paths in ThemeKey 7.2

Same name and namespace in other branches
  1. 7.3 modules/themekey.og_context.inc \themekey_og_context_themekey_paths()

Implements hook_themekey_paths().

File

modules/themekey.og_context.inc, line 54
Provides some og attributes as ThemeKey properties.

Code

function themekey_og_context_themekey_paths() {
  $paths = array();
  $paths[] = array(
    'path' => 'group/%group:type/#group:id/%',
  );
  return $paths;
}