You have been Invited

[insert_php]

switch($_GET[“invited”]){

case ‘true’:
posterInvite();
break;

default:
//header(“Location: http://teamdriven.us/”);
break;

}

///// functions /////

function posterInvite(){
global $current_user;
$user_roles = $current_user->roles;
$user_role = array_shift($user_roles);
if($user_role == “invitedusers”) {
echo ‘

We would like to invite you to become a member of the contributor group of the Team Driven Website. The specifications of your specific role were discussed with you privately with the Coach and Webmaster in a meet up prior to this message being sent to you.

If you were spoken to prior to about a specific role, after accepting you will be moved to that usergroup manually by the webmaster within a day or two.

By becoming a contributor of the Team Driven Website you accept that:

  • You will not be asked or expected to spend more time on the site than you would normally do.
  • You agree to follow the Site Guidelines when adding/changing any information on the site pages
  • You are not required to do any work at all by Team Driven beyond your existing responsibilities.
  • Your involvement with this website is entirely voluntary.
  • You are not entitled to any special privileges in the team beyond any given by your existing position(s).
  • The Webmaster, Coach, and Mentors reserve the right to remove posting permissions at any time.

You do not have to accept the invitation immediately – this invitation will be displayed next time you login, or you can select the “Invitation” link in the navigation bar.

‘;
}
else {
//(“Location: http://teamdriven.us/”);
}
}
[/insert_php]