You are here

function themekey_comment_themekey_properties in ThemeKey 6

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

File

modules/themekey.comment.inc, line 3

Code

function themekey_comment_themekey_properties() {

  // Attributes for properties
  $attributes = array();
  $attributes['comment:cid'] = array(
    'description' => t('Comment: ID'),
  );

  // Mapping functions
  $maps = array();
  $maps[] = array(
    'src' => 'comment:cid',
    'dst' => 'node:nid',
    'callback' => 'themekey_comment_cid2nid',
  );
  return array(
    'attributes' => $attributes,
    'maps' => $maps,
  );
}