wikipoints/ground/models/Article.php

19 lines
288 B
PHP

<?php
class Article extends Model
{
function __construct($fromArray = array())
{
$this->_tableName_ = 'articles';
parent::__construct($fromArray);
$this->setRelation('authorUser', 'author', 'User', 'id', self::TO_ONE);
}
static function model()
{
return new self();
}
}