You are here

function rules_data_type_mail::load in Mail Logger 6

Loads the data identified with an identifier as returned by get_identifier(). Just return the data or FALSE if loading the data failed.

Implement it, if your data type is identifiable.

Overrides rules_data_type::load

File

./mail_logger.rules.inc, line 96
Rules integration with Mail Logger.

Class

rules_data_type_mail
Defines the rules mail data type.

Code

function load($id) {
  return mail_logger_load($id);
}