logintoboggan_rules.rules.inc in LoginToboggan 6
Same filename and directory in other branches
File
contrib/logintoboggan_rules/logintoboggan_rules.rules.incView source
<?php
/**
* Implement hook_rules_event_info().
* @ingroup rules
*/
function logintoboggan_rules_rules_event_info() {
return array(
'logintoboggan_validated' => array(
'label' => t("When the user account is validated."),
'module' => 'LoginToboggan',
'arguments' => array(
'account' => array(
'type' => 'user',
'label' => t("The validated user's account"),
),
),
),
);
}
Functions
Name | Description |
---|---|
logintoboggan_rules_rules_event_info | Implement hook_rules_event_info(). |