___init(); parent::__construct($customerFactory, $eventManager, $storeManager, $mathRandom, $validator, $validationResultsDataFactory, $addressRepository, $customerMetadataService, $customerRegistry, $logger, $encryptor, $configShare, $stringHelper, $customerRepository, $scopeConfig, $transportBuilder, $dataProcessor, $registry, $customerViewHelper, $dateTime, $customerModel, $objectFactory, $extensibleDataObjectConverter, $credentialsValidator, $dateTimeFactory, $accountConfirmation, $sessionManager, $saveHandler, $visitorCollectionFactory, $searchCriteriaBuilder, $addressRegistry, $getByToken, $allowedCountriesReader, $sessionCleaner, $authorization, $authentication, $eavValidator, $customerLogger); } /** * {@inheritdoc} */ public function resendConfirmation($email, $websiteId = null, $redirectUrl = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resendConfirmation'); return $pluginInfo ? $this->___callPlugins('resendConfirmation', func_get_args(), $pluginInfo) : parent::resendConfirmation($email, $websiteId, $redirectUrl); } /** * {@inheritdoc} */ public function activate($email, $confirmationKey) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'activate'); return $pluginInfo ? $this->___callPlugins('activate', func_get_args(), $pluginInfo) : parent::activate($email, $confirmationKey); } /** * {@inheritdoc} */ public function activateById($customerId, $confirmationKey) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'activateById'); return $pluginInfo ? $this->___callPlugins('activateById', func_get_args(), $pluginInfo) : parent::activateById($customerId, $confirmationKey); } /** * {@inheritdoc} */ public function authenticate($username, $password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'authenticate'); return $pluginInfo ? $this->___callPlugins('authenticate', func_get_args(), $pluginInfo) : parent::authenticate($username, $password); } /** * {@inheritdoc} */ public function validateResetPasswordLinkToken($customerId, $resetPasswordLinkToken) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateResetPasswordLinkToken'); return $pluginInfo ? $this->___callPlugins('validateResetPasswordLinkToken', func_get_args(), $pluginInfo) : parent::validateResetPasswordLinkToken($customerId, $resetPasswordLinkToken); } /** * {@inheritdoc} */ public function initiatePasswordReset($email, $template, $websiteId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'initiatePasswordReset'); return $pluginInfo ? $this->___callPlugins('initiatePasswordReset', func_get_args(), $pluginInfo) : parent::initiatePasswordReset($email, $template, $websiteId); } /** * {@inheritdoc} */ public function resetPassword($email, $resetToken, $newPassword) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetPassword'); return $pluginInfo ? $this->___callPlugins('resetPassword', func_get_args(), $pluginInfo) : parent::resetPassword($email, $resetToken, $newPassword); } /** * {@inheritdoc} */ public function getConfirmationStatus($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConfirmationStatus'); return $pluginInfo ? $this->___callPlugins('getConfirmationStatus', func_get_args(), $pluginInfo) : parent::getConfirmationStatus($customerId); } /** * {@inheritdoc} */ public function createAccount(\Magento\Customer\Api\Data\CustomerInterface $customer, $password = null, $redirectUrl = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'createAccount'); return $pluginInfo ? $this->___callPlugins('createAccount', func_get_args(), $pluginInfo) : parent::createAccount($customer, $password, $redirectUrl); } /** * {@inheritdoc} */ public function createAccountWithPasswordHash(\Magento\Customer\Api\Data\CustomerInterface $customer, $hash, $redirectUrl = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'createAccountWithPasswordHash'); return $pluginInfo ? $this->___callPlugins('createAccountWithPasswordHash', func_get_args(), $pluginInfo) : parent::createAccountWithPasswordHash($customer, $hash, $redirectUrl); } /** * {@inheritdoc} */ public function getDefaultBillingAddress($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultBillingAddress'); return $pluginInfo ? $this->___callPlugins('getDefaultBillingAddress', func_get_args(), $pluginInfo) : parent::getDefaultBillingAddress($customerId); } /** * {@inheritdoc} */ public function getDefaultShippingAddress($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultShippingAddress'); return $pluginInfo ? $this->___callPlugins('getDefaultShippingAddress', func_get_args(), $pluginInfo) : parent::getDefaultShippingAddress($customerId); } /** * {@inheritdoc} */ public function changePassword($email, $currentPassword, $newPassword) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changePassword'); return $pluginInfo ? $this->___callPlugins('changePassword', func_get_args(), $pluginInfo) : parent::changePassword($email, $currentPassword, $newPassword); } /** * {@inheritdoc} */ public function changePasswordById($customerId, $currentPassword, $newPassword) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changePasswordById'); return $pluginInfo ? $this->___callPlugins('changePasswordById', func_get_args(), $pluginInfo) : parent::changePasswordById($customerId, $currentPassword, $newPassword); } /** * {@inheritdoc} */ public function validate(\Magento\Customer\Api\Data\CustomerInterface $customer) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validate'); return $pluginInfo ? $this->___callPlugins('validate', func_get_args(), $pluginInfo) : parent::validate($customer); } /** * {@inheritdoc} */ public function isEmailAvailable($customerEmail, $websiteId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmailAvailable'); return $pluginInfo ? $this->___callPlugins('isEmailAvailable', func_get_args(), $pluginInfo) : parent::isEmailAvailable($customerEmail, $websiteId); } /** * {@inheritdoc} */ public function isCustomerInStore($customerWebsiteId, $storeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCustomerInStore'); return $pluginInfo ? $this->___callPlugins('isCustomerInStore', func_get_args(), $pluginInfo) : parent::isCustomerInStore($customerWebsiteId, $storeId); } /** * {@inheritdoc} */ public function validateCustomerStoreIdByWebsiteId(\Magento\Customer\Api\Data\CustomerInterface $customer) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateCustomerStoreIdByWebsiteId'); return $pluginInfo ? $this->___callPlugins('validateCustomerStoreIdByWebsiteId', func_get_args(), $pluginInfo) : parent::validateCustomerStoreIdByWebsiteId($customer); } /** * {@inheritdoc} */ public function isReadonly($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isReadonly'); return $pluginInfo ? $this->___callPlugins('isReadonly', func_get_args(), $pluginInfo) : parent::isReadonly($customerId); } /** * {@inheritdoc} */ public function isResetPasswordLinkTokenExpired($rpToken, $rpTokenCreatedAt) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isResetPasswordLinkTokenExpired'); return $pluginInfo ? $this->___callPlugins('isResetPasswordLinkTokenExpired', func_get_args(), $pluginInfo) : parent::isResetPasswordLinkTokenExpired($rpToken, $rpTokenCreatedAt); } /** * {@inheritdoc} */ public function changeResetPasswordLinkToken(\Magento\Customer\Api\Data\CustomerInterface $customer, string $passwordLinkToken) : bool { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changeResetPasswordLinkToken'); return $pluginInfo ? $this->___callPlugins('changeResetPasswordLinkToken', func_get_args(), $pluginInfo) : parent::changeResetPasswordLinkToken($customer, $passwordLinkToken); } /** * {@inheritdoc} */ public function sendPasswordReminderEmail($customer) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendPasswordReminderEmail'); return $pluginInfo ? $this->___callPlugins('sendPasswordReminderEmail', func_get_args(), $pluginInfo) : parent::sendPasswordReminderEmail($customer); } /** * {@inheritdoc} */ public function sendPasswordResetConfirmationEmail($customer) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendPasswordResetConfirmationEmail'); return $pluginInfo ? $this->___callPlugins('sendPasswordResetConfirmationEmail', func_get_args(), $pluginInfo) : parent::sendPasswordResetConfirmationEmail($customer); } /** * {@inheritdoc} */ public function getPasswordHash($password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPasswordHash'); return $pluginInfo ? $this->___callPlugins('getPasswordHash', func_get_args(), $pluginInfo) : parent::getPasswordHash($password); } }