Magento validation method recorded in database

Is the Magento validation method anywhere in the database.

I know the value can be accessed during the session, i.e. in register, guest, etc., but after the order is placed, is the value written anywhere?

0


source to share


2 answers


The verification method is stored in the table sales_flat_quote

in the field customer_is_guest

. A value of 1 indicates that the client has verified using the guest verification option. A value of 0 indicates that the client has verified their account. You can access the quote using your ID from the order object.



0


source


Anton S gave a good answer, but if you need more help viewing tables and their fields in a Magento database, this is a really useful tool.

http://www.magereverse.com/



Just select your Magento version and then start selecting tables. This gives you correlations between different fields in tables, which can be useful when tracking entity data.

Hope this helps!

0


source







All Articles