X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2Fplayvideos.php;h=644845049ff6599407fc43f9c5d99a9c0d4efd81;hb=b9b41d25e319f44f9fb8259a0237a8ee81ad394b;hp=0a80aa58c5332f8697210e64344b1b3ba89184e6;hpb=840caea64f8c37f035fb3525f63153eb68492731;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/playvideos.php b/plugins/playvideos/playvideos.php index 0a80aa58..64484504 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' => 'Video player', + 'id' => 'playvideos', + ), + 'html' => '► Play Videos' + ); + $data['buttons_toolbar'][] = $playvideo; } return $data; @@ -37,4 +45,4 @@ function hook_playvideos_render_footer($data) } return $data; -} \ No newline at end of file +}