You are here

function themekey_comment_themekey_properties in ThemeKey 6.2

Same name and namespace in other branches
  1. 6.4 modules/themekey.comment.inc \themekey_comment_themekey_properties()
  2. 6 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()

Implements hook_themekey_properties().

Provides additional properties for module ThemeKey:

  • comment:cid

Return value

array of themekey properties and mapping functions

File

modules/themekey.comment.inc, line 18
Provides some comment attributes as ThemeKey properties.

Code

function themekey_comment_themekey_properties() {

  // Attributes for properties
  $attributes = array();
  $attributes['comment:cid'] = array(
    'description' => t('Comment: ID - The id of a comment (cid). See !link for your published comments or !link_unpublished for comments awaiting approval', array(
      '!link' => l('admin/content/comment', 'admin/content/comment'),
      '!link_unpublished' => l('admin/content/comment/approval', 'admin/content/comment/approval'),
    )),
    'validator' => 'themekey_validator_ctype_digit',
  );

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