File "yaml-mini.php"

Full path: /home/argothem/www/v4_old/fichiers_obsoletes_20220627_043105/plugins-dist/textwheel/inc/yaml-mini.php
File size: 347 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
	}
}