Файл: base-sys/base/bol/place_dao.php
Строк: 54
<?php
class BOL_PlaceDao extends PEEP_BaseDao
{
/**
* Constructor.
*
*/
protected function __construct()
{
parent::__construct();
}
/**
* Singleton instance.
*
* @var BOL_PlaceDao
*/
private static $classInstance;
/**
* Returns an instance of class (singleton pattern implementation).
*
* @return BOL_PlaceDao
*/
public static function getInstance()
{
if ( self::$classInstance === null )
{
self::$classInstance = new self();
}
return self::$classInstance;
}
/**
* @see PEEP_BaseDao::getDtoClassName()
*
*/
public function getDtoClassName()
{
return 'BOL_Place';
}
/**
* @see PEEP_BaseDao::getTableName()
*
*/
public function getTableName()
{
return PEEP_DB_PREFIX . 'base_place';
}
/**
* @return BOL_Place
*/
public function findByName( $name )
{
$example = new PEEP_Example();
$example->andFieldEqual('name', $name);
return $this->findObjectByExample($example);
}
}