]>
Commit | Line | Data |
---|---|---|
b17c19ff | 1 | <?php |
840caea6 A |
2 | /** |
3 | * Plugin PlayVideos | |
4 | * | |
5 | * Add a button in the toolbar allowing to watch all videos. | |
6 | * Note: this plugin adds jQuery. | |
7 | */ | |
b17c19ff A |
8 | |
9 | /** | |
10 | * When linklist is displayed, add play videos to header's toolbar. | |
11 | * | |
12 | * @param array $data - header data. | |
840caea6 | 13 | * |
b17c19ff A |
14 | * @return mixed - header data with playvideos toolbar item. |
15 | */ | |
840caea6 A |
16 | function hook_playvideos_render_header($data) |
17 | { | |
b17c19ff | 18 | if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) { |
ba0fd807 A |
19 | $playvideo = array( |
20 | 'attr' => array( | |
21 | 'href' => '#', | |
12266213 | 22 | 'title' => t('Video player'), |
ba0fd807 A |
23 | 'id' => 'playvideos', |
24 | ), | |
12266213 | 25 | 'html' => '► '. t('Play Videos') |
ba0fd807 A |
26 | ); |
27 | $data['buttons_toolbar'][] = $playvideo; | |
b17c19ff A |
28 | } |
29 | ||
30 | return $data; | |
31 | } | |
32 | ||
33 | /** | |
34 | * When linklist is displayed, include playvideos JS files. | |
35 | * | |
36 | * @param array $data - footer data. | |
840caea6 | 37 | * |
b17c19ff A |
38 | * @return mixed - footer data with playvideos JS files added. |
39 | */ | |
840caea6 A |
40 | function hook_playvideos_render_footer($data) |
41 | { | |
b17c19ff A |
42 | if ($data['_PAGE_'] == Router::$PAGE_LINKLIST) { |
43 | $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/jquery-1.11.2.min.js'; | |
44 | $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/playvideos/youtube_playlist.js'; | |
45 | } | |
46 | ||
47 | return $data; | |
db6dec0d | 48 | } |
12266213 A |
49 | |
50 | /** | |
51 | * This function is never called, but contains translation calls for GNU gettext extraction. | |
52 | */ | |
53 | function playvideos_dummy_translation() | |
54 | { | |
55 | // meta | |
56 | t('Add a button in the toolbar allowing to watch all videos.'); | |
57 | } |