mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-02 15:23:38 +03:00
165 lines
2.9 KiB
PHP
165 lines
2.9 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework (http://framework.zend.com/)
|
||
|
*
|
||
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
||
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Zend\Db\Sql\Ddl\Column;
|
||
|
|
||
|
class Column implements ColumnInterface
|
||
|
{
|
||
|
/**
|
||
|
* @var null|string|int
|
||
|
*/
|
||
|
protected $default = null;
|
||
|
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $isNullable = false;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $name = null;
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $options = array();
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $specification = '%s %s';
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $type = 'INTEGER';
|
||
|
|
||
|
/**
|
||
|
* @param null|string $name
|
||
|
*/
|
||
|
public function __construct($name = null)
|
||
|
{
|
||
|
(!$name) ?: $this->setName($name);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setName($name)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return null|string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param bool $nullable
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setNullable($nullable)
|
||
|
{
|
||
|
$this->isNullable = (bool) $nullable;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function isNullable()
|
||
|
{
|
||
|
return $this->isNullable;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param null|string|int $default
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setDefault($default)
|
||
|
{
|
||
|
$this->default = $default;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return null|string|int
|
||
|
*/
|
||
|
public function getDefault()
|
||
|
{
|
||
|
return $this->default;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $options
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setOptions(array $options)
|
||
|
{
|
||
|
$this->options = $options;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
* @param string $value
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setOption($name, $value)
|
||
|
{
|
||
|
$this->options[$name] = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getOptions()
|
||
|
{
|
||
|
return $this->options;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getExpressionData()
|
||
|
{
|
||
|
$spec = $this->specification;
|
||
|
|
||
|
$params = array();
|
||
|
$params[] = $this->name;
|
||
|
$params[] = $this->type;
|
||
|
|
||
|
$types = array(self::TYPE_IDENTIFIER, self::TYPE_LITERAL);
|
||
|
|
||
|
if (!$this->isNullable) {
|
||
|
$params[1] .= ' NOT NULL';
|
||
|
}
|
||
|
|
||
|
if ($this->default !== null) {
|
||
|
$spec .= ' DEFAULT %s';
|
||
|
$params[] = $this->default;
|
||
|
$types[] = self::TYPE_VALUE;
|
||
|
}
|
||
|
|
||
|
return array(array(
|
||
|
$spec,
|
||
|
$params,
|
||
|
$types,
|
||
|
));
|
||
|
}
|
||
|
}
|