Exemplo n.º 1
0
Arquivo: Post.php Projeto: sks40gb/jnv
 public function __construct()
 {
     $this->comments = new \Doctrine\Common\Collections\ArrayCollection();
     $this->tags = new \Doctrine\Common\Collections\ArrayCollection();
     $this->postedAt = \SKS\UTIL\DateUtil::getCurrentDateTime();
     $this->publish = true;
 }
Exemplo n.º 2
0
Arquivo: User.php Projeto: sks40gb/jnv
 public function __construct()
 {
     $this->postList = new \Doctrine\Common\Collections\ArrayCollection();
     //$this->active = true;
     $this->role = "AUTHOR";
     $this->createdOn = \SKS\UTIL\DateUtil::getCurrentDateTime();
 }
Exemplo n.º 3
0
 public function __construct()
 {
     $this->date = \SKS\UTIL\DateUtil::getCurrentDateTime();
     $this->active = true;
 }
Exemplo n.º 4
0
 public function __construct()
 {
     $this->sentAt = \SKS\UTIL\DateUtil::getCurrentDateTime();
 }
Exemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->commentedAt = \SKS\UTIL\DateUtil::getCurrentDateTime();
 }