コード例 #1
0
ファイル: Corso.php プロジェクト: pizar/gaia
 /**
  * Informa se un corso è cancellabile da un determianto utente
  * @return bool 
  */
 public function cancellabileDa(Utente $u)
 {
     return (bool) contiene($this, $u->corsiInGestione());
 }