QrCodeExtension.php
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/*
* (c) Jeroen van den Enden <info@endroid.nl>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Endroid\QrCode\Bundle\Twig\Extension;
use Endroid\QrCode\Factory\QrCodeFactory;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\Routing\RouterInterface;
use Twig_Extension;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Twig_SimpleFunction;
class QrCodeExtension extends Twig_Extension implements ContainerAwareInterface
{
use ContainerAwareTrait;
/**
* {@inheritdoc}
*/
public function getFunctions()
{
return [
new Twig_SimpleFunction('qrcode_url', [$this, 'qrcodeUrlFunction']),
new Twig_SimpleFunction('qrcode_data_uri', [$this, 'qrcodeDataUriFunction']),
];
}
/**
* Creates the QR code URL corresponding to the given message.
*
* @param string $text
* @param array $options
*
* @return string
*/
public function qrcodeUrlFunction($text, array $options = [])
{
$params = $options;
$params['text'] = $text;
// Extension is a mandatory route parameter: if not set retrieve from defaults
if (!isset($params['extension'])) {
$defaultOptions = $this->getQrCodeFactory()->getDefaultOptions();
$params['extension'] = $defaultOptions['extension'];
}
return $this->getRouter()->generate('endroid_qrcode', $params);
}
/**
* Creates the QR code data corresponding to the given message.
*
* @param string $text
* @param array $options
*
* @return string
*/
public function qrcodeDataUriFunction($text, array $options = [])
{
$qrCode = $this->getQrCodeFactory()->createQrCode($options);
$qrCode->setText($text);
return $qrCode->getDataUri();
}
/**
* Returns the router.
*
* @return RouterInterface
*/
protected function getRouter()
{
return $this->container->get('router');
}
/**
* Returns the QR code factory.
*
* @return QrCodeFactory
*/
protected function getQrCodeFactory()
{
return $this->container->get('endroid.qrcode.factory');
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'endroid_qrcode';
}
}