]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - plugins/playvideos/playvideos.php
Merge pull request #1234 from virtualtam/lint
[github/shaarli/Shaarli.git] / plugins / playvideos / playvideos.php
index 0a80aa58c5332f8697210e64344b1b3ba89184e6..c6d6b0cc6815e4f5c2547efdc395a67ccde08e3d 100644 (file)
 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 +45,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.');
+}