cakephp-fr/cookie-warning

CookieWarning plugin for CakePHP

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 0

Open Issues: 0

Type:cakephp-plugin

dev-master 2016-02-05 15:18 UTC

This package is auto-updated.

Last update: 2024-03-21 21:53:43 UTC


README

Build Status Latest Stable Version Minimum PHP Version License Total Downloads

Installation

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require cakephp-fr/cookie-warning

Then, enable the plugin in your config/bootstrap.php file:

bin/cake plugin load -rb Recaptcha

You can check that this command has created the line Plugin::load('Recaptcha', ['routes' => true, 'bootstrap' => true]); at the bottom of your config/boostrap.php file.

Add a config for the plugin in your config/app.php:

return [
    //other configs before ...
    /**
     * The time after which CookieWarning cookie expires
     */
    'CookieWarning' => [
        'expire' => env('COOKIE_WARNING_EXPIRE', strtotime('+13 months'))
    ]
];

Usage

License

The MIT License (MIT)

Copyright (c) 2015-2016

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.