Download the PHP package friends-of-contao/contao-privacy without Composer

On this page you can find all versions of the php package friends-of-contao/contao-privacy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package contao-privacy

Contao Privacy

About

This extension provides some privacy features to Contao 3.5.x and 4.4.x (4.5.x). If you have some ideas which we should add or change in the mentioned Contao versions, feel free to create an issue.

We would be pleased, if you could help us with ideas, code snippets or maybe with a small sum of money (> 50 € net). You also can join the project for active working on the features. Please send us an email if you want to help us.

Integrations

New registration module (GDPR)

Adds a privacy policy consent registration module with checkbox and individual legend and label text. Please Note: You'll need to check the checkbox at editble fields additionally otherwise the text is not visible at the module in the front end.

Hook

The addPrivacyWidget hook is executed when a user opens the privacy overview page in backend. Extension developers can simply add informations to the overview page.

// config.php
$GLOBALS['TL_HOOKS']['addPrivacyWidget'][] = array('MyClass', 'myAddPrivacyWidget');

// MyClass.php
public function myAddPrivacyWidget($arrWidgets)
{
    // Any Code
}

Example data for widget

    $arrWidgets[] = array(
        'title' => 'friends-of-contao/contao-privacy',
        'content' => 'Es werden keine datenschutzrelevanten Informationen erhoben.',
        'class' => 'green icon'
    );

You can use green, red, orange and gray in widget class for highlighting.

Video Splash Image for YouTube and Vimeo

We added an option for YouTube and Vimeo to add a splash image before loading the video.

Analytics opt-out

Provides an "opt-out" button via a front end module. This button simply sets (or removes) an analyticsOptOut cookie, which you can then use in your analytics_* templates (or anywhere else) like this for example:

Optionally this module also allows you to remove all cookies for this domain, with the exception of some pre-defined cookies like the session cookie (if active) or a custom list of cookies to keep.

YouTube no-cookie

Added a checkbox to the YouTube module to switch between standard and no-cookie embedment variant.

Copyright

This project has been created and is maintained by friends-of-contao

Thank you

christianbarkowsky - BRKWSKY - donating code and ideas

fritzmg - Wiesmüller & Gschwantner OG - donating code and ideas

MDevster - pdir GmbH - donating code and ideas

davidmaack - MEN AT WORK Werbeagentur GmbH - donating code and ideas

leofeyer - Feyer Media GmbH & Co. KG - donating code and ideas

frontendschlampe - hofff.com - donating ideas and management tasks

Pellinger - twobox.com - donating 50 € net

anonym - donating 100 € net

Manuel Mederer - VILINGO - donating 50 € net

Julia Hauser - Jumedia Webagentur GmbH - donating 100 € net

If you want to extend the list, feel free to send us an email.


All versions of contao-privacy with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
contao/core-bundle Version 4.4.* || 4.5.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package friends-of-contao/contao-privacy contains the following files

Loading the files please wait ....