\Kendo\Dataviz\UI\QRCode
A PHP wrapper for Kendo UI QRCode.
Inherits from \Kendo\UI\Widget.
Usage
To use QRCode in a PHP page instantiate a new instance, configure it via the available
configuration methods and output it by echo
-ing the result of the render method.
Using Kendo QRCode
<?php
// Create a new instance of QRCode and specify its id
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
// Configure it
$qRCode->background('value')
// Output it
echo $qRCode->render();
?>
Methods
background
The background color of the QR code. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value string
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->background('value');
?>
border
The border of the QR code.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value \Kendo\Dataviz\UI\QRCodeBorder|array
Example - using \Kendo\Dataviz\UI\QRCodeBorder
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$border = new \Kendo\Dataviz\UI\QRCodeBorder();
$color = 'value';
$border->color($color);
$qRCode->border($border);
?>
Example - using array
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$color = 'value';
$qRCode->border(array('color' => $color));
?>
color
The color of the QR code. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value string
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->color('value');
?>
encoding
The encoding mode used to encode the value.The possible values are: "ISO_8859_1" - supports all characters from the ISO/IEC 8859-1 character set. or "UTF_8" - supports all Unicode characters..
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value string
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->encoding('value');
?>
errorCorrection
The error correction level used to encode the value.The possible values are: "L" - approximately 7% of the codewords can be restored.; "M" - approximately 15% of the codewords can be restored.; "Q" - approximately 25% of the codewords can be restored. or "H" - approximately 30% of the codewords can be restored..
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value string
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->errorCorrection('value');
?>
overlay
The overlay configuration which alows you to choose from predefined layouts or insert a custom image.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value \Kendo\Dataviz\UI\QRCodeOverlay|array
Example - using \Kendo\Dataviz\UI\QRCodeOverlay
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$overlay = new \Kendo\Dataviz\UI\QRCodeOverlay();
$height = 1;
$overlay->height($height);
$qRCode->overlay($overlay);
?>
Example - using array
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$height = 1;
$qRCode->overlay(array('height' => $height));
?>
padding
Sets the minimum distance in pixels that should be left between the border and the QR modules.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value float
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->padding(1);
?>
renderAs
Sets the preferred rendering engine. If it is not supported by the browser, the QRCode will switch to the first available mode.The supported values are: "canvas" - renders the widget as a Canvas element, if available. or "svg" - renders the widget as inline SVG document, if available.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value string
Example
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->renderAs('value');
?>
size
Specifies the size of a QR code in pixels (i.e. "200px"). Numeric values are treated as pixels. If no size is specified, it will be determined from the element width and height. In case the element has width or height of zero, a default value of 200 pixels will be used.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value float|string
Example - using float
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->size(1);
?>
Example - using string
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->size('value');
?>
value
Sets the value of the QRCode. More about the the value of the QRCode can be found in the Encoding documentation article.
Returns
\Kendo\Dataviz\UI\QRCode
Parameters
$value float|string
Example - using float
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->value(1);
?>
Example - using string
<?php
$qRCode = new \Kendo\Dataviz\UI\QRCode('QRCode');
$qRCode->value('value');
?>