You are here

comment.rules_forms.inc in Rules 6

Rules configuration forms for the comment module.

File

rules/modules/comment.rules_forms.inc
View source
<?php

/**
 * @file
 * Rules configuration forms for the comment module.
 *
 * @addtogroup rules
 * @{
 */

/**
 * Action "Load a comment by id" variable label callback.
 */
function rules_action_load_comment_variable_label($settings) {
  return t('Comment with id @id', array(
    '@id' => $settings['cid'],
  ));
}

/**
 * @}
 */

Related topics

Functions

Namesort descending Description
rules_action_load_comment_variable_label Action "Load a comment by id" variable label callback.