Jump to content

Supplement User Registration


OlivaDevelop

Recommended Posts

Hello, I have a problem that I can not solve. I need to populate a table created by me on the prestashop database at the time that a user register. The fact is that I can not do and however much we seek, I not found nothing in google or prestashop forums. I wonder which is the file that records a user and add in that function or method to my table records.

Link to comment
Share on other sites

are you doing this via your own module?  if so, just hook into actionCustomerAccountAdd, and do whatever you need to do there.  if not, you want to look at the AuthController.php, but that would mean editing a core file which is not advisable.

Link to comment
Share on other sites

Thanks for answering.

I have not explained well. I'm developing an app and I must fill a table with additional information to the customer record, that is, while you register, fill in the table using the customer id.

Example:
new user -> fill out the registration form -> prestashop does what it has already done once or after inserting the user, populate the table.

 

Do not use any own or foreign module to do this.

Link to comment
Share on other sites

After much testing, I have risked and have modified the function add() of class customer and have added the lines to create the records to the table that desire using:

if ($ success) {
     Db :: getInstance () -> execute ("INSERT INTO table (FIELDS) VALUES (VALUES);
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...