1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/Doctrine/IndexGenerator.php
2006-05-30 08:42:10 +00:00

26 lines
600 B
PHP

<?php
class Doctrine_IndexGenerator {
/**
* @var string $name
*/
private $name;
/**
* @param string $name
*/
public function __construct($name) {
$this->name = $name;
}
/**
* @param Doctrine_Record $record
* @return mixed
*/
public function getIndex(Doctrine_Record $record) {
$value = $record->get($this->name);
if($value === null)
throw new Doctrine_Exception("Couldn't create collection index. Record field '".$this->name."' was null.");
return $value;
}
}
?>