EntitySettingsCurrent.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntitySettingsCurrent
  5. *
  6. * @Table(name="settings_current")
  7. * @Entity
  8. */
  9. class EntitySettingsCurrent
  10. {
  11. /**
  12. * @var integer
  13. *
  14. * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  15. * @Id
  16. * @GeneratedValue(strategy="IDENTITY")
  17. */
  18. private $id;
  19. /**
  20. * @var string
  21. *
  22. * @Column(name="variable", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  23. */
  24. private $variable;
  25. /**
  26. * @var string
  27. *
  28. * @Column(name="subkey", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  29. */
  30. private $subkey;
  31. /**
  32. * @var string
  33. *
  34. * @Column(name="type", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  35. */
  36. private $type;
  37. /**
  38. * @var string
  39. *
  40. * @Column(name="category", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  41. */
  42. private $category;
  43. /**
  44. * @var string
  45. *
  46. * @Column(name="selected_value", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  47. */
  48. private $selectedValue;
  49. /**
  50. * @var string
  51. *
  52. * @Column(name="title", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
  53. */
  54. private $title;
  55. /**
  56. * @var string
  57. *
  58. * @Column(name="comment", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  59. */
  60. private $comment;
  61. /**
  62. * @var string
  63. *
  64. * @Column(name="scope", type="string", length=50, precision=0, scale=0, nullable=true, unique=false)
  65. */
  66. private $scope;
  67. /**
  68. * @var string
  69. *
  70. * @Column(name="subkeytext", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
  71. */
  72. private $subkeytext;
  73. /**
  74. * @var integer
  75. *
  76. * @Column(name="access_url", type="integer", precision=0, scale=0, nullable=false, unique=false)
  77. */
  78. private $accessUrl;
  79. /**
  80. * @var integer
  81. *
  82. * @Column(name="access_url_changeable", type="integer", precision=0, scale=0, nullable=false, unique=false)
  83. */
  84. private $accessUrlChangeable;
  85. /**
  86. * @var integer
  87. *
  88. * @Column(name="access_url_locked", type="integer", precision=0, scale=0, nullable=false, unique=false)
  89. */
  90. private $accessUrlLocked;
  91. /**
  92. * Get id
  93. *
  94. * @return integer
  95. */
  96. public function getId()
  97. {
  98. return $this->id;
  99. }
  100. /**
  101. * Set variable
  102. *
  103. * @param string $variable
  104. * @return EntitySettingsCurrent
  105. */
  106. public function setVariable($variable)
  107. {
  108. $this->variable = $variable;
  109. return $this;
  110. }
  111. /**
  112. * Get variable
  113. *
  114. * @return string
  115. */
  116. public function getVariable()
  117. {
  118. return $this->variable;
  119. }
  120. /**
  121. * Set subkey
  122. *
  123. * @param string $subkey
  124. * @return EntitySettingsCurrent
  125. */
  126. public function setSubkey($subkey)
  127. {
  128. $this->subkey = $subkey;
  129. return $this;
  130. }
  131. /**
  132. * Get subkey
  133. *
  134. * @return string
  135. */
  136. public function getSubkey()
  137. {
  138. return $this->subkey;
  139. }
  140. /**
  141. * Set type
  142. *
  143. * @param string $type
  144. * @return EntitySettingsCurrent
  145. */
  146. public function setType($type)
  147. {
  148. $this->type = $type;
  149. return $this;
  150. }
  151. /**
  152. * Get type
  153. *
  154. * @return string
  155. */
  156. public function getType()
  157. {
  158. return $this->type;
  159. }
  160. /**
  161. * Set category
  162. *
  163. * @param string $category
  164. * @return EntitySettingsCurrent
  165. */
  166. public function setCategory($category)
  167. {
  168. $this->category = $category;
  169. return $this;
  170. }
  171. /**
  172. * Get category
  173. *
  174. * @return string
  175. */
  176. public function getCategory()
  177. {
  178. return $this->category;
  179. }
  180. /**
  181. * Set selectedValue
  182. *
  183. * @param string $selectedValue
  184. * @return EntitySettingsCurrent
  185. */
  186. public function setSelectedValue($selectedValue)
  187. {
  188. $this->selectedValue = $selectedValue;
  189. return $this;
  190. }
  191. /**
  192. * Get selectedValue
  193. *
  194. * @return string
  195. */
  196. public function getSelectedValue()
  197. {
  198. return $this->selectedValue;
  199. }
  200. /**
  201. * Set title
  202. *
  203. * @param string $title
  204. * @return EntitySettingsCurrent
  205. */
  206. public function setTitle($title)
  207. {
  208. $this->title = $title;
  209. return $this;
  210. }
  211. /**
  212. * Get title
  213. *
  214. * @return string
  215. */
  216. public function getTitle()
  217. {
  218. return $this->title;
  219. }
  220. /**
  221. * Set comment
  222. *
  223. * @param string $comment
  224. * @return EntitySettingsCurrent
  225. */
  226. public function setComment($comment)
  227. {
  228. $this->comment = $comment;
  229. return $this;
  230. }
  231. /**
  232. * Get comment
  233. *
  234. * @return string
  235. */
  236. public function getComment()
  237. {
  238. return $this->comment;
  239. }
  240. /**
  241. * Set scope
  242. *
  243. * @param string $scope
  244. * @return EntitySettingsCurrent
  245. */
  246. public function setScope($scope)
  247. {
  248. $this->scope = $scope;
  249. return $this;
  250. }
  251. /**
  252. * Get scope
  253. *
  254. * @return string
  255. */
  256. public function getScope()
  257. {
  258. return $this->scope;
  259. }
  260. /**
  261. * Set subkeytext
  262. *
  263. * @param string $subkeytext
  264. * @return EntitySettingsCurrent
  265. */
  266. public function setSubkeytext($subkeytext)
  267. {
  268. $this->subkeytext = $subkeytext;
  269. return $this;
  270. }
  271. /**
  272. * Get subkeytext
  273. *
  274. * @return string
  275. */
  276. public function getSubkeytext()
  277. {
  278. return $this->subkeytext;
  279. }
  280. /**
  281. * Set accessUrl
  282. *
  283. * @param integer $accessUrl
  284. * @return EntitySettingsCurrent
  285. */
  286. public function setAccessUrl($accessUrl)
  287. {
  288. $this->accessUrl = $accessUrl;
  289. return $this;
  290. }
  291. /**
  292. * Get accessUrl
  293. *
  294. * @return integer
  295. */
  296. public function getAccessUrl()
  297. {
  298. return $this->accessUrl;
  299. }
  300. /**
  301. * Set accessUrlChangeable
  302. *
  303. * @param integer $accessUrlChangeable
  304. * @return EntitySettingsCurrent
  305. */
  306. public function setAccessUrlChangeable($accessUrlChangeable)
  307. {
  308. $this->accessUrlChangeable = $accessUrlChangeable;
  309. return $this;
  310. }
  311. /**
  312. * Get accessUrlChangeable
  313. *
  314. * @return integer
  315. */
  316. public function getAccessUrlChangeable()
  317. {
  318. return $this->accessUrlChangeable;
  319. }
  320. /**
  321. * Set accessUrlLocked
  322. *
  323. * @param integer $accessUrlLocked
  324. * @return EntitySettingsCurrent
  325. */
  326. public function setAccessUrlLocked($accessUrlLocked)
  327. {
  328. $this->accessUrlLocked = $accessUrlLocked;
  329. return $this;
  330. }
  331. /**
  332. * Get accessUrlLocked
  333. *
  334. * @return integer
  335. */
  336. public function getAccessUrlLocked()
  337. {
  338. return $this->accessUrlLocked;
  339. }
  340. }