我在Magento中创建了一个自定义标签,但保存产品数据时没有反映在数据库中。
我在下面用输入字段创建。
public interface IInterfaceName { }
public class InterfaceImpl : IInterfaceName { }
IUnityContainer container = new UnityContainer();
container.RegisterType<IInterfaceName,InterfaceImp(typeof(InterfaceImpl).Name);
IInterfaceName interfaceClass = container.Resolve<IInterfaceName(typeof(InterfaceImp).Name);
我在Observer中写了下面的代码。
<div class="input-field">
<label for="custom_field">Custom Field</label>
<input class="input-text" name="custom_field" id="custom_field" />
</div>
我已按照此网站https://fishpig.co.uk/magento/tutorials/custom-tabs-magento-product-admin/
的所有步骤操作答案 0 :(得分:3)
$setup->addAttribute('catalog_product', 'custom_field', array(
'entity_model' => 'catalog/product',
'label' => 'custom',
'group' => 'General',
'input' => 'text',
'type' => 'text',
'is_html_allowed_on_front' => false,
'backend' => 'catalog/product_attribute_backend_price',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
'visible' => false,
'apply_to' => Mage_Catalog_Model_Product_Type::TYPE_SIMPLE,
'required' => false,
'user_defined' => true,
'unique' => false,
'visible_on_front' => false,
'note' => 'custom'
));
use this function in tab.php block
public function getProduct()
{
return Mage::registry('product');
}