You are here

public function property_validation_words_validator::token_help in Field Validation 7.2

Provide token help info for error message.

Overrides property_validation_validator::token_help

File

property_validation/plugins/validator/property_validation_words_validator.inc, line 68

Class

property_validation_words_validator

Code

public function token_help() {
  $token_help = parent::token_help();
  $token_help += array(
    '[min]' => t('Minimum number of words'),
    '[max]' => t('Maximum number of words'),
    '[count]' => t('The real number of words'),
  );
  return $token_help;
}