<?php
/*
Plugin Name: add_users_page test
Version: 1.0
Author: MattyRob
*/

function admin_menu() {
	add_users_page('My Title', 'My Title', "read", __FILE__, 'user_menu');
}

function user_menu() {
	echo "Some Test Here";
}

add_action('admin_menu', 'admin_menu');
?>
