X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2Fplayvideos.php;h=c6d6b0cc6815e4f5c2547efdc395a67ccde08e3d;hb=1004742f09b55ff781c13745781b9a7e90986faa;hp=7645b778b9c1c2f7768be95658c6cc6ae84d598b;hpb=eec3666ba60b20f1db054102ccbd618d3bb79594;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/playvideos.php b/plugins/playvideos/playvideos.php index 7645b778..c6d6b0cc 100644 --- a/plugins/playvideos/playvideos.php +++ b/plugins/playvideos/playvideos.php @@ -16,7 +16,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; @@ -38,3 +46,12 @@ function hook_playvideos_render_footer($data) return $data; } + +/** + * 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.'); +}