src/Entity/LimeSurveysLanguagesettings.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\LimeSurveysLanguagesettingsRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8. * LimeSurveysLanguagesettings.
  9. *
  10. * @ORM\Table(name="lime_surveys_languagesettings")
  11. *
  12. * @ORM\Entity(repositoryClass=LimeSurveysLanguagesettingsRepository::class)
  13. */
  14. class LimeSurveysLanguagesettings
  15. {
  16. public $nb_invitations;
  17. public $no_answered;
  18. /**
  19. * @var int
  20. *
  21. * @ORM\Column(name="surveyls_survey_id", type="integer", nullable=false)
  22. *
  23. * @ORM\Id
  24. *
  25. * @ORM\GeneratedValue(strategy="NONE")
  26. */
  27. private $surveylsSurveyId;
  28. /**
  29. * @var string
  30. *
  31. * @ORM\Column(name="surveyls_language", type="string", length=45, nullable=false)
  32. *
  33. * @ORM\Id
  34. *
  35. * @ORM\GeneratedValue(strategy="NONE")
  36. */
  37. private $surveylsLanguage;
  38. /**
  39. * @var string
  40. *
  41. * @ORM\Column(name="surveyls_title", type="string", length=200, nullable=false)
  42. */
  43. private $surveylsTitle;
  44. /**
  45. * @var string
  46. *
  47. * @ORM\Column(name="surveyls_description", type="text", nullable=true)
  48. */
  49. private $surveylsDescription;
  50. /**
  51. * @var string
  52. *
  53. * @ORM\Column(name="surveyls_welcometext", type="text", nullable=true)
  54. */
  55. private $surveylsWelcometext;
  56. /**
  57. * @var string
  58. *
  59. * @ORM\Column(name="surveyls_endtext", type="text", nullable=true)
  60. */
  61. private $surveylsEndtext;
  62. /**
  63. * @var string
  64. *
  65. * @ORM\Column(name="surveyls_url", type="text", nullable=true)
  66. */
  67. private $surveylsUrl;
  68. /**
  69. * @var string
  70. *
  71. * @ORM\Column(name="surveyls_urldescription", type="string", length=255, nullable=true)
  72. */
  73. private $surveylsUrldescription;
  74. /**
  75. * @var string
  76. *
  77. * @ORM\Column(name="surveyls_email_invite_subj", type="string", length=255, nullable=true)
  78. */
  79. private $surveylsEmailInviteSubj;
  80. /**
  81. * @var string
  82. *
  83. * @ORM\Column(name="surveyls_email_invite", type="text", nullable=true)
  84. */
  85. private $surveylsEmailInvite;
  86. /**
  87. * @var string
  88. *
  89. * @ORM\Column(name="surveyls_email_remind_subj", type="string", length=255, nullable=true)
  90. */
  91. private $surveylsEmailRemindSubj;
  92. /**
  93. * @var string
  94. *
  95. * @ORM\Column(name="surveyls_email_remind", type="text", nullable=true)
  96. */
  97. private $surveylsEmailRemind;
  98. /**
  99. * @var string
  100. *
  101. * @ORM\Column(name="surveyls_email_register_subj", type="string", length=255, nullable=true)
  102. */
  103. private $surveylsEmailRegisterSubj;
  104. /**
  105. * @var string
  106. *
  107. * @ORM\Column(name="surveyls_email_register", type="text", nullable=true)
  108. */
  109. private $surveylsEmailRegister;
  110. /**
  111. * @var string
  112. *
  113. * @ORM\Column(name="surveyls_email_confirm_subj", type="string", length=255, nullable=true)
  114. */
  115. private $surveylsEmailConfirmSubj;
  116. /**
  117. * @var string
  118. *
  119. * @ORM\Column(name="surveyls_email_confirm", type="text", nullable=true)
  120. */
  121. private $surveylsEmailConfirm;
  122. /**
  123. * @var int
  124. *
  125. * @ORM\Column(name="surveyls_dateformat", type="integer", nullable=false)
  126. */
  127. private $surveylsDateformat;
  128. /**
  129. * @var string
  130. *
  131. * @ORM\Column(name="surveyls_attributecaptions", type="text", nullable=true)
  132. */
  133. private $surveylsAttributecaptions;
  134. /**
  135. * @var string
  136. *
  137. * @ORM\Column(name="email_admin_notification_subj", type="string", length=255, nullable=true)
  138. */
  139. private $emailAdminNotificationSubj;
  140. /**
  141. * @var string
  142. *
  143. * @ORM\Column(name="email_admin_notification", type="text", nullable=true)
  144. */
  145. private $emailAdminNotification;
  146. /**
  147. * @var string
  148. *
  149. * @ORM\Column(name="email_admin_responses_subj", type="string", length=255, nullable=true)
  150. */
  151. private $emailAdminResponsesSubj;
  152. /**
  153. * @var string
  154. *
  155. * @ORM\Column(name="email_admin_responses", type="text", nullable=true)
  156. */
  157. private $emailAdminResponses;
  158. /**
  159. * @var int
  160. *
  161. * @ORM\Column(name="surveyls_numberformat", type="integer", nullable=false)
  162. */
  163. private $surveylsNumberformat;
  164. /**
  165. * @var string
  166. *
  167. * @ORM\Column(name="attachments", type="text", nullable=true)
  168. */
  169. private $attachments;
  170. private $completed_responses;
  171. private $incompleted_responses;
  172. private $full_responses;
  173. /**
  174. * Set surveylsTitle.
  175. *
  176. * @param string $surveylsTitle
  177. */
  178. public function setSurveylsTitle($surveylsTitle): static
  179. {
  180. $this->surveylsTitle = $surveylsTitle;
  181. return $this;
  182. }
  183. /**
  184. * Get surveylsTitle.
  185. *
  186. * @return string
  187. */
  188. public function getSurveylsTitle()
  189. {
  190. return $this->surveylsTitle;
  191. }
  192. /**
  193. * Set surveylsDescription.
  194. *
  195. * @param string $surveylsDescription
  196. */
  197. public function setSurveylsDescription($surveylsDescription): static
  198. {
  199. $this->surveylsDescription = $surveylsDescription;
  200. return $this;
  201. }
  202. /**
  203. * Get surveylsDescription.
  204. *
  205. * @return string
  206. */
  207. public function getSurveylsDescription()
  208. {
  209. return $this->surveylsDescription;
  210. }
  211. /**
  212. * Set surveylsWelcometext.
  213. *
  214. * @param string $surveylsWelcometext
  215. */
  216. public function setSurveylsWelcometext($surveylsWelcometext): static
  217. {
  218. $this->surveylsWelcometext = $surveylsWelcometext;
  219. return $this;
  220. }
  221. /**
  222. * Get surveylsWelcometext.
  223. *
  224. * @return string
  225. */
  226. public function getSurveylsWelcometext()
  227. {
  228. return $this->surveylsWelcometext;
  229. }
  230. /**
  231. * Set surveylsEndtext.
  232. *
  233. * @param string $surveylsEndtext
  234. */
  235. public function setSurveylsEndtext($surveylsEndtext): static
  236. {
  237. $this->surveylsEndtext = $surveylsEndtext;
  238. return $this;
  239. }
  240. /**
  241. * Get surveylsEndtext.
  242. *
  243. * @return string
  244. */
  245. public function getSurveylsEndtext()
  246. {
  247. return $this->surveylsEndtext;
  248. }
  249. /**
  250. * Set surveylsUrl.
  251. *
  252. * @param string $surveylsUrl
  253. */
  254. public function setSurveylsUrl($surveylsUrl): static
  255. {
  256. $this->surveylsUrl = $surveylsUrl;
  257. return $this;
  258. }
  259. /**
  260. * Get surveylsUrl.
  261. *
  262. * @return string
  263. */
  264. public function getSurveylsUrl()
  265. {
  266. return $this->surveylsUrl;
  267. }
  268. /**
  269. * Set surveylsUrldescription.
  270. *
  271. * @param string $surveylsUrldescription
  272. */
  273. public function setSurveylsUrldescription($surveylsUrldescription): static
  274. {
  275. $this->surveylsUrldescription = $surveylsUrldescription;
  276. return $this;
  277. }
  278. /**
  279. * Get surveylsUrldescription.
  280. *
  281. * @return string
  282. */
  283. public function getSurveylsUrldescription()
  284. {
  285. return $this->surveylsUrldescription;
  286. }
  287. /**
  288. * Set surveylsEmailInviteSubj.
  289. *
  290. * @param string $surveylsEmailInviteSubj
  291. */
  292. public function setSurveylsEmailInviteSubj($surveylsEmailInviteSubj): static
  293. {
  294. $this->surveylsEmailInviteSubj = $surveylsEmailInviteSubj;
  295. return $this;
  296. }
  297. /**
  298. * Get surveylsEmailInviteSubj.
  299. *
  300. * @return string
  301. */
  302. public function getSurveylsEmailInviteSubj()
  303. {
  304. return $this->surveylsEmailInviteSubj;
  305. }
  306. /**
  307. * Set surveylsEmailInvite.
  308. *
  309. * @param string $surveylsEmailInvite
  310. */
  311. public function setSurveylsEmailInvite($surveylsEmailInvite): static
  312. {
  313. $this->surveylsEmailInvite = $surveylsEmailInvite;
  314. return $this;
  315. }
  316. /**
  317. * Get surveylsEmailInvite.
  318. *
  319. * @return string
  320. */
  321. public function getSurveylsEmailInvite()
  322. {
  323. return $this->surveylsEmailInvite;
  324. }
  325. /**
  326. * Set surveylsEmailRemindSubj.
  327. *
  328. * @param string $surveylsEmailRemindSubj
  329. */
  330. public function setSurveylsEmailRemindSubj($surveylsEmailRemindSubj): static
  331. {
  332. $this->surveylsEmailRemindSubj = $surveylsEmailRemindSubj;
  333. return $this;
  334. }
  335. /**
  336. * Get surveylsEmailRemindSubj.
  337. *
  338. * @return string
  339. */
  340. public function getSurveylsEmailRemindSubj()
  341. {
  342. return $this->surveylsEmailRemindSubj;
  343. }
  344. /**
  345. * Set surveylsEmailRemind.
  346. *
  347. * @param string $surveylsEmailRemind
  348. */
  349. public function setSurveylsEmailRemind($surveylsEmailRemind): static
  350. {
  351. $this->surveylsEmailRemind = $surveylsEmailRemind;
  352. return $this;
  353. }
  354. /**
  355. * Get surveylsEmailRemind.
  356. *
  357. * @return string
  358. */
  359. public function getSurveylsEmailRemind()
  360. {
  361. return $this->surveylsEmailRemind;
  362. }
  363. /**
  364. * Set surveylsEmailRegisterSubj.
  365. *
  366. * @param string $surveylsEmailRegisterSubj
  367. */
  368. public function setSurveylsEmailRegisterSubj($surveylsEmailRegisterSubj): static
  369. {
  370. $this->surveylsEmailRegisterSubj = $surveylsEmailRegisterSubj;
  371. return $this;
  372. }
  373. /**
  374. * Get surveylsEmailRegisterSubj.
  375. *
  376. * @return string
  377. */
  378. public function getSurveylsEmailRegisterSubj()
  379. {
  380. return $this->surveylsEmailRegisterSubj;
  381. }
  382. /**
  383. * Set surveylsEmailRegister.
  384. *
  385. * @param string $surveylsEmailRegister
  386. */
  387. public function setSurveylsEmailRegister($surveylsEmailRegister): static
  388. {
  389. $this->surveylsEmailRegister = $surveylsEmailRegister;
  390. return $this;
  391. }
  392. /**
  393. * Get surveylsEmailRegister.
  394. *
  395. * @return string
  396. */
  397. public function getSurveylsEmailRegister()
  398. {
  399. return $this->surveylsEmailRegister;
  400. }
  401. /**
  402. * Set surveylsEmailConfirmSubj.
  403. *
  404. * @param string $surveylsEmailConfirmSubj
  405. */
  406. public function setSurveylsEmailConfirmSubj($surveylsEmailConfirmSubj): static
  407. {
  408. $this->surveylsEmailConfirmSubj = $surveylsEmailConfirmSubj;
  409. return $this;
  410. }
  411. /**
  412. * Get surveylsEmailConfirmSubj.
  413. *
  414. * @return string
  415. */
  416. public function getSurveylsEmailConfirmSubj()
  417. {
  418. return $this->surveylsEmailConfirmSubj;
  419. }
  420. /**
  421. * Set surveylsEmailConfirm.
  422. *
  423. * @param string $surveylsEmailConfirm
  424. */
  425. public function setSurveylsEmailConfirm($surveylsEmailConfirm): static
  426. {
  427. $this->surveylsEmailConfirm = $surveylsEmailConfirm;
  428. return $this;
  429. }
  430. /**
  431. * Get surveylsEmailConfirm.
  432. *
  433. * @return string
  434. */
  435. public function getSurveylsEmailConfirm()
  436. {
  437. return $this->surveylsEmailConfirm;
  438. }
  439. /**
  440. * Set surveylsDateformat.
  441. *
  442. * @param int $surveylsDateformat
  443. */
  444. public function setSurveylsDateformat($surveylsDateformat): static
  445. {
  446. $this->surveylsDateformat = $surveylsDateformat;
  447. return $this;
  448. }
  449. /**
  450. * Get surveylsDateformat.
  451. *
  452. * @return int
  453. */
  454. public function getSurveylsDateformat()
  455. {
  456. return $this->surveylsDateformat;
  457. }
  458. /**
  459. * Set surveylsAttributecaptions.
  460. *
  461. * @param string $surveylsAttributecaptions
  462. */
  463. public function setSurveylsAttributecaptions($surveylsAttributecaptions): static
  464. {
  465. $this->surveylsAttributecaptions = $surveylsAttributecaptions;
  466. return $this;
  467. }
  468. /**
  469. * Get surveylsAttributecaptions.
  470. *
  471. * @return string
  472. */
  473. public function getSurveylsAttributecaptions()
  474. {
  475. return $this->surveylsAttributecaptions;
  476. }
  477. /**
  478. * Set emailAdminNotificationSubj.
  479. *
  480. * @param string $emailAdminNotificationSubj
  481. */
  482. public function setEmailAdminNotificationSubj($emailAdminNotificationSubj): static
  483. {
  484. $this->emailAdminNotificationSubj = $emailAdminNotificationSubj;
  485. return $this;
  486. }
  487. /**
  488. * Get emailAdminNotificationSubj.
  489. *
  490. * @return string
  491. */
  492. public function getEmailAdminNotificationSubj()
  493. {
  494. return $this->emailAdminNotificationSubj;
  495. }
  496. /**
  497. * Set emailAdminNotification.
  498. *
  499. * @param string $emailAdminNotification
  500. */
  501. public function setEmailAdminNotification($emailAdminNotification): static
  502. {
  503. $this->emailAdminNotification = $emailAdminNotification;
  504. return $this;
  505. }
  506. /**
  507. * Get emailAdminNotification.
  508. *
  509. * @return string
  510. */
  511. public function getEmailAdminNotification()
  512. {
  513. return $this->emailAdminNotification;
  514. }
  515. /**
  516. * Set emailAdminResponsesSubj.
  517. *
  518. * @param string $emailAdminResponsesSubj
  519. */
  520. public function setEmailAdminResponsesSubj($emailAdminResponsesSubj): static
  521. {
  522. $this->emailAdminResponsesSubj = $emailAdminResponsesSubj;
  523. return $this;
  524. }
  525. /**
  526. * Get emailAdminResponsesSubj.
  527. *
  528. * @return string
  529. */
  530. public function getEmailAdminResponsesSubj()
  531. {
  532. return $this->emailAdminResponsesSubj;
  533. }
  534. /**
  535. * Set emailAdminResponses.
  536. *
  537. * @param string $emailAdminResponses
  538. */
  539. public function setEmailAdminResponses($emailAdminResponses): static
  540. {
  541. $this->emailAdminResponses = $emailAdminResponses;
  542. return $this;
  543. }
  544. /**
  545. * Get emailAdminResponses.
  546. *
  547. * @return string
  548. */
  549. public function getEmailAdminResponses()
  550. {
  551. return $this->emailAdminResponses;
  552. }
  553. /**
  554. * Set surveylsNumberformat.
  555. *
  556. * @param int $surveylsNumberformat
  557. */
  558. public function setSurveylsNumberformat($surveylsNumberformat): static
  559. {
  560. $this->surveylsNumberformat = $surveylsNumberformat;
  561. return $this;
  562. }
  563. /**
  564. * Get surveylsNumberformat.
  565. *
  566. * @return int
  567. */
  568. public function getSurveylsNumberformat()
  569. {
  570. return $this->surveylsNumberformat;
  571. }
  572. /**
  573. * Set attachments.
  574. *
  575. * @param string $attachments
  576. */
  577. public function setAttachments($attachments): static
  578. {
  579. $this->attachments = $attachments;
  580. return $this;
  581. }
  582. /**
  583. * Get attachments.
  584. *
  585. * @return string
  586. */
  587. public function getAttachments()
  588. {
  589. return $this->attachments;
  590. }
  591. /**
  592. * Set surveylsSurveyId.
  593. *
  594. * @param int $surveylsSurveyId
  595. */
  596. public function setSurveylsSurveyId($surveylsSurveyId): static
  597. {
  598. $this->surveylsSurveyId = $surveylsSurveyId;
  599. return $this;
  600. }
  601. /**
  602. * Get surveylsSurveyId.
  603. *
  604. * @return int
  605. */
  606. public function getSurveylsSurveyId()
  607. {
  608. return $this->surveylsSurveyId;
  609. }
  610. /**
  611. * Set surveylsLanguage.
  612. *
  613. * @param string $surveylsLanguage
  614. */
  615. public function setSurveylsLanguage($surveylsLanguage): static
  616. {
  617. $this->surveylsLanguage = $surveylsLanguage;
  618. return $this;
  619. }
  620. /**
  621. * Get surveylsLanguage.
  622. *
  623. * @return string
  624. */
  625. public function getSurveylsLanguage()
  626. {
  627. return $this->surveylsLanguage;
  628. }
  629. public function setNbInvitation($nbInvitation): static
  630. {
  631. $this->nb_invitations = $nbInvitation;
  632. return $this;
  633. }
  634. public function setCompletedResponses($completed_responses): static
  635. {
  636. $this->completed_responses = $completed_responses;
  637. return $this;
  638. }
  639. public function getCompletedResponses()
  640. {
  641. return $this->completed_responses;
  642. }
  643. public function setIncompletedResponses($incompleted_responses): static
  644. {
  645. $this->incompleted_responses = $incompleted_responses;
  646. return $this;
  647. }
  648. public function getNbInvitation()
  649. {
  650. return $this->nb_invitations;
  651. }
  652. public function getIncompletedResponses()
  653. {
  654. return $this->incompleted_responses;
  655. }
  656. public function setFullResponses($full_responses): static
  657. {
  658. $this->full_responses = $full_responses;
  659. return $this;
  660. }
  661. public function getFullResponses()
  662. {
  663. return $this->full_responses;
  664. }
  665. public function setNoAnswered($no_answered): static
  666. {
  667. $this->no_answered = $no_answered;
  668. return $this;
  669. }
  670. public function getNoAnswered()
  671. {
  672. return $this->no_answered;
  673. }
  674. }