Files
old-new-wiaas/backend/app/plugins/wiaas/includes/admin/admin-cl/views/html-admin-cl-contacts-page.php
2018-12-08 21:58:43 +01:00

44 lines
1.3 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div>
<h1><?php esc_html_e( 'Contacts', 'wiaas' ); ?> </h1>
<br class="clear" />
<div >
<table id="wiaas_contacts_table" class="wiaas-contacts-table">
<thead>
<tr>
<th><?php esc_html_e( 'Name', 'wiaas' ); ?></th>
<th><?php esc_html_e( 'Email', 'wiaas' ); ?></th>
<th><?php esc_html_e( 'Phone', 'wiaas' ); ?></th>
<th><?php esc_html_e( 'Roles', 'wiaas' ); ?></th>
</tr>
</thead>
<tbody id="wiaas-contacts-tbody">
<?php
foreach ($contacts as $contact) {
?>
<tr>
<td><?php esc_html_e($contact['name'] ?: '-', 'wiaas'); ?></td>
<td><a href="mailto:<?php esc_html_e($contact['email'] ?: '-', 'wiaas'); ?>"><?php esc_html_e($contact['email'] ?: '-', 'wiaas'); ?></a></td>
<td><?php esc_html_e($contact['phone'] ?: '-', 'wiaas'); ?></td>
<td><?php esc_html_e($contact['roles'] ?: '-', 'wiaas'); ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>