Để đưa vào trường quốc gia được phép trong cấu hình mô-đun tùy chỉnh của bạn:
thêm phần sau vào systemDB của mô-đun của bạn
<sallowspecific translate="label">
<label>Ship to Applicable Countries</label>
<frontend_type>select</frontend_type>
<sort_order>90</sort_order>
<frontend_class>shipping-applicable-country</frontend_class>
<source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</sallowspecific>
<specificcountry translate="label">
<label>Ship to Specific Countries</label>
<frontend_type>multiselect</frontend_type>
<sort_order>91</sort_order>
<source_model>adminhtml/system_config_source_country</source_model>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
<can_be_empty>1</can_be_empty>
</specificcountry>
dưới <fields>
thẻ trong phần tùy chỉnh của bạn.
Để thêm nó trong mẫu quản trị:
trong ứng dụng / mã / cục bộ / Yourmodulename / Block / adminhtml / Yourmodulename / Edit / Tab / Form.php
$countryList = Mage::getModel('directory/country')->getResourceCollection()->loadByStore()->toOptionArray(true);
$fieldset->addField('allowed_countries', 'multiselect', array( /* "allowed_countries" is the column name in your custom table to store these values */
'name' => 'countries[]',
'label' => Mage::helper('yourmodulename')->__('Allowed Countries'),
'title' => Mage::helper('yourmodulename')->__('Allowed Countries'),
'required' => true, /* only if it is required */
'values' => $countryList,
));
Ghi chú:
- Bạn phải viết logic để lưu các giá trị đa lựa chọn trong cơ sở dữ liệu trong saveAction ()
để hiển thị điều này trong lưới quản trị:
tham khảo liên kết này .