settings_current.class.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. *
  6. * @license see /license.txt
  7. * @author autogenerated
  8. */
  9. class SettingsCurrent extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SettingsCurrentRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SettingsCurrentRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SettingsCurrent
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $variable
  29. */
  30. protected $variable;
  31. /**
  32. * @var string $subkey
  33. */
  34. protected $subkey;
  35. /**
  36. * @var string $type
  37. */
  38. protected $type;
  39. /**
  40. * @var string $category
  41. */
  42. protected $category;
  43. /**
  44. * @var string $selected_value
  45. */
  46. protected $selected_value;
  47. /**
  48. * @var string $title
  49. */
  50. protected $title;
  51. /**
  52. * @var string $comment
  53. */
  54. protected $comment;
  55. /**
  56. * @var string $scope
  57. */
  58. protected $scope;
  59. /**
  60. * @var string $subkeytext
  61. */
  62. protected $subkeytext;
  63. /**
  64. * @var integer $access_url
  65. */
  66. protected $access_url;
  67. /**
  68. * @var integer $access_url_changeable
  69. */
  70. protected $access_url_changeable;
  71. /**
  72. * @var integer $access_url_locked
  73. */
  74. protected $access_url_locked;
  75. /**
  76. * Get id
  77. *
  78. * @return integer
  79. */
  80. public function get_id()
  81. {
  82. return $this->id;
  83. }
  84. /**
  85. * Set variable
  86. *
  87. * @param string $value
  88. * @return SettingsCurrent
  89. */
  90. public function set_variable($value)
  91. {
  92. $this->variable = $value;
  93. return $this;
  94. }
  95. /**
  96. * Get variable
  97. *
  98. * @return string
  99. */
  100. public function get_variable()
  101. {
  102. return $this->variable;
  103. }
  104. /**
  105. * Set subkey
  106. *
  107. * @param string $value
  108. * @return SettingsCurrent
  109. */
  110. public function set_subkey($value)
  111. {
  112. $this->subkey = $value;
  113. return $this;
  114. }
  115. /**
  116. * Get subkey
  117. *
  118. * @return string
  119. */
  120. public function get_subkey()
  121. {
  122. return $this->subkey;
  123. }
  124. /**
  125. * Set type
  126. *
  127. * @param string $value
  128. * @return SettingsCurrent
  129. */
  130. public function set_type($value)
  131. {
  132. $this->type = $value;
  133. return $this;
  134. }
  135. /**
  136. * Get type
  137. *
  138. * @return string
  139. */
  140. public function get_type()
  141. {
  142. return $this->type;
  143. }
  144. /**
  145. * Set category
  146. *
  147. * @param string $value
  148. * @return SettingsCurrent
  149. */
  150. public function set_category($value)
  151. {
  152. $this->category = $value;
  153. return $this;
  154. }
  155. /**
  156. * Get category
  157. *
  158. * @return string
  159. */
  160. public function get_category()
  161. {
  162. return $this->category;
  163. }
  164. /**
  165. * Set selected_value
  166. *
  167. * @param string $value
  168. * @return SettingsCurrent
  169. */
  170. public function set_selected_value($value)
  171. {
  172. $this->selected_value = $value;
  173. return $this;
  174. }
  175. /**
  176. * Get selected_value
  177. *
  178. * @return string
  179. */
  180. public function get_selected_value()
  181. {
  182. return $this->selected_value;
  183. }
  184. /**
  185. * Set title
  186. *
  187. * @param string $value
  188. * @return SettingsCurrent
  189. */
  190. public function set_title($value)
  191. {
  192. $this->title = $value;
  193. return $this;
  194. }
  195. /**
  196. * Get title
  197. *
  198. * @return string
  199. */
  200. public function get_title()
  201. {
  202. return $this->title;
  203. }
  204. /**
  205. * Set comment
  206. *
  207. * @param string $value
  208. * @return SettingsCurrent
  209. */
  210. public function set_comment($value)
  211. {
  212. $this->comment = $value;
  213. return $this;
  214. }
  215. /**
  216. * Get comment
  217. *
  218. * @return string
  219. */
  220. public function get_comment()
  221. {
  222. return $this->comment;
  223. }
  224. /**
  225. * Set scope
  226. *
  227. * @param string $value
  228. * @return SettingsCurrent
  229. */
  230. public function set_scope($value)
  231. {
  232. $this->scope = $value;
  233. return $this;
  234. }
  235. /**
  236. * Get scope
  237. *
  238. * @return string
  239. */
  240. public function get_scope()
  241. {
  242. return $this->scope;
  243. }
  244. /**
  245. * Set subkeytext
  246. *
  247. * @param string $value
  248. * @return SettingsCurrent
  249. */
  250. public function set_subkeytext($value)
  251. {
  252. $this->subkeytext = $value;
  253. return $this;
  254. }
  255. /**
  256. * Get subkeytext
  257. *
  258. * @return string
  259. */
  260. public function get_subkeytext()
  261. {
  262. return $this->subkeytext;
  263. }
  264. /**
  265. * Set access_url
  266. *
  267. * @param integer $value
  268. * @return SettingsCurrent
  269. */
  270. public function set_access_url($value)
  271. {
  272. $this->access_url = $value;
  273. return $this;
  274. }
  275. /**
  276. * Get access_url
  277. *
  278. * @return integer
  279. */
  280. public function get_access_url()
  281. {
  282. return $this->access_url;
  283. }
  284. /**
  285. * Set access_url_changeable
  286. *
  287. * @param integer $value
  288. * @return SettingsCurrent
  289. */
  290. public function set_access_url_changeable($value)
  291. {
  292. $this->access_url_changeable = $value;
  293. return $this;
  294. }
  295. /**
  296. * Get access_url_changeable
  297. *
  298. * @return integer
  299. */
  300. public function get_access_url_changeable()
  301. {
  302. return $this->access_url_changeable;
  303. }
  304. /**
  305. * Set access_url_locked
  306. *
  307. * @param integer $value
  308. * @return SettingsCurrent
  309. */
  310. public function set_access_url_locked($value)
  311. {
  312. $this->access_url_locked = $value;
  313. return $this;
  314. }
  315. /**
  316. * Get access_url_locked
  317. *
  318. * @return integer
  319. */
  320. public function get_access_url_locked()
  321. {
  322. return $this->access_url_locked;
  323. }
  324. }