예제 #1
0
파일: CorsoBase.php 프로젝트: pizar/gaia
 /**
  * Informa se un corso è cancellabile da un determianto utente
  * @return bool 
  */
 public function cancellabileDa(Utente $u)
 {
     return (bool) contiene($this, $u->corsiBaseDiGestione());
 }