X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2Fplayvideos.php;h=0341ed593abd19cb0afb5db4a092e4bb34944dd6;hb=dea72c711ff740b3b829d238fcf85648465143a0;hp=0a80aa58c5332f8697210e64344b1b3ba89184e6;hpb=89dfc37b0aeb865bc7298836b615e2ac5b6406ce;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/playvideos.php b/plugins/playvideos/playvideos.php index 0a80aa58..0341ed59 100644 --- a/plugins/playvideos/playvideos.php +++ b/plugins/playvideos/playvideos.php @@ -6,6 +6,9 @@ * Note: this plugin adds jQuery. */ +use Shaarli\Plugin\PluginManager; +use Shaarli\Router; + /** * When linklist is displayed, add play videos to header's toolbar. * @@ -16,7 +19,15 @@ function hook_playvideos_render_header($data) { if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) { - $data['buttons_toolbar'][] = file_get_contents(PluginManager::$PLUGINS_PATH . '/playvideos/playvideos.html'); + $playvideo = array( + 'attr' => array( + 'href' => '#', + 'title' => t('Video player'), + 'id' => 'playvideos', + ), + 'html' => '► '. t('Play Videos') + ); + $data['buttons_toolbar'][] = $playvideo; } return $data; @@ -37,4 +48,13 @@ function hook_playvideos_render_footer($data) } 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.'); +}