Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Db / Metadata / Object / ViewObject.php
blobf4b29ec6dff136dd4eca7c86ca86ef255642efcc
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Db\Metadata\Object;
12 class ViewObject extends AbstractTableObject
14 protected $viewDefinition;
15 protected $checkOption;
16 protected $isUpdatable;
18 /**
19 * @return string $viewDefinition
21 public function getViewDefinition()
23 return $this->viewDefinition;
26 /**
27 * @param string $viewDefinition to set
28 * @return ViewObject
30 public function setViewDefinition($viewDefinition)
32 $this->viewDefinition = $viewDefinition;
33 return $this;
36 /**
37 * @return string $checkOption
39 public function getCheckOption()
41 return $this->checkOption;
44 /**
45 * @param string $checkOption to set
46 * @return ViewObject
48 public function setCheckOption($checkOption)
50 $this->checkOption = $checkOption;
51 return $this;
54 /**
55 * @return bool $isUpdatable
57 public function getIsUpdatable()
59 return $this->isUpdatable;
62 /**
63 * @param bool $isUpdatable to set
64 * @return ViewObject
66 public function setIsUpdatable($isUpdatable)
68 $this->isUpdatable = $isUpdatable;
69 return $this;
72 public function isUpdatable()
74 return $this->isUpdatable;