コード例 #1
0
ファイル: PersonGen.class.php プロジェクト: alcf/chms
 /**
  * Counts all many-to-many associated CommunicationLists
  * @return int
  */
 public function CountCommunicationLists()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return CommunicationList::CountByPerson($this->intId);
 }