| | |
| | | $link = 'mailto:'.$value.'?subject='.rawurlencode('Contact from edmonton.ink').'&body='.rawurlencode('Hey, |
| | | I found you on edmonton.ink, and I wanted to reach out!'); |
| | | |
| | | return '<a href="'.$link.'" title="Send an Email">'.jvbIcon('email').'<span>Email</span></a>'; |
| | | return '<a href="'.$link.'" title="Send an Email">'.jvbIcon('envelope').'<span>Email</span></a>'; |
| | | |
| | | } |
| | | protected function renderUrlField(string $name, string $value, array $field):string |
| | |
| | | |
| | | // Add icon if configured |
| | | $show_icon = $field['show_icon'] ?? true; |
| | | $icon_html = $show_icon ? jvbIcon('time') : ''; |
| | | $icon_html = $show_icon ? jvbIcon('clock') : ''; |
| | | |
| | | return sprintf( |
| | | '<div class="time-field-display">%s<span class="time-value">%s</span></div>', |
| | |
| | | |
| | | // Add icon if configured |
| | | $show_icon = $field['show_icon'] ?? true; |
| | | $icon_html = $show_icon ? jvbIcon('event') : ''; |
| | | $icon_html = $show_icon ? jvbIcon('calendar') : ''; |
| | | |
| | | return sprintf( |
| | | '<div class="datetime-field-display">%s<span class="datetime-value">%s</span></div>', |
| | |
| | | |
| | | // Add icon if configured |
| | | $show_icon = $field['show_icon'] ?? true; |
| | | $icon_html = $show_icon ? jvbIcon('event') : ''; |
| | | $icon_html = $show_icon ? jvbIcon('calendar') : ''; |
| | | |
| | | return sprintf( |
| | | '<div class="date-field-display">%s<span class="date-value">%s</span></div>', |