silverstripe-framework/tests/php/Forms/FormTest/Player.php
2020-04-20 18:58:09 +01:00

35 lines
667 B
PHP

<?php
namespace SilverStripe\Forms\Tests\FormTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
/**
* @skipUpgrade
*/
class Player extends DataObject implements TestOnly
{
private static $table_name = 'FormTest_Player';
private static $db = [
'Name' => 'Varchar',
'Biography' => 'Text',
'Birthday' => 'Date'
];
private static $belongs_many_many = [
'Teams' => Team::class
];
private static $has_one = [
'FavouriteTeam' => Team::class
];
public function getBirthdayYear()
{
return ($this->Birthday) ? date('Y', strtotime($this->Birthday)) : null;
}
}