mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
37 lines
829 B
PHP
37 lines
829 B
PHP
<?php
|
|
namespace Luracast\Restler\Format;
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
use Luracast\Restler\Data\Object;
|
|
|
|
/**
|
|
* YAML Format for Restler Framework
|
|
*
|
|
* @category Framework
|
|
* @package Restler
|
|
* @subpackage format
|
|
* @author R.Arul Kumaran <arul@luracast.com>
|
|
* @copyright 2010 Luracast
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @link http://luracast.com/products/restler/
|
|
* @version 3.0.0rc5
|
|
*/
|
|
class YamlFormat extends Format
|
|
{
|
|
const MIME = 'text/plain';
|
|
const EXTENSION = 'yaml';
|
|
|
|
public function encode($data, $humanReadable = false)
|
|
{
|
|
// require_once 'sfyaml.php';
|
|
return @Yaml::dump(Object::toArray($data));
|
|
}
|
|
|
|
public function decode($data)
|
|
{
|
|
// require_once 'sfyaml.php';
|
|
return Yaml::parse($data);
|
|
}
|
|
}
|
|
|