0
我想知道如何通過安裝/升級腳本更新Magento中的客戶地址屬性 - 特別是Input Validation
下拉框和Maximum Text Length
字段。通過升級腳本更新Magento中的客戶地址屬性
我想知道如何通過安裝/升級腳本更新Magento中的客戶地址屬性 - 特別是Input Validation
下拉框和Maximum Text Length
字段。通過升級腳本更新Magento中的客戶地址屬性
在你3210你必須指示用於您的模塊設置的型號:
//inside <global> node
<resources>
<stackoverflow_question_setup>
<setup>
<module>StackOverflow_Question</module>
<class>Mage_Customer_Model_Entity_Setup</class>
</setup>
</stackoverflow_question_setup>
</resources>
安裝腳本:
<?php
/* @var $installer Mage_Customer_Model_Entity_Setup */
$installer = $this;
$installer->startSetup();
$data = array(
'input_validation' => 'alpha',//see the values of the input validation dropdown to find out what you can put in here
'max_text_length' => 456
);
$serializedData = serialize($data);
$installer->updateAttribute('customer_address', 'firstname', 'validate_rules', $serializedData);
$installer->endSetup();
你說客戶** **地址屬性,但在你的屏幕截圖中,它是一個客戶屬性 – OSdave