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