Beispiel #1
0
 /**
  * Whether the specified attribute needs to skip rendering/validation
  *
  * @param \Magento\Eav\Model\Attribute $attribute
  * @return bool
  */
 protected function _isAttributeOmitted($attribute)
 {
     if ($this->_ignoreInvisible && !$attribute->getIsVisible()) {
         return true;
     }
     return false;
 }