Beispiel #1
0
    /**
     * Constructor 
     */
    public function __construct() {

		$oPdo = \CApi::GetPDO();
		$dbPrefix = \CApi::GetSettings()->GetConf('Common/DBPrefix');
		
		parent::__construct($oPdo, $dbPrefix.Constants::T_LOCKS);

    }
Beispiel #2
0
 /**
  * Constructor 
  */
 public function __construct()
 {
     parent::__construct(\CApi::GetPDO());
     $dbPrefix = \CApi::GetSettings()->GetConf('Common/DBPrefix');
     $this->tableName = $dbPrefix . Constants::T_LOCKS;
 }