You are here

function rules_data_type_hybridauth::load in HybridAuth Social Login 6.2

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

./hybridauth.rules.inc, line 30
Functions for integrating the Rules module with HybridAuth.

Class

rules_data_type_hybridauth
Defines the rules hybridauth data type.

Code

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