You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sourcemodel eav/entity_attribute_source_boolean not allowed for frontend input type: boolean - the frontend input type should be select
Triggered by:
if ($sourceModel != '' && ! in_array($attribute->getFrontendInput(), $sourceModelsAllowed)) {
$additionalMessage = null;
if($attribute->getSourceModel() == 'eav/entity_attribute_source_boolean' && $attribute->getFrontendInput() != 'select') {
$additionalMessage = ' - the frontend input type should be select';
}
$error .= '<error>sourcemodel ' . $attribute->getSourceModel() . ' not allowed for frontend input type: ' . $attribute->getFrontendInput() . $additionalMessage . '</error>';
}
However, this error applies to any boolean attribute created by vanilla Magento 1.9 / OpenMage 19. Also it seems to functionally work fine. Are we sure this is an actual problem?
The text was updated successfully, but these errors were encountered:
So boolean seems to be fine as well. @peterjaap, any thoughts (since you added that specific message)?
loekvangool
changed the title
Is `sourcemodel eav/entity_attribute_source_boolean not allowed for frontend input type: boolean a valid EAV model check issue?
Is "sourcemodel eav/entity_attribute_source_boolean not allowed for frontend input type: boolean" a valid EAV model check issue?
Jul 12, 2022
I'm hit with this error:
sourcemodel eav/entity_attribute_source_boolean not allowed for frontend input type: boolean - the frontend input type should be select
Triggered by:
However, this error applies to any
boolean
attribute created by vanilla Magento 1.9 / OpenMage 19. Also it seems to functionally work fine. Are we sure this is an actual problem?The text was updated successfully, but these errors were encountered: