2016-10-14 03:30:05 +02:00
|
|
|
<?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
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'SearchContextTest_Company';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $db = array(
|
|
|
|
'Name' => 'Varchar',
|
|
|
|
'Industry' => 'Varchar',
|
|
|
|
'AnnualProfit' => 'Int'
|
|
|
|
);
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $summary_fields = array(
|
|
|
|
'Industry'
|
|
|
|
);
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $searchable_fields = array(
|
|
|
|
'Name' => 'PartialMatchFilter',
|
|
|
|
'Industry' => array(
|
|
|
|
'field' => TextareaField::class
|
|
|
|
),
|
|
|
|
'AnnualProfit' => array(
|
|
|
|
'field' => NumericField::class,
|
|
|
|
'filter' => 'PartialMatchFilter',
|
|
|
|
'title' => 'The Almighty Annual Profit'
|
|
|
|
)
|
|
|
|
);
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|