]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - plugins/playvideos/playvideos.php
Display link count only on linklist
[github/shaarli/Shaarli.git] / plugins / playvideos / playvideos.php
1 <?php
2 /**
3 * Plugin PlayVideos
4 *
5 * Add a button in the toolbar allowing to watch all videos.
6 * Note: this plugin adds jQuery.
7 */
8
9 /**
10 * When linklist is displayed, add play videos to header's toolbar.
11 *
12 * @param array $data - header data.
13 *
14 * @return mixed - header data with playvideos toolbar item.
15 */
16 function hook_playvideos_render_header($data)
17 {
18 if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
19 $playvideo = array(
20 'href' => '#',
21 'title' => 'Video player',
22 'id' => 'playvideos',
23 'html' => '► Play Videos'
24 );
25 $data['buttons_toolbar'][] = $playvideo;
26 }
27
28 return $data;
29 }
30
31 /**
32 * When linklist is displayed, include playvideos JS files.
33 *
34 * @param array $data - footer data.
35 *
36 * @return mixed - footer data with playvideos JS files added.
37 */
38 function hook_playvideos_render_footer($data)
39 {
40 if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) {
41 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/jquery-1.11.2.min.js';
42 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/youtube_playlist.js';
43 }
44
45 return $data;
46 }