]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - plugins/qrcode/qrcode.php
Process main page (linklist) through Slim controller
[github/shaarli/Shaarli.git] / plugins / qrcode / qrcode.php
... / ...
CommitLineData
1<?php
2/**
3 * Plugin qrcode
4 * Add QRCode containing URL for each links.
5 * Display a QRCode icon in link list.
6 */
7
8use Shaarli\Plugin\PluginManager;
9use Shaarli\Render\TemplatePage;
10
11/**
12 * Add qrcode icon to link_plugin when rendering linklist.
13 *
14 * @param array $data - linklist data.
15 *
16 * @return mixed - linklist data with qrcode plugin.
17 */
18function hook_qrcode_render_linklist($data)
19{
20 $qrcode_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.html');
21
22 foreach ($data['links'] as &$value) {
23 $qrcode = sprintf(
24 $qrcode_html,
25 $value['url'],
26 PluginManager::$PLUGINS_PATH
27 );
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.
38 *
39 * @return mixed - footer data with qrcode JS files added.
40 */
41function hook_qrcode_render_footer($data)
42{
43 if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
44 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/shaarli-qrcode.js';
45 }
46
47 return $data;
48}
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_'] == TemplatePage::LINKLIST) {
60 $data['css_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.css';
61 }
62
63 return $data;
64}
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}