settings_options.class.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 SettingsOptions extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SettingsOptionsRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SettingsOptionsRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SettingsOptions
  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 $value
  33. */
  34. protected $value;
  35. /**
  36. * @var string $display_text
  37. */
  38. protected $display_text;
  39. /**
  40. * Get id
  41. *
  42. * @return integer
  43. */
  44. public function get_id()
  45. {
  46. return $this->id;
  47. }
  48. /**
  49. * Set variable
  50. *
  51. * @param string $value
  52. * @return SettingsOptions
  53. */
  54. public function set_variable($value)
  55. {
  56. $this->variable = $value;
  57. return $this;
  58. }
  59. /**
  60. * Get variable
  61. *
  62. * @return string
  63. */
  64. public function get_variable()
  65. {
  66. return $this->variable;
  67. }
  68. /**
  69. * Set value
  70. *
  71. * @param string $value
  72. * @return SettingsOptions
  73. */
  74. public function set_value($value)
  75. {
  76. $this->value = $value;
  77. return $this;
  78. }
  79. /**
  80. * Get value
  81. *
  82. * @return string
  83. */
  84. public function get_value()
  85. {
  86. return $this->value;
  87. }
  88. /**
  89. * Set display_text
  90. *
  91. * @param string $value
  92. * @return SettingsOptions
  93. */
  94. public function set_display_text($value)
  95. {
  96. $this->display_text = $value;
  97. return $this;
  98. }
  99. /**
  100. * Get display_text
  101. *
  102. * @return string
  103. */
  104. public function get_display_text()
  105. {
  106. return $this->display_text;
  107. }
  108. }