You are here

function hook_connector_action in Connector 7

Define custom actions.

After a succesfull connection, these callbacks are used. See submodule connector_action_default_register_form for an example.

1 function implements hook_connector_action()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

connector_connector_action in ./connector.module
1 invocation of hook_connector_action()
connector_actions in ./connector.module

File

./connector.api.php, line 57
Hooks provided by the Connector module.

Code

function hook_connector_action() {
  return array(
    'default' => array(
      'login callback' => '_connector_log_in',
      'create account callback' => '_connector_create_account',
      'add connection callback' => '_connector_add_connection',
      'no external uid' => NULL,
    ),
  );
}