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