123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- class SettingsOptions extends \Entity
- {
-
- public static function repository(){
- return \Entity\Repository\SettingsOptionsRepository::instance();
- }
-
- public static function create(){
- return new self();
- }
-
- protected $id;
-
- protected $variable;
-
- protected $value;
-
- protected $display_text;
-
- public function get_id()
- {
- return $this->id;
- }
-
- public function set_variable($value)
- {
- $this->variable = $value;
- return $this;
- }
-
- public function get_variable()
- {
- return $this->variable;
- }
-
- public function set_value($value)
- {
- $this->value = $value;
- return $this;
- }
-
- public function get_value()
- {
- return $this->value;
- }
-
- public function set_display_text($value)
- {
- $this->display_text = $value;
- return $this;
- }
-
- public function get_display_text()
- {
- return $this->display_text;
- }
- }
|