CommunityID/libs/Monkeys/Db/Table/Gateway.php

10 lines
205 B
PHP
Executable File

<?php
abstract class Monkeys_Db_Table_Gateway extends Zend_Db_Table_Abstract
{
public function getRowInstance($id)
{
return $this->fetchRow($this->select()->where('id = ?', $id));
}
}