2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\ORM\Tests\Search\SearchContextTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2017-07-27 02:05:27 +02:00
|
|
|
use SilverStripe\ORM\HasManyList;
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2017-07-27 02:05:27 +02:00
|
|
|
/**
|
|
|
|
* @property string $Name
|
|
|
|
* @method Deadline Deadline()
|
|
|
|
* @method HasManyList Actions()
|
|
|
|
*/
|
2016-10-14 03:30:05 +02:00
|
|
|
class Project extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'SearchContextTest_Project';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $db = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'Name' => 'Varchar'
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $has_one = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'Deadline' => Deadline::class,
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $has_many = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'Actions' => Action::class,
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $searchable_fields = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'Name' => 'PartialMatchFilter',
|
|
|
|
'Actions.SolutionArea' => 'ExactMatchFilter',
|
|
|
|
'Actions.Description' => 'PartialMatchFilter'
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|