You are here

function themekey_og_context_themekey_paths in ThemeKey 7.3

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

Implements hook_themekey_paths().

File

modules/themekey.og_context.inc, line 53
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;
}