Closed (fixed)
Project:
Signup
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
24 Feb 2008 at 21:08 UTC
Updated:
17 Oct 2009 at 00:50 UTC
Jump to comment: Most recent file
Hello there!
I would like to know if there´s a way of asigning each user that signs up a unique and personal number.
So this way, if you have an event for, let´s say 150 people, and then it closes up, people that subscribe, could get a "seat" number.
This number could be emailed to both the attendee and the organizer, so when people arrives they just give their number, for faster and more accurate search and check on the spot.
Thanks!
Rosamunda
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | 226204-6.signup-id-token.patch | 1.2 KB | dww |
Comments
Comment #1
Rosamunda commentedKeeping it alive...
Comment #2
webmasterkai commentedThe Signup Status module has "Signup Status Certificates: Grant certificates to users based on their status." The token module is required.
Comment #3
dwwTo clarify, you mean a unique number per node, right? Thanks to #341382: Add primary key to signup_log table there's now a globally unique signup id number for each node/user pair. Is that all you need?
Comment #4
dww#592406: Signup - any way to return a unique identifying number in the return email? is asking about this, too. I'll answer here. We have a globally unique number across your entire site already. It's just the signup ID, which is a serial column in the DB. However, that's not exposed as a token, so there's no good way to access it in an email or something.
We do *not* have a per-node serial number at this time. If we actually needed that for some reason, we'd have to implement it another way.
Comment #5
steve02476 commentedA globally unique number is fine but I guess it would need to be exposed as a token for me to be able to use it. Thanks!
Comment #6
dwwThen apply this (trivial) patch, install token, and give it a try.
Comment #7
steve02476 commentedThanks DWW, that did it!
I had to review how to apply a patch from info in: http://drupal.org/patch/apply
Once I did that, I went to the Signups / Settings tab on my form, and inserted [signup-id] in the confirmation email text box.
The email now shows a serial number. Much appreciated. -Steve
Comment #8
dwwCommitted to HEAD and DRUPAL-6--1.