Provides a way to easily format a selection of a DataObject's fields used in a custom API. This is often useful when creating your own RESTful API that doesn't use SilverStripes RestfulServer
For a SilverStripe 2.4
compatible version see the branch 0.2
.
$ composer require heyday/silverstripe-flexibledataformatters:~0.1
class MyDataObject extends DataObject implements FlexibleDataFormatterInterface
{
public static $db = array(
'Title' => 'Varchar(255)'
);
public function getReadableFields()
{
return array(
'Title'
);
}
public function getDynamicFields()
{
return array();
}
}
$dataObject = new MyDataObject(array('Title' => 'Hello'));
$formatter = new FlexibleJsonDataFormatter();
echo $formatter->convertDataObject($dataObject);
// Results:
// {
// "Title": "Hello"
// }
Install dev dependencies from within module:
silverstripe-flexibledataformatters/ $ composer install --dev
Use standard phpunit
command
silverstripe-flexibledataformatters/ $ phpunit
If you don't have phpunit
installed globally:
silverstripe-flexibledataformatters/ $ vendor/bin/phpunit
##License
Flexible Data Formatters is licensed under an MIT license
Module rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem