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