silverstripe-framework/model/fieldtypes/PrimaryKey.php
2012-09-20 10:46:59 +02:00

36 lines
929 B
PHP

<?php
/**
* A special type Int field used for primary keys.
*
* @todo Allow for custom limiting/filtering of scaffoldFormField dropdown
*
* @package framework
* @subpackage model
*/
class PrimaryKey extends Int {
/**
* @var DataObject
*/
protected $object;
public static $default_search_filter_class = 'ExactMatchMultiFilter';
/**
* @param string $name
* @param DataOject $object The object that this is primary key for (should have a relation with $name)
*/
public function __construct($name = null, $object) {
$this->object = $object;
parent::__construct($name);
}
public function scaffoldFormField($title = null, $params = null) {
$titleField = ($this->object->hasField('Title')) ? 'Title' : 'Name';
$map = DataList::create(get_class($this->object))->map('ID', $titleField);
$field = new DropdownField($this->name, $title, $map);
$field->setEmptyString(' ');
return $field;
}
}