]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - plugins/playvideos/playvideos.php
namespacing: \Shaarli\Router
[github/shaarli/Shaarli.git] / plugins / playvideos / playvideos.php
index 7645b778b9c1c2f7768be95658c6cc6ae84d598b..bb5b9e98caa280dd0394516a073b05463abb18ac 100644 (file)
@@ -6,6 +6,8 @@
  * Note: this plugin adds jQuery.
  */
 
+use Shaarli\Router;
+
 /**
  * When linklist is displayed, add play videos to header's toolbar.
  *
 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 +48,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.');
+}