silverstripe-framework/tests/php/ORM/Search/SearchContextTest/Project.php

36 lines
820 B
PHP
Raw Normal View History

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
{
private static $table_name = 'SearchContextTest_Project';
2016-10-14 03:30:05 +02:00
private static $db = array(
'Name' => 'Varchar'
);
2016-10-14 03:30:05 +02:00
private static $has_one = array(
'Deadline' => Deadline::class,
);
2016-10-14 03:30:05 +02:00
private static $has_many = array(
'Actions' => Action::class,
);
2016-10-14 03:30:05 +02:00
private static $searchable_fields = array(
'Name' => 'PartialMatchFilter',
'Actions.SolutionArea' => 'ExactMatchFilter',
'Actions.Description' => 'PartialMatchFilter'
);
2016-10-14 03:30:05 +02:00
}