// ProductBackendGroupPrice @todo ... pretty complex // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice.php // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php func ProductBackendGroupPrice() *todoPABGP { return &todoPABGP{ AttributeBackend: eav.NewAttributeBackend(), } }
// ProductBackendStartDate @todo // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Startdate.php func ProductBackendStartDate() *todoPABSD { return &todoPABSD{ AttributeBackend: eav.NewAttributeBackend(), } }
// ProductBackendBoolean @todo // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php func ProductBackendBoolean() *todoPABB { return &todoPABB{ AttributeBackend: eav.NewAttributeBackend(), } }
// ProductBackendSku @todo // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php func ProductBackendSku() *todoPABSku { return &todoPABSku{ AttributeBackend: eav.NewAttributeBackend(), } }
// ProductBackendStock @todo // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php func ProductBackendStock() *todoPABStock { return &todoPABStock{ AttributeBackend: eav.NewAttributeBackend(), } }
// CustomerBackendShipping handles shipping address @todo // @see magento2/site/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php func CustomerBackendShipping() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// ProductRecurring @todo // @see Mage_Catalog_Model_Product_Attribute_Backend_Recurring func ProductBackendRecurring() *todoPABR { return &todoPABR{ AttributeBackend: eav.NewAttributeBackend(), } }
// AddressBackendStreet handles multiline street address @todo // @see Mage_Customer_Model_Resource_Address_Attribute_Backend_Street func AddressBackendStreet() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// ProductBackendTierPrice @todo ... pretty complex // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/TierPrice.php // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php func ProductBackendTierPrice() *todoPABTP { return &todoPABTP{ AttributeBackend: eav.NewAttributeBackend(), } }
// CustomerBackendWebsite handles website // @see magento2/site/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php func CustomerBackendWebsite() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// AddressDataPostcode post code data model @todo // @see magento2/site/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php func AddressBackendRegion() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// CustomerBackendStore handles store // @see magento2/site/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php func CustomerBackendStore() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// CustomerBackendPassword handles customer passwords @todo // @see magento2/site/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php func CustomerBackendPassword() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// CustomerBackendDataBoolean converts 1 or 0 to bool @todo // @see magento2/site/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php func CustomerBackendDataBoolean() *eav.AttributeBackend { return eav.NewAttributeBackend() }
// CategoryBackendSortby sorting @todo // @see magento2/site/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php func CategoryBackendSortby() *todoCABSB { return &todoCABSB{ AttributeBackend: eav.NewAttributeBackend(), } }
// ProductBackendMedia @todo ... pretty complex // @see magento2/site/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media.php func ProductBackendMedia() *todoPABM { return &todoPABM{ AttributeBackend: eav.NewAttributeBackend(), } }
// CategoryBackendImage @todo file uploading and saving // @see magento2/site/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php func CategoryBackendImage() *todoCABI { return &todoCABI{ AttributeBackend: eav.NewAttributeBackend(), } }
// CustomerBackendBilling handles billing address @todo // @see magento2/site/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php func CustomerBackendBilling() *todoABB { return &todoABB{ AttributeBackend: eav.NewAttributeBackend(), } }