Exemple #1
0
 /**
  * Get Join status
  *
  * @return Integer
  */
 public function getJoined(User $user)
 {
     return $user->getGroups()->contains($this) ? 1 : 0;
 }
 public function getGroups()
 {
     $this->__load();
     return parent::getGroups();
 }