承接 gmazzap/gm-cookie-policy 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gmazzap/gm-cookie-policy

Composer 安装命令:

composer require gmazzap/gm-cookie-policy

包简介

A simple plugin to show a message for compliance with EU cookie law.

README 文档

README

A simple plugin to show a message for compliance with EU cookie law.

Support Composer, but does not require it. Requires PHP 5.4+.

Mainly developer-oriented, for basic needs can also be used by non-devs: basic configuration are available via UI, but advanced customization only via hooks.

Why yet another "cookie policy" plugin?

There're a few plugins that aim to do same thing, but I needed a plugin that:

  • supports Composer natively
  • works with javascript disabled
  • provides a PHP API to be informed if current user accepted the policy
  • provides a javascript API to be informed if current user accepted the policy, and also capable to notify other scripts in the moment the user accepts the policy
  • doesn't do too much
  • doesn't have dozen of options
  • is not too "promotional"

And I could not found one that meets all the above requirements. So I wrote it.

Usage

After activation, a sub-menu will be added under the "Tools" main menu.

In the setting page accessible from there is possible to set the cookie policy notice message and few other basic options.

Many other customizations can be done via hooks.

PHP API

When the plugin is active you can be informed if user accepted the policy via a filter:

$accepted = apply_filters('cookie-policy-accepted', false);

This way, anything that make use of "profiling cookies" can be disabled / not loaded when $accepted is false, fully applying EU law.

Since it is a filter, it does not lock-in to the plugin. Even if the plugin is disabled any code that relies on the filter above will not crash if plugin is not there.

However, PHP can reload page components (e.g. ads) when the user clicks the link to accept the policy (at least not without making another request), this is why there's also a javascript API.

javascript API

Making it short, the variable window.cookiePolicy.accepted is a boolean that is set to true when the user accepted the policy.

There are two custom events that scripts can listen to check that variable and acting accordingly.

The first event is cookie-policy-loaded, it happens right after the document is fully loaded.

jQuery(document).on('cookie-policy-loaded', function() {
    var cookiePolicy = window.cookiePolicy || { accepted: false };
    if (cookiePolicy.accepted) {
      // page just loaded, this is a returning user that already accepted policy before
    } else {
      // this user has not accepted policy yet, they might be just landed to website
    }
});

The other event is cookie-policy-accepted, that is triggered after the user accepted the policy:

jQuery(document).on('cookie-policy-accepted', function() {
    var cookiePolicy = window.cookiePolicy || { accepted: false };
    if (cookiePolicy.accepted) {
      // user just accepted policy, excellent, release the hounds :)
    } else {
      // this should never happen, if it does, something went wrong with javascript
    }
});

Just like PHP API, neither javascript API lock-in to the plugin. It is possible to disable the plugin without breaking anything and also replace the plugin with some other script that may trigger same events and set same variable for 100% backward compatibility.

Translations

The plugin comes with some translation:

  • Italian
  • Romanian (by @rmdiaconu)

PRs with more translations are welcome.

License

MIT.

gmazzap/gm-cookie-policy 适用场景与选型建议

gmazzap/gm-cookie-policy 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 845 次下载、GitHub Stars 达 12, 最近一次更新时间为 2016 年 04 月 20 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「wordpress」 「cookie」 「cookie policy」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 gmazzap/gm-cookie-policy 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 gmazzap/gm-cookie-policy 我们能提供哪些服务?
定制开发 / 二次开发

基于 gmazzap/gm-cookie-policy 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 845
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 14
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-04-20