header-xh-01 header-xh-02 header-xh-03 header-xh-04 header-xh-05 header-xh-06 header-xh-07 header-xh-08 header-xh-09 header-xh-10 header-xh-11 header-xh-12 header-xh-13 header-xh-14
Lembach's nichtkommerzielle Website rund um CMSimple_XH
Templates, Plugins, Tools, Programme
und Tips und Tricks die mir wichtig sind
Sie sind hier: Startseite > Plugins > SimplePlugins_XH Edition KRL > Function add_qrcode
Letzte Bearbeitung:

Function add_qrcode

Useage : {{­{add_qrcode($string[,$size]);}}}
Example : {­{{add_qrcode('http://cmsimple-jp.org',80);}}}

Ausgabe des definierten Textes als QR-Code in der festgelegten Größe.

{­{{add_qrcode("https://lembach-cmsimple.de",160);}}­} ⇒ QR Code

 

Dateiname: ./plugins/simpleplugins_xh/simpleplugins_library/add_qrcode/index.php

<?php

/*****************************************************
* Category : CMSimple_XH
* Typ : CMSimple Plugin
* Package : simpleplugins_xh Edition KRL
*****************************************************
* Function name : add_qrcode
* File name : index.php
* Version : 0.1
* Build : 20240206
* Autor : Takashi Uchiyama <http://cmsimple-jp.org>
* Lizenz : GPLv3 or CC-by-SA https://creativecommons.org/licenses/by-sa/4.0/deed.de
* Function : Display the QR code
******************************************************
* Useage : {{{add_qrcode($string[,$size]);}}}
* Example : {{{add_qrcode('http://cmsimple-jp.org',80);}}}
******************************************************/

/*
* Prevent direct access.
*/
if (!defined('CMSIMPLE_XH_VERSION')) {
header('HTTP/1.0 403 Forbidden');
exit;
}


function add_qrcode($url , $size = 80) {
return '<img src="https://chart.googleapis.com/chart?chs=' . $size . 'x' . $size . '&cht=qr&chl=' . $url . '&choe=UTF-8 " alt="QR Code"/>';
}
?>

| Seitenanfang |