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

Câu hỏi về việc mở rộng bảng quản trị Magento và chủ đề quản trị viên



1
Ghi đè _prepareCollection () của khách hàng Magento không hoạt động
Tôi đã ghi đè phương thức _prepareCollection () của Mage_Adminhtml_Block_Customer_Grid và thêm các dòng sau ->addAttributeToSelect('cus_city') ->addAttributeToSelect('cus_country') ->addAttributeToSelect('cus_state') đến: protected function _prepareCollection() { $collection = Mage::getResourceModel('customer/customer_collection') ->addNameToSelect() ->addAttributeToSelect('email') ->addAttributeToSelect('created_at') ->addAttributeToSelect('group_id') ->addAttributeToSelect('cus_city') // added ->addAttributeToSelect('cus_country') // added ->addAttributeToSelect('cus_state') // added ->joinAttribute('billing_postcode', 'customer_address/postcode', 'default_billing', null, 'left') ->joinAttribute('billing_city', 'customer_address/city', 'default_billing', null, 'left') ->joinAttribute('billing_telephone', …

2
Cách tạo bộ lọc lưới tùy chỉnh
Tôi đã thêm một cột lưới tùy chỉnh bằng URL trường trong cơ sở dữ liệu tùy chỉnh: $this->addColumn('url', array( 'header' => Mage::helper('companymodule')->__('Has Website'), 'align' => 'left', 'index' => 'url', 'renderer' => new Company_Module_Block_Adminhtml_Module_Grid_Renderer_HasUrl(), 'type' => 'options', 'options' => Mage::getSingleton('companymodule/hasurl')->getOptionArray(), )); Và tạo kết xuất tùy chỉnh này: class Company_Module_Block_Adminhtml_Module_Grid_Renderer_HasUrl …
8 adminhtml  grid  model 

2
Mặc định tài nguyên vai trò ACL
Giả sử chúng ta thêm một số tài nguyên mới vào ACL như vậy: <acl> <resources> <admin> <children> <catalog> <children> <search> <children> <import translate="title"> <title>Import</title> </import> <export translate="title"> <title>Export</title> </export> </children> </search> </children> </catalog> </children> </admin> </resources> </acl> Sau đó, chúng tôi thêm phần sau đây vào một nút xuất …



2
Làm cách nào để xóa tùy chọn Xóa khỏi thả xuống hàng loạt cho vai trò người dùng cụ thể trong Magento2?
Tôi có vai trò người dùng khác nhau cho trang web của tôi. Đối với vai trò người dùng cụ thể, tôi muốn xóa "Xóa" khỏi danh sách hành động hàng loạt hiển thị trên lưới khách hàng trong phần quản trị. Tùy chọn Xóa được kết xuất từ magento\vendor\magento\module-customer\view\adminhtml\ui_component\customer_listing.xml …





3
Magento 2 thêm nút bổ sung trong phụ trợ
Tôi muốn thêm một nút khác trong phần phụ trợ trên giao diện chỉnh sửa trang cms. Vì vậy, tôi đã tạo một mô-đun (với sự trợ giúp của: https://community.magento.com/t5/Programming-Questions/Overriding-a-block-in-Magento-2/mp/6831 ): ứng dụng / mã / Công ty / Modulename / etc / module.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd"> <module …

3
Cách mở rộng tệp mẫu phụ trợ trong Magento 2
Tôi không thể tìm thấy cách mở rộng tệp mẫu phụ trợ trong Magento 2, tuy nhiên tôi đã tìm thấy cách mở rộng tệp mẫu lối vào từ đây . Nếu tôi mở rộng tệp tại design/adminhtml/Magento/backendnó có thể ghi đè lên trong phiên bản nâng cấp Magento. Vì …


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.