You are here

function rules_data_type_shout::load in Heartbeat 6.4

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

modules/shouts/shouts.rules.inc, line 46
shouts.rules.inc.

Class

rules_data_type_shout
Defines the shout data type.

Code

function load($shout_id) {
  return shout_load($shout_id);
}