Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to work with the Entity Registration module in Drupal 7?

I am working on Entity Registration module in my Drupal 7 site. I have created the entity-type and have also added fields, but now I am stuck at the point where I have to create the registrants and display the registration form on my site.

Any suggestions to get me going?

like image 308
user3165429 Avatar asked Feb 14 '23 03:02

user3165429


2 Answers

According to the community documentation of Entity Registrations module:

  • Create at least one registration bundle (or type) at admin/structure/registration/registration_types, much like you would a content type.
  • Add a registration field to any entity you want to enable registrations for. Note the display options: default, link to the registration form, and embedding the actual form.
  • When you add or edit an entity, select the registration bundle you want to use for.
  • Registrations are now enabled for the entity and you can configure the registration settings via a local task.
like image 180
Nadeem Khan Avatar answered Feb 15 '23 16:02

Nadeem Khan


Some details about the Entity Registration (from its project page), that may help to get you going with this great module:

A quick outline of how it works:

  • You create a registration type, and add Drupal fields (like shoe size or meal preference) to it for information you want to gather from registrants

  • On some entity that you want to allow registrations for (maybe an "event" content type), add a custom field of type "Registration"

  • Create an instance of that entity, and select one of the registration types you created in the Registration field.

  • Start taking registrations when viewing your entity!

There are additional settings, but that is the basic outline: just create a registration type or two, give your entity a registration field, and point it at one of your registration types.

For more detailed instructions, do NOT refer to the README (as suggested on its project page) since that link doesn't work ... Instead use the Read documentation link (also on the project page), which is the community documentation about this module.

Also have a look at the video about Drupal 7 Entity Registration Module for a great introduction to it.

PS: This module is all about entities. So it should also work together with the Rules module pretty well.

like image 43
Pierre.Vriens Avatar answered Feb 15 '23 17:02

Pierre.Vriens