PHP code example of whitecube / laravel-cookie-consent
1. Go to this page and download the library: Download whitecube/laravel-cookie-consent library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
whitecube / laravel-cookie-consent example snippets
'providers' => ServiceProvider::defaultProviders()->merge([
// ...
App\Providers\RouteServiceProvider::class,
// IMPORTANT: add the following line AFTER "App\Providers\RouteServiceProvider::class,"
App\Providers\CookiesServiceProvider::class,
])->toArray(),
namespace App\Providers;
use Whitecube\LaravelCookieConsent\Consent;
use Whitecube\LaravelCookieConsent\Facades\Cookies;
use Whitecube\LaravelCookieConsent\CookiesServiceProvider as ServiceProvider;
class CookiesServiceProvider extends ServiceProvider
{
/**
* Define the cookies users should be aware of.
*/
protected function registerCookies(): void
{
// Register Laravel's base cookies under the " Cookies::optional()
->name('darkmode_enabled')
->description('This cookie helps us remember your preferences regarding the interface\'s brightness.')
->duration(120)
->accepted(fn(Consent $consent, MyDarkmode $darkmode) => $consent->cookie(value: $darkmode->getDefaultValue()));
}
}
use Whitecube\LaravelCookieConsent\Facades\Cookies;
$category = Cookies::category(key: 'my-custom-category');
use Whitecube\LaravelCookieConsent\Facades\Cookies;
$category = Cookies::category(key: 'my-custom-category', maker: function(string $key) {
return new MyCustomCategory($key);
});
use Whitecube\LaravelCookieConsent\Facades\Cookies;
$category = Cookies::myCustomCategory();
return [
// ...
'categories' => [
// ...
'my-custom-category' => [
'title' => 'My custom category of cookies',
'description' => 'A short description of what these cookies are meant for.',
],
// ...
],
];
Cookies::essentials() // Targetting a category
->name('darkmode_enabled') // Defining a cookie
->description('Lorem ipsum') // Adding the cookie's description for display
->duration(120); // Adding the cookie's lifetime in minutes
use Whitecube\LaravelCookieConsent\Cookie;
Cookies::essentials() // Targetting a category
->cookie(function(Cookie $cookie) {
$cookie->name('darkmode_enabled') // Defining a cookie
->description('Lorem ipsum') // Adding the cookie's description for display
->duration(120); // Adding the cookie's lifetime in minutes
})
->cookie(function(Cookie $cookie) {
$cookie->name('high_contrast_enabled') // Defining a cookie
->description('Lorem ipsum') // Adding the cookie's description for display
->duration(60 * 24 * 365); // Adding the cookie's lifetime in minutes
});
use Whitecube\LaravelCookieConsent\Facades\Cookies;
if(Cookies::hasConsentFor('my_cookie_name')) {
// ...
}
use Whitecube\LaravelCookieConsent\CookiesManager;
class FooController
{
public function __invoke(CookiesManager $cookies)
{
if($cookies->hasConsentFor('my_cookie_name')) {
// ...
}
}
}