You are here

function message_data_type_message_instance::load in Message 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

includes/message.rules.inc, line 59
Rules integration for the Message module.

Class

message_data_type_message_instance
Defines the message instance data type.

Code

function load($iid) {
  return message_instance_load($iid);
}