Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Free form (for event registration - member access only)
Hi,
I'm looking for an add on allowing members of my vanilla forum to registrer to the events we are organizing.
From a technical point of view, I need following information :
- identification of the member that does the registration (can be an Id Nr like in Invite-Only System Add-on)
- last name and first name of the person to registrer
- date and time of the event (from a list of value - can be in the index.php file of the add on)
I need a way to reset values after the event (but I can do that directy in SQL if no other solution)
I would also see a page showing, per date and time (of an event), the list of the registrer persons
Has someboby work on something like that ?
Many thanks in advance. Klod
0
This discussion has been closed.
Comments
You could then put this code at the very top of the page (before the HTML) which will send them elsewhere if they are not logged in...
<?php if ($this->Context->Session->UserID == 0) { $URL="http://path.to.forum/?Page=elsewhere"; header ("Location: $URL"); } ?>
Note that "elsewhere" is another Page Manager page telling them they need to be signed in (and therefore a member) to proceed.
Posted: Tuesday, 17 July 2007 at 12:56PM