]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - plugins/qrcode/qrcode.php
4571285986dce3d41f14687b3efa949aab338f36
[github/shaarli/Shaarli.git] / plugins / qrcode / qrcode.php
1 <?php
2 /**
3 * Plugin qrcode
4 * Add QRCode containing URL for each links.
5 * Display a QRCode icon in link list.
6 */
7
8 use Shaarli\Plugin\PluginManager;
9 use 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 */
18 function hook_qrcode_render_linklist($data)
19 {
20 $qrcode_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.html');
21
22 $rootPath = preg_replace('#/index\.php$#', '', $data['_BASE_PATH_'] ?? '');
23 $path = $rootPath . '/' . PluginManager::$PLUGINS_PATH;
24 foreach ($data['links'] as &$value) {
25 $qrcode = sprintf(
26 $qrcode_html,
27 $value['url'],
28 $path
29 );
30 $value['link_plugin'][] = $qrcode;
31 }
32
33 return $data;
34 }
35
36 /**
37 * When linklist is displayed, include qrcode JS files.
38 *
39 * @param array $data - footer data.
40 *
41 * @return mixed - footer data with qrcode JS files added.
42 */
43 function hook_qrcode_render_footer($data)
44 {
45 if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
46 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/shaarli-qrcode.js';
47 }
48
49 return $data;
50 }
51
52 /**
53 * When linklist is displayed, include qrcode CSS file.
54 *
55 * @param array $data - header data.
56 *
57 * @return mixed - header data with qrcode CSS file added.
58 */
59 function hook_qrcode_render_includes($data)
60 {
61 if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
62 $data['css_files'][] = PluginManager::$PLUGINS_PATH . '/qrcode/qrcode.css';
63 }
64
65 return $data;
66 }
67
68 /**
69 * This function is never called, but contains translation calls for GNU gettext extraction.
70 */
71 function qrcode_dummy_translation()
72 {
73 // meta
74 t('For each link, add a QRCode icon.');
75 }