mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
77 lines
1.6 KiB
PHP
77 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Db\Metadata\Object;
|
|
|
|
class ViewObject extends AbstractTableObject
|
|
{
|
|
protected $viewDefinition;
|
|
protected $checkOption;
|
|
protected $isUpdatable;
|
|
|
|
/**
|
|
* @return string $viewDefinition
|
|
*/
|
|
public function getViewDefinition()
|
|
{
|
|
return $this->viewDefinition;
|
|
}
|
|
|
|
/**
|
|
* @param string $viewDefinition to set
|
|
* @return ViewObject
|
|
*/
|
|
public function setViewDefinition($viewDefinition)
|
|
{
|
|
$this->viewDefinition = $viewDefinition;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string $checkOption
|
|
*/
|
|
public function getCheckOption()
|
|
{
|
|
return $this->checkOption;
|
|
}
|
|
|
|
/**
|
|
* @param string $checkOption to set
|
|
* @return ViewObject
|
|
*/
|
|
public function setCheckOption($checkOption)
|
|
{
|
|
$this->checkOption = $checkOption;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return bool $isUpdatable
|
|
*/
|
|
public function getIsUpdatable()
|
|
{
|
|
return $this->isUpdatable;
|
|
}
|
|
|
|
/**
|
|
* @param bool $isUpdatable to set
|
|
* @return ViewObject
|
|
*/
|
|
public function setIsUpdatable($isUpdatable)
|
|
{
|
|
$this->isUpdatable = $isUpdatable;
|
|
return $this;
|
|
}
|
|
|
|
public function isUpdatable()
|
|
{
|
|
return $this->isUpdatable;
|
|
}
|
|
}
|