]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - plugins/playvideos/playvideos.php
Add unit tests for Playvideos plugin
[github/shaarli/Shaarli.git] / plugins / playvideos / playvideos.php
index 9918453c3f614e9e61660afafb0913a548593c2a..0a80aa58c5332f8697210e64344b1b3ba89184e6 100644 (file)
@@ -1,12 +1,20 @@
 <?php
+/**
+ * Plugin PlayVideos
+ *
+ * Add a button in the toolbar allowing to watch all videos.
+ * Note: this plugin adds jQuery.
+ */
 
 /**
  * When linklist is displayed, add play videos to header's toolbar.
  *
  * @param array $data - header data.
+ *
  * @return mixed - header data with playvideos toolbar item.
  */
-function hook_playvideos_render_header($data) {
+function hook_playvideos_render_header($data)
+{
     if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
         $data['buttons_toolbar'][] = file_get_contents(PluginManager::$PLUGINS_PATH . '/playvideos/playvideos.html');
     }
@@ -18,9 +26,11 @@ function hook_playvideos_render_header($data) {
  * When linklist is displayed, include playvideos JS files.
  *
  * @param array $data - footer data.
+ *
  * @return mixed - footer data with playvideos JS files added.
  */
-function hook_playvideos_render_footer($data) {
+function hook_playvideos_render_footer($data)
+{
     if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
         $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/jquery-1.11.2.min.js';
         $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/youtube_playlist.js';