TYPO3 CMS  TYPO3_8-7
DateExample.php
Go to the documentation of this file.
1 <?php
3 
5 
7 {
8 
14  protected $datetimeText;
15 
21  protected $datetimeInt;
22 
28  protected $datetimeDatetime;
29 
33  public function getDatetimeText()
34  {
35  return $this->datetimeText;
36  }
37 
41  public function setDatetimeText($datetimeText)
42  {
43  $this->datetimeText = $datetimeText;
44  }
45 
49  public function getDatetimeInt()
50  {
51  return $this->datetimeInt;
52  }
53 
57  public function setDatetimeInt($datetimeInt)
58  {
59  $this->datetimeInt = $datetimeInt;
60  }
61 
65  public function getDatetimeDatetime()
66  {
68  }
69 
74  {
75  $this->datetimeDatetime = $datetimeDatetime;
76  }
77 }