Changeset 65569 in spip-zone
- Timestamp:
- Sep 5, 2012, 3:23:14 PM (8 years ago)
- Location:
- _plugins_/oembed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/oembed/oembed_pipelines.php
r59403 r65569 198 198 } 199 199 200 /** 201 * Se brancher sur le plugin ressource pour appliquer oembed à ses urls 202 * 203 * @param array $flux 204 * @return array 205 */ 206 function oembed_ressource_meta($flux) { 207 $src = $flux['args']['src']; 208 if ($oembed = oembed($src) AND $oembed != $src) 209 $flux['data']['extract'] = $oembed; 210 return $flux; 211 } 212 200 213 include_spip('inc/config'); 201 214 if (!function_exists('lire_config')) { function lire_config($a=null,$b=null) { return $b; } } -
_plugins_/oembed/paquet.xml
r63373 r65569 2 2 prefix="oembed" 3 3 categorie="multimedia" 4 version="0. 9.9"4 version="0.10.0" 5 5 etat="test" 6 6 compatibilite="[3.0.0-beta;[" … … 24 24 <pipeline nom="formulaire_charger" inclure="oembed_pipelines.php" /> 25 25 <pipeline nom="recuperer_fond" inclure="oembed_pipelines.php" /> 26 <pipeline nom="ressource_meta" inclure="oembed_pipelines.php" /> 26 27 <pipeline nom="oembed_lister_providers" action="" /> 27 28 -
_plugins_/oembed/plugin.xml
r63373 r65569 8 8 </auteur> 9 9 <version> 10 0. 9.910 0.10.0 11 11 </version> 12 12 <etat>
Note: See TracChangeset
for help on using the changeset viewer.