本文整理汇总了PHP中Mage_Eav_Model_Entity_Attribute_Abstract::getSourceModel方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Eav_Model_Entity_Attribute_Abstract::getSourceModel方法的具体用法?PHP Mage_Eav_Model_Entity_Attribute_Abstract::getSourceModel怎么用?PHP Mage_Eav_Model_Entity_Attribute_Abstract::getSourceModel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Eav_Model_Entity_Attribute_Abstract
的用法示例。
在下文中一共展示了Mage_Eav_Model_Entity_Attribute_Abstract::getSourceModel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _validateAttributeWithSource
/**
* Validate attribute value for attributes with source models
*
* @param Mage_Eav_Model_Entity_Attribute_Abstract $attribute
* @param mixed $attrValue
* @return array|bool
*/
protected function _validateAttributeWithSource(Mage_Eav_Model_Entity_Attribute_Abstract $attribute, $attrValue)
{
$errors = array();
// validate attributes with source models
if (null !== $attrValue && $attribute->getSourceModel()) {
if ('multiselect' !== $attribute->getFrontendInput() && is_array($attrValue)) {
return array('Invalid value type for ' . $attribute->getAttributeCode());
}
$possibleValues = $attribute->getSource()->getAllOptions(false);
foreach ((array) $attrValue as $value) {
if (is_scalar($value)) {
$value = (string) $value;
$isValid = false;
foreach ($possibleValues as $optionData) {
// comparison without types check is performed only when both values are numeric
$useStrictMode = !(is_numeric($value) && is_numeric($optionData['value']));
$isValid = $useStrictMode ? $value === $optionData['value'] : $value == $optionData['value'];
if ($isValid) {
break;
}
}
if (!$isValid) {
$errors[] = 'Invalid value "' . $value . '" for ' . $attribute->getAttributeCode();
}
} else {
$errors[] = 'Invalid value type for ' . $attribute->getAttributeCode();
}
}
}
return $errors ? $errors : true;
}