Changeset 96379 in spip-zone
- Timestamp:
- Apr 1, 2016, 12:55:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/videos/trunk/videos_pipelines.php
r96377 r96379 5 5 } 6 6 7 /** 8 * Sauvegarde de configuration avec ieconfig 9 * 10 * @pipeline ieconfig_metas 11 * @param array $flux 12 * @return array 13 */ 7 14 function videos_ieconfig_metas($table) { 8 15 $table['videos']['titre'] = _T('paquet-videos:videos_nom'); … … 12 19 } 13 20 21 /** 22 * Ajouter des js 23 * 24 * @pipeline insert_head 25 * @param string $flux 26 * @return string 27 */ 14 28 function videos_insert_head($flux) { 15 29 include_spip('inc/config'); … … 18 32 } 19 33 34 /** 35 * Ajouter des css 36 * 37 * @pipeline insert_head_css 38 * @param string $flux 39 * @return string 40 */ 20 41 function videos_insert_head_css($flux) { 21 42 include_spip('inc/config'); … … 34 55 */ 35 56 function videos_jquery_plugins($scripts) { 36 $scripts[] = "lib/html5media-1.1. 5/api/html5media.min.js";57 $scripts[] = "lib/html5media-1.1.8/api/html5media.min.js"; 37 58 return $scripts; 38 59 }
Note: See TracChangeset
for help on using the changeset viewer.