Файл: base-sys/base/bol/component_setting_dao.php
Строк: 207
<?php
class BOL_ComponentSettingDao extends PEEP_BaseDao
{
/**
* Constructor.
*
*/
protected function __construct()
{
parent::__construct();
}
/**
* Singleton instance.
*
* @var BOL_ComponentSettingDao
*/
private static $classInstance;
/**
* Returns an instance of class (singleton pattern implementation).
*
* @return BOL_ComponentSettingDao
*/
public static function getInstance()
{
if ( self::$classInstance === null )
{
self::$classInstance = new self();
}
return self::$classInstance;
}
/**
* @see PEEP_BaseDao::getDtoClassName()
*
*/
public function getDtoClassName()
{
return 'BOL_ComponentSetting';
}
/**
* @see PEEP_BaseDao::getTableName()
*
*/
public function getTableName()
{
return PEEP_DB_PREFIX . 'base_component_setting';
}
public function findSettingList( $componentPlaceUniqName, array $settingNames = array() )
{
$example = new PEEP_Example();
$example->andFieldEqual('componentPlaceUniqName', $componentPlaceUniqName);
if ( !empty($settingNames) )
{
$example->andFieldInArray('name', $settingNames);
}
return $this->findListByExample($example);
}
public function findListByComponentUniqNameList( array $componentPlaceUniqNameList )
{
if ( empty($componentPlaceUniqNameList) )
{
return array();
}
$example = new PEEP_Example();
$example->andFieldInArray('componentPlaceUniqName', $componentPlaceUniqNameList);
return $this->findListByExample($example);
}
public function cloneSettingList( $sourceComponentPlaceUniqName, $destComponentPlaceUniqName )
{
$sourceSettings = $this->findSettingList($sourceComponentPlaceUniqName);
foreach ( $sourceSettings as $setting )
{
$setting->id = null;
$setting->componentPlaceUniqName = $destComponentPlaceUniqName;
$this->save($setting);
}
}
/**
*
* @param string $componentPlaceUniqName
* @param string $name
* @param string $value
*/
public function saveSetting( $componentPlaceUniqName, $name, $value )
{
$example = new PEEP_Example();
$example->andFieldEqual('name', $name);
$example->andFieldEqual('componentPlaceUniqName', $componentPlaceUniqName);
$componentSettingDto = $this->findObjectByExample($example);
if ( !$componentSettingDto )
{
$componentSettingDto = new BOL_ComponentSetting();
$componentSettingDto->name = $name;
}
$componentSettingDto->componentPlaceUniqName = $componentPlaceUniqName;
$componentSettingDto->setValue($value);
return $this->save($componentSettingDto);
}
public function deleteList( $componentPlaceUniqName )
{
$example = new PEEP_Example();
$example->andFieldEqual('componentPlaceUniqName', $componentPlaceUniqName);
return $this->deleteByExample($example);
}
}