You are here

function userpoints_views_views_arguments in User Points 5.2

Same name and namespace in other branches
  1. 5.3 userpoints_views.module \userpoints_views_views_arguments()

File

./userpoints_views.module, line 151

Code

function userpoints_views_views_arguments() {
  $arguments = array(
    'userpoints_uid' => array(
      'name' => t('Userpoints: User ID'),
      'handler' => 'views_handler_arg_userpoints_uid',
      'option' => 'integer',
      'help' => t('The User ID argument allows to filter userpoints transactions by the specified user ID.'),
    ),
  );
  return $arguments;
}