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

Câu hỏi về việc phát triển các mô-đun tùy chỉnh







7
Tài nguyên học tập Magento
Tôi chưa quen với magento và không có khái niệm về MVC, nhưng tôi đã được giao một công việc để làm việc với nó, điều đó có nghĩa là hiểu nó và thực hiện các đặc tả, bây giờ tôi cảm thấy quá căng thẳng vì tôi thực sự …



1
Cách tốt nhất để thay thế chức năng chết?
Tôi có mã Magento sau: protected function _sendUploadResponse($fileName, $content, $contentType='application/octet-stream') { $response = $this->getResponse(); $response->setHeader('HTTP/1.1 200 OK',''); $response->setHeader('Pragma', 'public', true); $response->setHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0', true); $response->setHeader('Content-Disposition', 'attachment; filename='.$fileName); $response->setHeader('Last-Modified', date('r')); $response->setHeader('Accept-Ranges', 'bytes'); $response->setHeader('Content-Length', strlen($content)); $response->setHeader('Content-type', $contentType); $response->setBody($content); $response->sendResponse(); die; } Khi tôi cố gắng xác thực mã của mình, tôi …

2
Cách đặt lịch trình động cronjob từ cơ sở dữ liệu trong Magento 2
Tôi đang làm việc trên một mô-đun tùy chỉnh cho Magento 2. Tôi đã thiết lập crontab ở đó và nó hoạt động tốt với lịch trình tĩnh. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../app/code/Magento/Cron/etc/crontab.xsd"> <group id="default"> <job name="tm-feed-job" instance="TM\Feed\Model\Cron" method="export"> <schedule>* * * * * *</schedule> </job> </group> </config> Nhưng tôi cần <schedule>* …




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.