webflorist / privacy-policy-laravel
A Privacy Policy Package for Laravel Applications. Supports german and english languages.
Installs: 1 790
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:Blade
Requires
- laravel/framework: >=5.5 <9.0.0
- webflorist/privacy-policy-text: ^1.3
Requires (Dev)
- php: ^7.4|^8.0
- orchestra/testbench: >=3.5 <7.0.0
This package is auto-updated.
Last update: 2024-11-15 05:49:24 UTC
README
This is a Laravel package providing an open source privacy policy available in german and english.
Table of Contents
Demo
An demo application using the sister-package webflorist/privacy-policy-vue with the same texts is avaliable at:
https://privacy-policy-vue-demo.netlify.app/
Features
-
Languages
Currently the package includes texts in german and english language. -
Singular/Plural
You can choose between a singular or plural point of view.
(e.g.My website...
vsOur website...
) -
Included Texts
- A general intro text
- Listing of GDPR rights
- Introduction of data controller
- General data security text (SSL, etc.)
- Cookies information
- Information on data processing of third party data processors:
- Webhosting
- Web analytics
- Interactive maps
- Sending of emails (e.g. contact forms)
- Disclaimer regarding outgoing links
- Listing of all used processors
Requirements
This package supports Laravel
from version 5.5 up until 8.x.
Installation
- Require the package via composer:
composer require webflorist/privacy-policy-laravel
- Publish config:
php artisan vendor:publish --provider="Webflorist\PrivacyPolicy\PrivacyPolicyServiceProvider"
- Configure your privacy policy with the
privacy-policy.php
file in Laravel'sconfig
folder. (see below for details). - Include the privacy policy component in your view:
@component('webflorist-privacy-policy::privacy-policy') @endcomponent
Configuration
data-controller
: array (mandatory)
Contact info for the data controller. The array can have the following elements:
[ 'organisation' => 'Acme Corporation', 'name' => 'John Doe', 'address' => 'Acme Street 1, 123456 Acme City, USA', 'email' => 'privacy@example.com', 'phone' => '+1 555-0123', ];
singular
: boolean (mandatory)
Set to true
for singular viewpoint (e.g. "My website...").
Set to false
for plural viewpoint (e.g. "Our website...").
data-processing
: array (optional)
The data processings used by your site. Each process must be stated as two-dimenstional array with the type of process as it's key and it's properties stated as a value-array.
Supported types of processes are:
webhosting
analytics
maps
send_emails
The properties of a process can be:
processor
: String (mandatory)
The key of the processor providing this processing (either one of the included ones or one stated via the processors property)service
: String (optional)
Name of the service providing this processing (e.g.Google Analytics
orGoogle Maps
)data_categories
: Array (mandatory)
Array of data categories processed by this process. Supported values are:inventory_data
usage_data
geo_data
usage_statistics
contract_data
payment_data
Here is an example for a full data_processing
config:
[ 'webhosting' => [ 'processor' => ['netlify', 'storyblok'], 'data_categories' => ['usage_data'], ], 'analytics' => [ 'processor' => 'google_eu', 'service' => 'Google Analytics', 'data_categories' => ['usage_data', 'usage_statistics'], ], 'maps' => [ 'processor' => 'google_usa', 'service' => 'Google Maps', 'data_categories' => ['usage_data', 'geo_data'], ], 'send_emails' => [ 'processor' => 'twilio_eu', 'service' => 'Twilio Sendgrid', 'data_categories' => ['usage_data', 'inventory_data'], ], ];
cookies
: array|false (mandatory)
This config describes the cookies used by your site.
If your site uses no cookies at all, simply set this to false
.
If not, divide the used cookies into first party cookies and third party ones, and list them as sub-arrays of the first_party
and third_party
arrays of the cookies
config.
Each cookie is described as an array with the following possible properties:
name
: String (mandatory)
The name of the cookiepurpose
: String (mandatory)
The key of the cookie purpose. Can be one of the following:session
: Session cookiexsrf
: Cookie to prevent "Cross-Site Request Forgery" attackshide_alert
: Cookie to prevent displaying the cookie dialog again after hiding itall_choices
: Cookie storing the choices regarding various cookies displayed in the cookie dialoganalytics_choice
: Cookie storing the choice regarding the usage of web analytics in the cookie dialogmaps_choice
: Cookie storing the choice regarding the usage of interactive mapsanalytics_third_party
: Cookies written by the web analytics toolmaps_third_party
: Cookies set on displaying interactive maps.
written_on
: String (mandatory)
When the cookie is created. Can be one of the following:every_visit
: Written on every visithide_alert
: Written on hiding the cookie dialogmaps
: Written on acknowledging the usage of interactive mapsaccept_cookies
: Written on accepting the corresponding cookies
duration
: String (mandatory)
The duration of the cookie. Can be one of the following:end_of_session
1_year
2_years
24_hours
1_minute
various
processor
: String (mandatory with third party cookies) The key of the processor providing this processing (either one of the included ones or one stated via the processors property)
Here is an example of the cookie config:
[ 'first_party' => [ [ 'name' => 'session', 'purpose' => 'session', 'written_on' => 'every_visit', 'duration' => 'end_of_session', ], ], 'third_party' => [ [ 'name' => '_ga, _gat, _gid', 'purpose' => 'analytics_third_party', 'written_on' => 'accept_cookies', 'duration' => 'various', 'processor' => 'google_eu', 'service' => 'Google Analytics', ], ], ];
processors
: array (optional)
Definition of processors stated with data processings or cookies.
Several processors are already included.
State your own ones in the processors config in an array with the shorthand-key of the processor as the key and it's info as an array with the following elements:
name
String (mandatory)
Company nameaddress
String (mandatory)
Full address of the companyprivacy_policy
String (mandatory) Link to the processors privacy policyprivacy_shield
String (optional)
Link to the privacy shield entry of the processor.
Here is and example:
[ 'acme_corp' => [ 'name' => 'Acme Corporation', 'address' => 'Acme Street 1, 123456 Acme City, USA', 'privacy_policy' => 'https://www.example.com/privacy', 'privacy_shield' => 'https://www.privacyshield.gov/participant?id=a2zt0000000TOWQAA4', ], ];
Component Slots
The webflorist-privacy-policy::privacy-policy
component provides the following named slots to insert custom text on various positions:
Disclaimer
The included text should be suitable for a GDPR-compliant website.
I however do not take any responsibility whatsowever for that.
License
This package is open-sourced software licensed under the MIT license.