<?php
/*
Plugin Name: BP Test
Plugin URI: http://www.dontdream.it/
Description: Testing bp_core_new_subnav_item().
Version: 1.0
Author: Andrea Tarantini
Author URI: http://www.dontdream.it/
*/

add_action ('bp_setup_nav', 'test_setup_nav');
function test_setup_nav ()
{
	bp_core_new_subnav_item (array (
		'name'					=> 'Testing',
		'slug'					=> 'testing',
		'parent_url'			=> bp_displayed_user_domain (). bp_get_settings_slug (). '/',
		'parent_slug'			=> bp_get_settings_slug (),
		'screen_function'		=> 'test_screen',
		'position'				=> 40,
		'user_has_access'		=> bp_core_can_edit_settings (),
	));
}

function test_screen ()
{
	add_action ('bp_template_title', 'test_screen_title');
	add_action ('bp_template_content', 'test_screen_content');

	bp_core_load_template ('members/single/plugins');
}

function test_screen_title ()
{
	echo "Test Screen Title";
}

function test_screen_content ()
{
	echo "Test Screen Content";
}
