本文整理汇总了PHP中Magento\Eav\Model\Config::isCacheEnabled方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::isCacheEnabled方法的具体用法?PHP Config::isCacheEnabled怎么用?PHP Config::isCacheEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Eav\Model\Config
的用法示例。
在下文中一共展示了Config::isCacheEnabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSetInfo
/**
* Retrieve Set info by attributes
*
* @param array $attributeIds
* @param int $setId
* @return array
*/
public function getSetInfo(array $attributeIds, $setId = null)
{
$cacheKey = self::ATTRIBUTES_CACHE_ID . $setId;
if ($this->eavConfig->isCacheEnabled() && ($cache = $this->eavConfig->getCache()->load($cacheKey))) {
$setInfoData = unserialize($cache);
} else {
$attributeSetData = $this->fetchAttributeSetData($setId);
$setInfoData = [];
foreach ($attributeSetData as $row) {
$data = ['group_id' => $row['attribute_group_id'], 'group_sort' => $row['group_sort_order'], 'sort' => $row['sort_order']];
$setInfoData[$row['attribute_id']][$row['attribute_set_id']] = $data;
}
if ($this->eavConfig->isCacheEnabled()) {
$this->eavConfig->getCache()->save(serialize($setInfoData), $cacheKey, [\Magento\Eav\Model\Cache\Type::CACHE_TAG, \Magento\Eav\Model\Entity\Attribute::CACHE_TAG]);
}
}
$setInfo = [];
foreach ($attributeIds as $attributeId) {
$setInfo[$attributeId] = isset($setInfoData[$attributeId]) ? $setInfoData[$attributeId] : [];
}
return $setInfo;
}