wikipoints/ground/models/Route.php

18 lines
216 B
PHP

<?php
class Route extends Model
{
function __construct()
{
$this->_tableName_ = 'routes';
parent::__construct();
}
function getByAuthor($authorId)
{
return $this->getAll('`author` = '.$authorId);
}
}