コード例 #1
0
ファイル: ics.php プロジェクト: nnaannoo/paskot
 function GetChangeCount()
 {
     if ($this->exporter) {
         return mapi_exportchanges_getchangecount($this->exporter);
     } else {
         return 0;
     }
 }
コード例 #2
0
ファイル: ics.php プロジェクト: netconstructor/activesync
 function GetChangeCount()
 {
     if ($this->exporter) {
         $changes = mapi_exportchanges_getchangecount($this->exporter);
         if ($this->_smsoutboxsync && $this->_smsoutboxinitialsync && $changes == 0) {
             return 1;
         }
         return $changes;
     } else {
         return 0;
     }
 }