function theme_rules_settings_help

General theme function for displaying settings related help.

2 theme calls to theme_rules_settings_help()
RulesDataUI::selectionForm in ui/ui.data.inc
Provides the selection form for a parameter.
RulesI18nStringEvaluator::help in rules_i18n/rules_i18n.rules.inc
Overrides RulesDataInputEvaluator::help().

File

ui/ui.theme.inc, line 302

Code

function theme_rules_settings_help($variables) {
    $text = $variables['text'];
    $heading = $variables['heading'];
    return "<p class=\"rules-settings-help\"><strong>{$heading}:</strong> {$text}</p>";
}