コード例 #1
0
ファイル: SignupEntryGen.class.php プロジェクト: alcf/chms
 /**
  * Counts all associated SignupProducts
  * @return int
  */
 public function CountSignupProducts()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return SignupProduct::CountBySignupEntryId($this->intId);
 }