function user_action_info
Same name and namespace in other branches
- 6.x drupal-6.x/modules/user/user.module \user_action_info()
Implements hook_action_info().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 3668 - Enables the user registration and login system.
Código
function user_action_info() {
return array(
'user_block_user_action' => array(
'label' => t('Block current user'),
'type' => 'user',
'configurable' => FALSE,
'triggers' => array('any'),
),
);
}