You are here

function themekey_comment_themekey_paths in ThemeKey 6

Same name and namespace in other branches
  1. 6.4 modules/themekey.comment.inc \themekey_comment_themekey_paths()
  2. 6.2 modules/themekey.comment.inc \themekey_comment_themekey_paths()
  3. 6.3 modules/themekey.comment.inc \themekey_comment_themekey_paths()
  4. 7.3 modules/themekey.comment.inc \themekey_comment_themekey_paths()
  5. 7 modules/themekey.comment.inc \themekey_comment_themekey_paths()
  6. 7.2 modules/themekey.comment.inc \themekey_comment_themekey_paths()

File

modules/themekey.comment.inc, line 17

Code

function themekey_comment_themekey_paths() {
  $paths = array();
  $paths[] = array(
    'path' => 'comment/reply/#node:nid',
  );
  $paths[] = array(
    'path' => 'comment/reply/#node:nid/#comment:cid',
  );
  $paths[] = array(
    'path' => 'comment/edit/#comment:cid',
  );
  $paths[] = array(
    'path' => 'comment/delete/#comment:cid',
  );
  return $paths;
}