| 1 |
<?php |
| 2 |
/** |
| 3 |
* Client Fields Constants |
| 4 |
* |
| 5 |
* @package Easy_Invoice |
| 6 |
* @subpackage Constants |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace EasyInvoice\Constants; |
| 10 |
|
| 11 |
/** |
| 12 |
* ClientFields Class |
| 13 |
* |
| 14 |
* Defines all the field names used for client data storage. |
| 15 |
*/ |
| 16 |
class ClientFields { |
| 17 |
// Basic Information |
| 18 |
public const BUSINESS_CLIENT_NAME = '_easy_invoice_client_business_client_name'; |
| 19 |
public const EMAIL = '_easy_invoice_client_email'; |
| 20 |
public const USERNAME = '_easy_invoice_client_username'; |
| 21 |
public const PASSWORD = '_easy_invoice_client_password'; |
| 22 |
|
| 23 |
// Contact Information |
| 24 |
public const ADDRESS = '_easy_invoice_client_address'; |
| 25 |
public const EXTRA_INFO = '_easy_invoice_client_extra_info'; |
| 26 |
public const FIRST_NAME = '_easy_invoice_client_first_name'; |
| 27 |
public const LAST_NAME = '_easy_invoice_client_last_name'; |
| 28 |
public const WEBSITE = '_easy_invoice_client_website'; |
| 29 |
public const PHONE = '_easy_invoice_client_phone'; |
| 30 |
} |