2008-07-17 03:51:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dibi - tiny'n'smart database abstraction layer
|
|
|
|
* ----------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005, 2008 David Grudl (http://davidgrudl.com)
|
|
|
|
*
|
|
|
|
* This source file is subject to the "dibi license" that is bundled
|
|
|
|
* with this package in the file license.txt.
|
|
|
|
*
|
|
|
|
* For more information please see http://dibiphp.com
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2005, 2008 David Grudl
|
|
|
|
* @license http://dibiphp.com/license dibi license
|
|
|
|
* @link http://dibiphp.com
|
|
|
|
* @package dibi
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default implemenation of IDibiVariable.
|
|
|
|
* @package dibi
|
|
|
|
*/
|
|
|
|
class DibiVariable extends /*Nette::*/Object implements IDibiVariable
|
|
|
|
{
|
|
|
|
/** @var mixed */
|
|
|
|
public $value;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
public $modifier;
|
|
|
|
|
|
|
|
|
|
|
|
public function __construct($value, $modifier)
|
|
|
|
{
|
|
|
|
$this->value = $value;
|
|
|
|
$this->modifier = $modifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function toSql(DibiTranslator $translator, $modifier)
|
|
|
|
{
|
|
|
|
return $translator->formatValue($this->value, $this->modifier);
|
|
|
|
}
|
|
|
|
|
2007-11-22 10:35:23 +00:00
|
|
|
}
|