Basic implementation event signup
This commit is contained in:
9
components/partials/email-link.php
Normal file
9
components/partials/email-link.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
function kompass_get_email_link(string $email) : string {
|
||||
return '<a href="mailto:' . $email . '">' . $email . '</a>';
|
||||
}
|
||||
|
||||
function kompass_print_email_link(string $email)
|
||||
{
|
||||
echo kompass_get_email_link($email);
|
||||
}
|
Reference in New Issue
Block a user