[SPIP] +spip v3.0.17
[lhc/web/clavette_www.git] / www / plugins-dist / textwheel / inc / yaml-mini.php
1 <?php
2
3 if (!defined('_ECRIRE_INC_VERSION')) return;
4 # yaml_decode
5
6 function yaml_decode($input) {
7 require_once dirname(__FILE__).'/../lib/yaml/sfYaml.php';
8 require_once dirname(__FILE__).'/../lib/yaml/sfYamlParser.php';
9
10 $yaml = new sfYamlParser();
11
12 try
13 {
14 return $yaml->parse($input);
15
16 }
17 catch (Exception $e)
18 {
19 return null;
20 }
21 }
22
23 ?>