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






10
Magento 2: Lập trình cập nhật hàng tồn kho
Trong đoạn mã sau, tôi có thể lưu trữ tất cả thông tin với việc loại trừ dữ liệu chứng khoán. Có điều gì đó đã thay đổi trong Magento 2? public function __construct( ScopeConfigInterface $scopeConfig, CollectionFactory $product, Magento\Catalog\Api\ProductRepositoryInterface $productRepository ) { $this->scopeConfig = $scopeConfig; $this->product = $product; $this->productRepository = …

4
Tạo người dùng quản trị theo chương trình trong Magento 2.0
Thật đơn giản để thêm người dùng quản trị viên mới trong Magento 1.9 <?php require_once('app/Mage.php'); umask(0); Mage::app(); $user = Mage::getModel('admin/user') ->setData(array( 'username' => 'admin', 'firstname' => 'admin', 'lastname' => 'admin', 'email' => 'me@hackme.com', 'password' => 'hacker@123', 'is_active' => 1 )) ->save(); $user->setRoleIds(array(1)) ->setRoleUserId($user->getUserId()) ->saveRelations(); echo "User has been created …

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.