示例#1
0
 /**
  * Проверить, что нужно игнорить ошибки при импорте
  *
  * @return bool
  */
 public function isIgnoreErrors()
 {
     if (!$this->checkCond(self::IGNORE_ERRORS) && $this->parent) {
         $this->cond(self::IGNORE_ERRORS, $this->parent->isIgnoreErrors());
     }
     return $this->getCond(self::CASCADE_ALLOWED, false);
 }