1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/Doctrine/IndexGenerator.php

26 lines
600 B
PHP
Raw Normal View History

2006-05-30 12:42:10 +04:00
<?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;
}
}
?>