Tamam, bir süre sonra bir başkasının ihtiyacı olması durumunda bir çözüm buldum .. Magento nesneleri başlatmak için başka bir yaklaşım kullanıyor, Magento 1.x'te nesneleri başlatmak için geleneksel yol "Mage :: getModel (..)" Şimdi Magento, nesnelleri örneklemek için bir nesne yöneticisi kullanıyor, nasıl çalıştığı hakkında ayrıntılı bilgi girmeyeceğim .. yani, Magento 2'de müşteriler oluşturmak için eşdeğer kod şöyle görünecektir:
<?php
namespace ModuleNamespace\Module_Name\Controller\Index;
class Index extends \Magento\Framework\App\Action\Action
{
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $storeManager;
/**
* @var \Magento\Customer\Model\CustomerFactory
*/
protected $customerFactory;
/**
* @param \Magento\Framework\App\Action\Context $context
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Customer\Model\CustomerFactory $customerFactory
*/
public function __construct(
\Magento\Framework\App\Action\Context $context,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Customer\Model\CustomerFactory $customerFactory
) {
$this->storeManager = $storeManager;
$this->customerFactory = $customerFactory;
parent::__construct($context);
}
public function execute()
{
// Get Website ID
$websiteId = $this->storeManager->getWebsite()->getWebsiteId();
// Instantiate object (this is the most important part)
$customer = $this->customerFactory->create();
$customer->setWebsiteId($websiteId);
// Preparing data for new customer
$customer->setEmail("email@domain.com");
$customer->setFirstname("First Name");
$customer->setLastname("Last name");
$customer->setPassword("password");
// Save data
$customer->save();
$customer->sendNewAccountEmail();
}
}
Bu kod snippet'inin başkasına yardım etmesini umuyoruz ..