19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
|
|
class Photo extends Model
|
|
{
|
|
function __construct($fromArray = array())
|
|
{
|
|
$this->_tableName_ = 'photos';
|
|
parent::__construct($fromArray);
|
|
$this->setRelation('point', 'pointId', 'Point', 'id', self::TO_ONE);
|
|
$this->setRelation('link', 'name', 'PhotoLinks', 'photo', self::TO_ONE);
|
|
}
|
|
|
|
static function model()
|
|
{
|
|
return new self();
|
|
}
|
|
}
|
|
|