silverstripe-framework/tests/php/Forms/FormTest/Player.php

35 lines
667 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?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;
}
2016-10-14 03:30:05 +02:00
}