I've been experimenting with Drupal 7 quite a bit and have a doubt with User Roles.
- In the application that I am trying to create, There are 5 roles for users and there is one role ( say E ), which when chosen, the others ( A, B, C, D ) will grey out or can't be chosen.
In simple terms,
if( $role chosen == A || B || C || D ) { Options to choose other Roles are available including the Role 'E' }
if( $role chosen == E ) { Other Roles are blocked and can't be chosen }
Is there any possible way I can achieve it ?
2 . I also have another doubt about the statuses of the Roles. Can I Flag users in anyway apart from the default 'Status' ? Also, if that is not possible, is there anyway for me to create a new Status ?