wernerkrauss/silverstripe-qr-generator

A module that renders a QR-Code for the current Page / DataObject

0.0.1 2017-07-18 13:48 UTC

This package is auto-updated.

Last update: 2024-03-21 20:16:55 UTC


README

Installation

composer require wernerkrauss/silverstripe-qr-generator

Requirements

  • Silverstripe and Silverstripe CMS > 3.6, should work on 3.1 (untested)

How it works

At the moment this module only generates QR codes for absolute links to the current Page. It utilizes AbsoluteLink() to get the content to encode. The codes are cached as png files in /assets/qr/

You can either include the code inline or as a source. Both will work out of the box:

Inline QR Code

<img alt="Scan me" src="data:image/png;base64,$QRCodeBase64" />

Linked Image

<img alt="Scan me" src="$QRCodeURL" />

Todo

  • More pre-defined formats with wrapper, e.g. calendar item, address...
  • create a Subclass of ViewableData that wraps the generated QR code and can be modified in templates
  • make cache dir configurable
  • make name generation configurable; e.g. check for locale or subsites