bnomei / kirby3-qrcode
Generate QRCodes. The included Panel-Field will show the QRCode and trigger download on click.
Fund package maintenance!
bnomei
Patreon
buymeacoff.ee/bnomei
paypal.me/bnomei
Installs: 2 756
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 3
Forks: 3
Open Issues: 5
Type:kirby-plugin
Requires
- php: >=8.0
- endroid/qr-code: ^4.3
- getkirby/composer-installer: ^1.1
Requires (Dev)
- getkirby/cms: ^3.2
- php-coveralls/php-coveralls: ^2.1
- phpunit/phpunit: ^9.5
Suggests
- bnomei/kirby3-janitor: Provides tools to add a custom Panel button to trigger download of ICS/CSV/QRCode Files
This package is auto-updated.
Last update: 2024-10-23 17:10:21 UTC
README
Generate QRCodes easily. The included Panel-Field will show the QRCode and trigger download on click.
Commerical Usage
Support open source!
This plugin is free but if you use it in a commercial project please consider to sponsor me or make a donation.
If my work helped you to make some cash it seems fair to me that I might get a little reward as well, right?
Be kind. Share a little. Thanks.
‐ Bruno
Installation
- unzip master.zip as folder
site/plugins/kirby3-qrcode
or git submodule add https://github.com/bnomei/kirby3-qrcode.git site/plugins/kirby3-qrcode
orcomposer require bnomei/kirby3-qrcode
Usecase
Raw PHP
$qrcodeObject = new \Bnomei\QRCode([ 'Text' => 'https://github.com/bnomei/kirby3-qrcode', ]); echo $qrcodeObject->html('qrcode-plugin.png');
Page Method
site/templates/default.php
// base64 encoded png image tag // with $page->url() as Text echo $page->qrcode()->html( $page->slug() . '.png' // image format detected from extension );
Save as File in Page Object
When saving you can in addtion to the filename provide additional content data for the file or force an overwrite (which will change UUID and media hash) with additional function params. The logic will use the currently logged-in user or impersonate as kirby
to create the file.
site/templates/default.php
$qrcodeFilename = $page->slug() . '.png'; $file = $page->file($qrcodeFilename); if (!$file) { // short version $file = $page->qrcode()->save( $qrcodeFilename ); // with all params $file = $page->qrcode()->save( $qrcodeFilename, 'myfiletemplate', // or null [/* my content data array */], true // force overwrite ); } echo $file; // outputs a img tag
Why not overwrite file by default? Let's assume you want to send the qrcode by email. Then you do not want to overwrite later because that would change the media hash and break the URL to the image send within the email.
Could I not embed the qrcode inline using base-64 encoding? Technically yes, but almost no email clients would render it.
Trigger download
site/templates/default.qr.php
$page->qrcode()->download( $page->slug() . '.png' );
Further customization of the generated image
Advanced options can be set.
echo $page->qrcode([ 'margin' => 10, 'encoding' => 'UTF-8', 'foregroundColor' => new \Endroid\QrCode\Color\Color(0, 0, 0), 'backgroundColor' => new \Endroid\QrCode\Color\Color(255, 255, 255), 'labelText' => 'Scan the code', 'logoPath' => __DIR__.'/../assets/images/getkirby.png', 'size' => 200, ])->html( $page->slug() . '.png' );
TIP: You could move that options array for frontend rendering into a config value or reuse the option('bnomei.qrcode.field') which defines the look inside the panel.
Panel Field: Url of Page/File as QRCode
Add the field to a blueprint. This will show the QRCode as PNG image and will trigger the download of the file on click.
site/blueprints/default.yml
fields: # current page qrcode: qrcode qrcode2: type: qrcode title: Text below image # title with query qrcode3: type: qrcode title: "{{ page.title }}" # custom url qrcode4: type: qrcode title: Panel Url of {{ page.title }} url: "{{ page.panel.url }}" # custom url and custom filename with | qrcode4: type: qrcode title: Issue 7 url: "https://github.com/bnomei/kirby3-qrcode/issues/7|Issue 7"
You can define the options how the qrcode field shows the image inside the panel in your config file. Example:
site/config/config.php
<?php return [ // other options... // set values for qrcode inside the panel 'bnomei.qrcode.field' => [ 'foregroundColor' => new \Endroid\QrCode\Color\Color(126, 154, 191), 'backgroundColor' => new \Endroid\QrCode\Color\Color(239, 239, 239), 'size' => 128, 'margin' => 0, ], ];
You can also reuse this in your frontend code like so:
$page->qrcode(option('bnomei.qrcode.field', []))->download( $page->slug() . '.png' );
Dependencies
Disclaimer
This plugin is provided "as is" with no guarantee. Use it at your own risk and always test it yourself before using it in a production environment. If you find any issues, please create a new issue.
License
It is discouraged to use this plugin in any project that promotes racism, sexism, homophobia, animal abuse, violence or any other form of hate speech.
Credits
based on V2 versions of