]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - plugins/playvideos/playvideos.php
Process main page (linklist) through Slim controller
[github/shaarli/Shaarli.git] / plugins / playvideos / playvideos.php
index c6d6b0cc6815e4f5c2547efdc395a67ccde08e3d..91a9c1e554c58437c5862adfd605019865096be7 100644 (file)
@@ -6,6 +6,9 @@
  * Note: this plugin adds jQuery.
  */
 
+use Shaarli\Plugin\PluginManager;
+use Shaarli\Render\TemplatePage;
+
 /**
  * When linklist is displayed, add play videos to header's toolbar.
  *
@@ -15,7 +18,7 @@
  */
 function hook_playvideos_render_header($data)
 {
-    if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
+    if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
         $playvideo = array(
             'attr' => array(
                 'href' => '#',
@@ -39,7 +42,7 @@ function hook_playvideos_render_header($data)
  */
 function hook_playvideos_render_footer($data)
 {
-    if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
+    if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
         $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/jquery-1.11.2.min.js';
         $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/youtube_playlist.js';
     }