Your IP : 216.73.216.251


Current Path : /home/atelierpru/provence/plugins-dist/textwheel/inc/
Upload File :
Current File : /home/atelierpru/provence/plugins-dist/textwheel/inc/yaml-mini.php

<?php

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}
# yaml_decode

function yaml_decode($input) {
	require_once dirname(__FILE__) . '/../lib/yaml/sfYaml.php';
	require_once dirname(__FILE__) . '/../lib/yaml/sfYamlParser.php';

	$yaml = new sfYamlParser();

	try {
		return $yaml->parse($input);

	} catch (Exception $e) {
		return null;
	}
}