You are here

function subuser_switch_user_operations in Subuser 7.2

Same name and namespace in other branches
  1. 8 switch/subuser_switch.module \subuser_switch_user_operations()

Implements hook_user_operations().

File

switch/subuser_switch.module, line 42
Provides primary Drupal hook implementations.

Code

function subuser_switch_user_operations() {
  return array(
    'subuser_switch' => array(
      'label' => t('Switch to user'),
      'callback' => 'subuser_switch_user_operations_switch',
    ),
  );
}