PluginProbe
Easy Invoice – Invoice Generator, PDF Quotes & Payments / 2.3.7
Easy Invoice – Invoice Generator, PDF Quotes & Payments v2.3.7
2.4.0 2.4.1 2.3.8 2.3.7 2.3.6 2.3.5 2.3.4 2.3.3 2.3.2 2.3.1 2.2.0 2.1.21 2.1.20 2.1.19 2.1.18 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.2 All 57 releases
easy-invoice / includes / Constants / ClientFields.php

ClientFields.php in Easy Invoice – Invoice Generator, PDF Quotes & Payments 2.3.7, at includes/Constants/ClientFields.php

30 lines 932 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }