silverstripe-framework/tests/php/ORM/Search/SearchContextTest/Company.php
2020-04-20 18:58:09 +01:00

36 lines
870 B
PHP

<?php
namespace SilverStripe\ORM\Tests\Search\SearchContextTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Forms\NumericField;
use SilverStripe\Forms\TextareaField;
use SilverStripe\ORM\DataObject;
class Company extends DataObject implements TestOnly
{
private static $table_name = 'SearchContextTest_Company';
private static $db = [
'Name' => 'Varchar',
'Industry' => 'Varchar',
'AnnualProfit' => 'Int'
];
private static $summary_fields = [
'Industry'
];
private static $searchable_fields = [
'Name' => 'PartialMatchFilter',
'Industry' => [
'field' => TextareaField::class
],
'AnnualProfit' => [
'field' => NumericField::class,
'filter' => 'PartialMatchFilter',
'title' => 'The Almighty Annual Profit'
]
];
}