]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - plugins/qrcode/qrcode.php
namespacing: \Shaarli\Router
[github/shaarli/Shaarli.git] / plugins / qrcode / qrcode.php
CommitLineData
14c8efbe 1<?php
abb3ff38
A
2/**
3 * Plugin qrcode
4 * Add QRCode containing URL for each links.
5 * Display a QRCode icon in link list.
6 */
14c8efbe 7
a932f486
V
8use Shaarli\Router;
9
14c8efbe
A
10/**
11 * Add qrcode icon to link_plugin when rendering linklist.
12 *
abb3ff38
A
13 * @param array $data - linklist data.
14 *
14c8efbe
A
15 * @return mixed - linklist data with qrcode plugin.
16 */
17function hook_qrcode_render_linklist($data)
18{
19 $qrcode_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.html');
20
21 foreach ($data['links'] as &$value) {
a0ab3c3f
V
22 $qrcode = sprintf(
23 $qrcode_html,
49e62f22
A
24 urlencode($value['url']),
25 $value['url'],
26 PluginManager::$PLUGINS_PATH
27 );
14c8efbe
A
28 $value['link_plugin'][] = $qrcode;
29 }
30
31 return $data;
32}
33
34/**
35 * When linklist is displayed, include qrcode JS files.
36 *
37 * @param array $data - footer data.
abb3ff38 38 *
14c8efbe
A
39 * @return mixed - footer data with qrcode JS files added.
40 */
41function hook_qrcode_render_footer($data)
42{
43 if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
44 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/shaarli-qrcode.js';
45 }
46
47 return $data;
abb3ff38 48}
28a4fc54
A
49
50/**
51 * When linklist is displayed, include qrcode CSS file.
52 *
53 * @param array $data - header data.
54 *
55 * @return mixed - header data with qrcode CSS file added.
56 */
57function hook_qrcode_render_includes($data)
58{
59 if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
60 $data['css_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.css';
61 }
62
63 return $data;
64}
12266213
A
65
66/**
67 * This function is never called, but contains translation calls for GNU gettext extraction.
68 */
69function qrcode_dummy_translation()
70{
71 // meta
72 t('For each link, add a QRCode icon.');
73}