/**
* @inheritDoc
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
if (config_get('system.core', 'user_email_verification') == TRUE) {
return FALSE;
}
*
* @return bool
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
return FALSE;
}
/**
* @inheritDoc
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
if (\Drupal::config('user.settings')->get('verify_mail') == TRUE) {
return FALSE;
}
/**
* @inheritDoc
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
if (variable_get('user_email_verification', TRUE)) {
return FALSE;
}
}
}
}
+
}
/**
* @inheritDoc
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
return TRUE;
}
/**
* @inheritDoc
*/
- function isPasswordUserGenerated() {
+ public function isPasswordUserGenerated() {
return TRUE;
}