PluginProbe ʕ •ᴥ•ʔ
Complianz – GDPR/CCPA Cookie Consent / beta
Complianz – GDPR/CCPA Cookie Consent vbeta
7.4.6 trunk 6.5.6 7.0.4 7.0.5 7.1.0 7.1.4 7.1.5 7.2.0 7.3.0 7.3.1 7.4.0 7.4.0.1 7.4.1 7.4.2 7.4.3 7.4.4 7.4.4.1 7.4.4.2 7.4.5 beta
complianz-gdpr / config / purpose.php
complianz-gdpr / config Last commit date
documents 1 year ago class-config.php 1 year ago countries.php 1 year ago index.php 1 year ago purpose.php 1 year ago warnings.php 1 year ago
purpose.php
57 lines
1 <?php
2 $this->purposes = array(
3 'contact' => __( 'Contact - Through phone, mail, email and/or webforms', 'complianz-gdpr' ),
4 'payments' => __( 'Payments', 'complianz-gdpr' ),
5 'register-account' => __( 'Registering an account', 'complianz-gdpr' ),
6 'newsletters' => __( 'Newsletters', 'complianz-gdpr' ),
7 'support-services' => __( 'To support services or products that a customer wants to buy or has purchased', 'complianz-gdpr' ),
8 'legal-obligations' => __( 'To be able to comply with legal obligations', 'complianz-gdpr' ),
9 'statistics' => __( 'Compiling and analyzing statistics for website improvement.', 'complianz-gdpr' ),
10 'offer-personalized-products' => __( 'To be able to offer personalized products and services', 'complianz-gdpr' ),
11 'selling-data-thirdparty' => __( 'To sell or share data with a third party', 'complianz-gdpr' ),
12 'deliveries' => __( 'Deliveries', 'complianz-gdpr' ),
13 );
14
15 $this->details_per_purpose_us = array(
16 'first-lastname' => __( 'A first and last name', 'complianz-gdpr' ),
17 'accountname-alias' => __( 'Account name or alias', 'complianz-gdpr' ),
18 'address' => __( 'A home or other physical address, including street name and name of a city or town', 'complianz-gdpr' ),
19 'email' => __( 'An email address', 'complianz-gdpr' ),
20 'phone' => __( 'A telephone number', 'complianz-gdpr' ),
21 'ip' => __( 'IP Address', 'complianz-gdpr' ),
22 'internet' => __( "Internet activity information, including, but not limited to, browsing history, search history, and information regarding a consumer's interaction with an Internet Web site, application, or advertisement", 'complianz-gdpr' ),
23 'geo' => __( 'Geolocation data', 'complianz-gdpr' ),
24 'marital-status' => __( 'Marital status','complianz-gdpr' ),
25 'date-of-birth' => __( 'Date of birth','complianz-gdpr' ),
26 'sex' => __( 'Sex','complianz-gdpr' ),
27 'photos' => __('Photos', 'complianz-gdpr'),
28 'social-media' => __('Social Media accounts', 'complianz-gdpr'),
29 'social-security' => __( 'A social security number', 'complianz-gdpr' ),
30 'signature' => __( 'A signature', 'complianz-gdpr' ),
31 'physical-characteristic' => __( 'Physical characteristics or description', 'complianz-gdpr' ),
32 'passport' => __( 'Passport number', 'complianz-gdpr' ),
33 'drivers-license' => __( "Driver's license", 'complianz-gdpr' ),
34 'state-id' => __( 'State identification card number', 'complianz-gdpr' ),
35 'insurance-policy' => __( 'Insurance policy number', 'complianz-gdpr' ),
36 'education' => __( 'Education information', 'complianz-gdpr' ),
37 'employment' => __( 'Professional or employment-related information', 'complianz-gdpr' ),
38 'employment-history' => __( 'Employment history', 'complianz-gdpr' ),
39 'financial-information' => __( 'Financial information such as bank account number or credit card number', 'complianz-gdpr' ),
40 'medical' => __( 'Medical information', 'complianz-gdpr' ),
41 'health-insurcance' => __( 'Health insurance information', 'complianz-gdpr' ),
42 'commercial' => __( 'Commercial information, including records of personal property, products or services purchased, obtained, or considered', 'complianz-gdpr' ),
43 'biometric' => __( 'Biometric information', 'complianz-gdpr' ),
44 'audio' => __( 'Audio, electronic, visual, thermal, olfactory, or similar information', 'complianz-gdpr' ),
45 );
46
47 $this->collected_info_children = array(
48 'name' => __( 'a first and last name', 'complianz-gdpr' ),
49 'address' => __( 'a home or other physical address including street name and name of a city or town', 'complianz-gdpr' ),
50 'email-child' => __( 'an email address from the child', 'complianz-gdpr' ),
51 'email-parent' => __( 'an email address from the parent or guardian', 'complianz-gdpr' ),
52 'phone' => __( 'a telephone number', 'complianz-gdpr' ),
53 'social-security-nr' => __( 'a Social Security number', 'complianz-gdpr' ),
54 'identifier-online' => __( 'an identifier that permits the physical or online contacting of a child', 'complianz-gdpr' ),
55 'other' => __( 'other information concerning the child or the parents, combined with an identifier as described above', 'complianz-gdpr' ),
56 );
57