예제 #1
0
 /**
  *
  * @param string $tuduId
  * @param array  $uniqueIds
  * @return boolean
  */
 public function removeMeetingAttendee($tuduId, array $uniqueIds)
 {
     foreach ($uniqueIds as $uniqueId) {
         $this->_tuduDao->removeAccepter($tuduId, $uniqueId);
         $this->_tuduDao->deleteLabel($tuduId, $uniqueId, '^i');
         $this->_tuduDao->deleteLabel($tuduId, $uniqueId, '^a');
     }
     return true;
 }