X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2Fplayvideos.php;h=2f4b0a3167c2c3510ec149c58337bf0af1bdd360;hb=c8f0a06d801d1e6405f5d86b45ba5967a6569c8c;hp=7645b778b9c1c2f7768be95658c6cc6ae84d598b;hpb=cac0ea87be6326271993c958788afbd244815ef1;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/playvideos.php b/plugins/playvideos/playvideos.php index 7645b778..2f4b0a31 100644 --- a/plugins/playvideos/playvideos.php +++ b/plugins/playvideos/playvideos.php @@ -16,7 +16,13 @@ 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( + 'href' => '#', + 'title' => 'Video player', + 'id' => 'playvideos', + 'html' => '► Play Videos' + ); + $data['buttons_toolbar'][] = $playvideo; } return $data;