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