本文整理汇总了PHP中Magento\Catalog\Model\Product\Option::getData方法的典型用法代码示例。如果您正苦于以下问题:PHP Option::getData方法的具体用法?PHP Option::getData怎么用?PHP Option::getData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Catalog\Model\Product\Option
的用法示例。
在下文中一共展示了Option::getData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validateOptionValue
/**
* Validate option type fields
*
* @param Option $option
* @return bool
*/
protected function validateOptionValue(Option $option)
{
$values = $option->getData('values');
if (!is_array($values) || $this->isEmpty($values)) {
return false;
}
//forbid removal of last value for option
if ($this->checkAllValuesRemoved($values)) {
return false;
}
foreach ($option->getData('values') as $value) {
$type = isset($value['price_type']) ? $value['price_type'] : '';
$price = isset($value['price']) ? $value['price'] : 0;
$title = isset($value['title']) ? $value['title'] : '';
if (!$this->isInRange($type, $this->priceTypes) || $this->isNegative($price) || $this->isEmpty($title)) {
return false;
}
}
return true;
}
示例2: validateOptionValue
/**
* Validate option type fields
*
* @param Option $option
* @return bool
*/
protected function validateOptionValue(Option $option)
{
$values = $option->getData('values');
if (!is_array($values) || $this->isEmpty($values)) {
return false;
}
//forbid removal of last value for option
if ($this->checkAllValuesRemoved($values)) {
return false;
}
$storeId = \Magento\Store\Model\Store::DEFAULT_STORE_ID;
if ($option->getProduct()) {
$storeId = $option->getProduct()->getStoreId();
}
foreach ($option->getData('values') as $value) {
$type = isset($value['price_type']) ? $value['price_type'] : null;
$price = isset($value['price']) ? $value['price'] : null;
$title = isset($value['title']) ? $value['title'] : null;
if (!$this->isValidOptionPrice($type, $price, $storeId) || !$this->isValidOptionTitle($title, $storeId)) {
return false;
}
}
return true;
}
示例3: getOptionData
/**
* Retrieve option data
*
* @param \Magento\Catalog\Model\Product\Option $option
* @return array
*/
protected function getOptionData(\Magento\Catalog\Model\Product\Option $option)
{
$result = [];
foreach (array_keys($this->_assertOptions) as $assertKey) {
$result[$assertKey] = $option->getData($assertKey);
}
return $result;
}