Home
last modified time | relevance | path

Searched refs:email (Results 1 – 25 of 127) sorted by relevance

123456

/webtrees/app/
H A DUser.php38 private string $email; variable in Fisharebest\\Webtrees\\User
47 * @param string $email
49 public function __construct(int $user_id, string $user_name, string $real_name, string $email) argument
54 $this->email = $email;
77 public function email(): string function in Fisharebest\\Webtrees\\User
79 return $this->email;
85 * @param string $email
89 public function setEmail(string $email): User argument
91 if ($this->email !== $email) {
92 $this->email = $email;
[all …]
H A DGuestUser.php31 private string $email; variable in Fisharebest\\Webtrees\\GuestUser
36 * @param string $email
39 public function __construct(string $email = 'GUEST_USER', string $real_name = 'GUEST_USER') argument
41 $this->email = $email;
60 public function email(): string function in Fisharebest\\Webtrees\\GuestUser
62 return $this->email;
H A DTreeUser.php55 public function email(): string function in Fisharebest\\Webtrees\\TreeUser
64 return $contact->email();
/webtrees/
H A Dcomposer.lock160 "email": "kylekatarnls@gmail.com"
233 "email": "info@dflydev.com",
238 "email": "beau@dflydev.com",
243 "email": "carlos@kiwing.it",
248 "email": "colinodell@gmail.com",
304 "email": "guilhermeblanco@gmail.com"
308 "email": "roman@code-factory.org"
312 "email": "kontakt@beberlei.de"
316 "email": "jonwage@gmail.com"
320 "email": "schmittjoh@gmail.com"
[all …]
/webtrees/app/Http/RequestHandlers/
H A DRegisterAction.php95 $email = Validator::parsedBody($request)->string('email');
105 … $this->doValidateRegistration($request, $username, $email, $realname, $comments, $password);
115 Session::put('register_email', $email);
126 $user = $this->user_service->create($username, $realname, $email, $password);
200 'sender' => $user->email(),
236 * @param string $email
247 string $email, argument
253 …if ($username === '' || $email === '' || $realname === '' || $comments === '' || $password === '')…
263 if ($this->user_service->findByEmail($email) !== null) {
H A DRegisterPage.php66 $email = Session::get('register_email');
67 $email = is_string($email) ? $email : '';
82 'email' => $email,
H A DCreateSubmitterAction.php44 $email = Validator::parsedBody($request)->string('submitter_email');
50 $email = Registry::elementFactory()->make('SUBM:EMAIL')->canonical($email);
60 if ($email !== '') {
61 $gedcom .= "\n1 EMAIL " . strtr($email, ["\n" => "\n2 CONT "]);
H A DUserEditAction.php76 $email = Validator::parsedBody($request)->string('email');
147 … if ($edit_user->email() !== $email && $this->user_service->findByEmail($email) instanceof User) {
148 …::translate('Duplicate email address. A user with that email already exists.') . $email, 'danger');
160 ->setEmail($email)
H A DAccountUpdate.php66 $email = Validator::parsedBody($request)->string('email');
89 if ($email !== $user->email()) {
90 if ($this->user_service->findByEmail($email) === null) {
91 $user->setEmail($email);
H A DUserAddAction.php60 $email = Validator::parsedBody($request)->string('email');
70 if ($this->user_service->findByEmail($email) instanceof User) {
77 'email' => $email,
85 $new_user = $this->user_service->create($username, $real_name, $email, $password);
H A DPasswordRequestAction.php86 $email = Validator::parsedBody($request)->string('email');
87 $user = $this->user_service->findByEmail($email);
119 $message1 = I18N::translate('A password reset link has been sent to “%s”.', e($email));
H A DUserAddPage.php45 $email = Validator::queryParams($request)->string('email', '');
51 'email' => $email,
H A DUserListData.php132 '<a href="mailto:' . e($row->email) . '">' . e($row->email) . '</a>',
/webtrees/app/Cli/Commands/
H A DUserCreate.php61 $email = $input->getOption(name: 'email');
79 if ($email === null) {
101 $user = $this->user_service->findByEmail(email: $email);
104 $io->error(message: 'A user with the email "' . $email . '" already exists');
114 …this->user_service->create(user_name: $username, real_name:$realname, email: $email, password: $pa…
/webtrees/app/Services/
H A DEmailService.php106 ->from(new Address($from->email(), $from->realName()))
107 ->to(new Address($to->email(), $to->realName()))
108 ->replyTo(new Address($reply_to->email(), $reply_to->realName()))
176 * @param string $email
180 public function isValidEmail(string $email): bool argument
183 $address = new Address($email);
H A DUserService.php61 public function findByEmail(string $email): User|null argument
64 ->where('email', '=', $email)
310 * @param string $email
315 …public function create(string $user_name, string $real_name, string $email, #[\SensitiveParameter]… argument
320 'email' => $email,
326 return new User($user_id, $user_name, $real_name, $email);
378 $url = 'mailto:' . $contact_user->email();
H A DMessageService.php120 'sender' => Auth::check() ? Auth::user()->email() : $sender->email(),
/webtrees/public/ckeditor-4.15.1-custom/plugins/link/dialogs/
H A Dlink.js15 …(){var a=this.getDialog();return a.getContentElement("info","linkType")&&"email"==a.getValueOf("in…
16 …mail.address);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&th…
28 …Text;d=l==q;l="email"==a.type&&l=="mailto:"+q;g.setAttributes(h.set);g.removeAttributes(h.removed)…
29 h.length;g++){d=h[g];d.collapsed?(e=new CKEDITOR.dom.text(a.linkText||("email"==a.type?a.email.addr…
/webtrees/tests/app/
H A DUserTest.php51 self::assertSame('email', $user->email());
71 self::assertSame('user@example.com', $user->email());
73 self::assertSame('foo@example.com', $user->email());
H A DGuestUserTest.php34 self::assertSame('GUEST_USER', $user->email());
45 self::assertSame('guest@example.com', $user->email());
/webtrees/resources/views/admin/
H A Demail-page.phtml35 …="from" type="text" value="<?= e('"' . $from->realName() . '" <' . $from->email() . '>') ?>" dir="…
44 …ol" id="to" type="text" value="<?= e('"' . $to->realName() . '" <' . $to->email() . '>') ?>" dir="…
/webtrees/resources/views/modules/privacy-policy/
H A Dpage.phtml81 … <a href="mailto:<?= e($administrator->email()) ?>"><?= e($administrator->email()) ?></a>
/webtrees/tests/app/Services/
H A DEmailServiceTest.php110 public function testIsValidEmail(string $email, bool $is_valid): void argument
112 self::assertSame($is_valid, (new EmailService())->isValidEmail($email));
H A DUserServiceTest.php85 $user2 = $user_service->findByEmail($user1->email());
104 $user3 = $user_service->findByIdentifier($user1->email());
/webtrees/resources/views/
H A Dregister-success-page.phtml25 …>To sign in to this website, you will need to know your username and password.', $user->email()) ?>

123456