/**
  * Returns all meetings that takes place during the current meeting object
  * @global ilDB $ilDB
  * @return boolean
  */
 public function checkConcurrentMeetingDates()
 {
     require_once dirname(__FILE__) . '/class.ilAdobeConnectQuota.php';
     $quota = new ilAdobeConnectQuota();
     return $quota->checkConcurrentMeetingDates($this->getEndDate(), $this->getStartDate(), $this->getId() ? $this->getId() : null);
 }