Add unit tests for the QRCode plugin

+ coding style
This commit is contained in:
ArthurHoaro 2015-11-07 16:13:08 +01:00
parent 14c8efbe31
commit abb3ff38f5
2 changed files with 76 additions and 4 deletions
plugins/qrcode

View file

@ -1,11 +1,15 @@
<?php
// TODO: Can't be tested in localhost
/**
* Plugin qrcode
* Add QRCode containing URL for each links.
* Display a QRCode icon in link list.
*/
/**
* Add qrcode icon to link_plugin when rendering linklist.
*
* @param $data - linklist data.
* @param array $data - linklist data.
*
* @return mixed - linklist data with qrcode plugin.
*/
function hook_qrcode_render_linklist($data)
@ -24,6 +28,7 @@ function hook_qrcode_render_linklist($data)
* When linklist is displayed, include qrcode JS files.
*
* @param array $data - footer data.
*
* @return mixed - footer data with qrcode JS files added.
*/
function hook_qrcode_render_footer($data)
@ -33,4 +38,4 @@ function hook_qrcode_render_footer($data)
}
return $data;
}
}