Câu hỏi được gắn thẻ «system.xml»

Biểu thị câu hỏi liên quan đến tệp cấu hình mô-đun system.xml.

2
Cách hiển thị Danh mục trong System.xml trong magento 2
Tôi đang nhận được tất cả các loại trong System.xmlviệc sử dụng lớp Vender\Module\Model\Config\Source\Category <?php namespace Vender\Module\Model\Config\Source; use Magento\Framework\Data\OptionSourceInterface; class Category implements OptionSourceInterface{ protected $_categoryFactory; protected $_categoryCollectionFactory; public function __construct( \Magento\Catalog\Model\ResourceModel\Category\CollectionFactory $categoryCollectionFactory, \Magento\Catalog\Model\CategoryFactory $categoryFactory ) { $this->_categoryCollectionFactory = $categoryCollectionFactory; $this->_categoryFactory = $categoryFactory; } /** * Get category collection * * …

3
Cách giới hạn các ký tự trong system.xml cho textarea trong magento
Tôi muốn giới hạn độ dài ký tự textarea xuống 150 ký tự, Mã system.xml của tôi ở bên dưới: ... <orderPlaceMessage translate="label"> <label>Message for order place: </label> <frontend_type>textarea</frontend_type> <sort_order>1</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> {how to limit character length } </orderPlaceMessage> ... Làm thế nào để điều đó?


Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.