123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class EventEmailTemplate extends \Entity
- {
- /**
- * @return \Entity\Repository\EventEmailTemplateRepository
- */
- public static function repository(){
- return \Entity\Repository\EventEmailTemplateRepository::instance();
- }
- /**
- * @return \Entity\EventEmailTemplate
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var text $message
- */
- protected $message;
- /**
- * @var string $subject
- */
- protected $subject;
- /**
- * @var string $event_type_name
- */
- protected $event_type_name;
- /**
- * @var boolean $activated
- */
- protected $activated;
- /**
- * @var integer $language_id
- */
- protected $language_id;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set message
- *
- * @param text $value
- * @return EventEmailTemplate
- */
- public function set_message($value)
- {
- $this->message = $value;
- return $this;
- }
- /**
- * Get message
- *
- * @return text
- */
- public function get_message()
- {
- return $this->message;
- }
- /**
- * Set subject
- *
- * @param string $value
- * @return EventEmailTemplate
- */
- public function set_subject($value)
- {
- $this->subject = $value;
- return $this;
- }
- /**
- * Get subject
- *
- * @return string
- */
- public function get_subject()
- {
- return $this->subject;
- }
- /**
- * Set event_type_name
- *
- * @param string $value
- * @return EventEmailTemplate
- */
- public function set_event_type_name($value)
- {
- $this->event_type_name = $value;
- return $this;
- }
- /**
- * Get event_type_name
- *
- * @return string
- */
- public function get_event_type_name()
- {
- return $this->event_type_name;
- }
- /**
- * Set activated
- *
- * @param boolean $value
- * @return EventEmailTemplate
- */
- public function set_activated($value)
- {
- $this->activated = $value;
- return $this;
- }
- /**
- * Get activated
- *
- * @return boolean
- */
- public function get_activated()
- {
- return $this->activated;
- }
- /**
- * Set language_id
- *
- * @param integer $value
- * @return EventEmailTemplate
- */
- public function set_language_id($value)
- {
- $this->language_id = $value;
- return $this;
- }
- /**
- * Get language_id
- *
- * @return integer
- */
- public function get_language_id()
- {
- return $this->language_id;
- }
- }
|