コード例 #1
0
ファイル: Collection.php プロジェクト: nja78/magento2
 /**
  * Check attribute is Text and is Searchable
  *
  * @param \Magento\Catalog\Model\Entity\Attribute $attribute
  * @return boolean
  */
 protected function _isAttributeTextAndSearchable($attribute)
 {
     if ($attribute->getIsSearchable() && !in_array($attribute->getFrontendInput(), ['select', 'multiselect']) && (in_array($attribute->getBackendType(), ['varchar', 'text']) || $attribute->getBackendType() == 'static')) {
         return true;
     }
     return false;
 }