aboutsummaryrefslogtreecommitdiff
path: root/mod/bulk_user_admin/views/default/admin/users/email_domain_stats.php
blob: 0caa50331b6b70da16b6e5328bb9e610ca027c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * Shows a list of email domains on the site and how many users have are part of the domain.
 */

$title = 'Email domain stats';

$domain_list = elgg_view('bulk_user_admin/email_domain_stats', array(
	'domains' => bulk_user_admin_get_email_domain_stats()
));

echo $title . $domain_list;