-
Book Overview & Buying
-
Table Of Contents
Modular Programming with PHP 7
By :
Following the high level application requirements, defined under Chapter 4, Requirement Specification for Modular Web Shop App, our module will have a single Customer entity defined.
The Customer entity includes the following properties:
id: integer, auto-increment
email: string, unique
username: string, unique, needed for login system
password: string
first_name: string
last_name: string
company: string
phone_number: string
country: string
state: string
city: string
postcode: string
street: string
Throughout this chapter, aside from just adding the Customer entity and its CRUD pages, we also need to address the creation of login, register, forgot your password pages, as well as override a core module service responsible for building a customer menu.