X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2Fplayvideos.php;h=c6d6b0cc6815e4f5c2547efdc395a67ccde08e3d;hb=1004742f09b55ff781c13745781b9a7e90986faa;hp=9918453c3f614e9e61660afafb0913a548593c2a;hpb=b17c19ff76dc63b9ad10d26b244630b59e691e5c;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/playvideos.php b/plugins/playvideos/playvideos.php index 9918453c..c6d6b0cc 100644 --- a/plugins/playvideos/playvideos.php +++ b/plugins/playvideos/playvideos.php @@ -1,14 +1,30 @@ array( + 'href' => '#', + 'title' => t('Video player'), + 'id' => 'playvideos', + ), + 'html' => '► '. t('Play Videos') + ); + $data['buttons_toolbar'][] = $playvideo; } return $data; @@ -18,13 +34,24 @@ 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'; } return $data; -} \ No newline at end of file +} + +/** + * This function is never called, but contains translation calls for GNU gettext extraction. + */ +function playvideos_dummy_translation() +{ + // meta + t('Add a button in the toolbar allowing to watch all videos.'); +}