DataType/EntityDataType.php
<?php
namespace Netdudes\DataSourceryBundle\DataType;
use Netdudes\DataSourceryBundle\Query\FilterCondition;
class EntityDataType extends AbstractDataType
{
/**
* Return an array of available filter methods
*
* @return array
*/
public function getAvailableFilterMethods()
{
return [
FilterCondition::METHOD_NUMERIC_EQ,
FilterCondition::METHOD_NUMERIC_NEQ,
];
}
/**
* Return the identifier of the default sort method
*
* @return int
*/
public function getDefaultFilterMethod()
{
return FilterCondition::METHOD_NUMERIC_EQ;
}
/**
* Return the name of the type, unique.
*
* @return string
*/
public function getName()
{
return 'entity';
}
}