wikipoints/models/News.php

19 lines
278 B
PHP

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