silverstripe-framework/model/fieldtypes/PrimaryKey.php

36 lines
922 B
PHP
Raw Normal View History

<?php
/**
* A special type Int field used for primary keys.
2014-08-15 08:53:05 +02:00
*
* @todo Allow for custom limiting/filtering of scaffoldFormField dropdown
2014-08-15 08:53:05 +02:00
*
* @package framework
* @subpackage model
*/
class PrimaryKey extends DBInt {
/**
2014-08-15 08:53:05 +02:00
* @var DataObject
*/
protected $object;
private static $default_search_filter_class = 'ExactMatchFilter';
2014-08-15 08:53:05 +02:00
/**
* @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);
}
2014-08-15 08:53:05 +02:00
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;
}
}