Вход Регистрация
Файл: base-sys/base/bol/config_dao.php
Строк: 111
<?php

class BOL_ConfigDao extends PEEP_BaseDao
{
    const 
KEY 'key';
    const 
NAME 'name';
    const 
DESCRIPTION 'description';
    const 
VALUE 'value';

    
/**
     * Singleton instance.
     *
     * @var BOL_ConfigDao
     */
    
private static $classInstance;

    
/**
     * Returns an instance of class (singleton pattern implementation).
     *
     * @return BOL_ConfigDao
     */
    
public static function getInstance()
    {
        if ( 
self::$classInstance === null )
        {
            
self::$classInstance = new self();
        }

        return 
self::$classInstance;
    }

    
/**
     * Constructor.
     */
    
protected function __construct()
    {
        
parent::__construct();
    }

    
/**
     * @see PEEP_BaseDao::getDtoClassName()
     *
     */
    
public function getDtoClassName()
    {
        return 
'BOL_Config';
    }

    
/**
     * @see PEEP_BaseDao::getTableName()
     *
     */
    
public function getTableName()
    {
        return 
PEEP_DB_PREFIX 'base_config';
    }

    
/**
     * Finds config item by key and name.
     *
     * @param string $key
     * @param string $name
     * @return BOL_Config
     */
    
public function findConfig$key$name )
    {
        
$example = new PEEP_Example();
        
$example->andFieldEqual(self::KEY$key);
        
$example->andFieldEqual(self::NAME$name);

        return 
$this->findObjectByExample($example);
    }

    
/**
     * Finds confids list by plugin key.
     * 
     * @param string $key
     * @return array
     */
    
public function findConfigsList$key )
    {
        
$example = new PEEP_Example();
        
$example->andFieldEqual(self::KEY$key);

        return 
$this->findListByExample($example);
    }

    
/**
     * Removes config by provided plugin key and config name.
     * 
     * @param string $key
     * @param string $name
     */
    
public function removeConfig$key$name )
    {
        
$example = new PEEP_Example();
        
$example->andFieldEqual(self::KEYtrim($key));
        
$example->andFieldEqual(self::NAMEtrim($name));

        
$this->deleteByExample($example);
    }

    
/**
     * Removes configs by provided plugin key.
     * 
     * @param string $key
     */
    
public function removeConfigs$key )
    {
        
$example = new PEEP_Example();
        
$example->andFieldEqual(self::KEYtrim($key));

        
$this->deleteByExample($example);
    }
}
Онлайн: 0
Реклама