我一直在尝试使用 Drupal 7 并且对用户角色有疑问。
- 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 .
简单来说,
if( $role selected == A || B || C || D ) { 可以选择其他角色,包括角色 'E' }
if( $role selected == E ) { 其他角色被阻止,无法选择 }
有什么可能的方法可以实现吗?
2. 我对角色的状态还有另一个疑问。除了默认的“状态”之外,我还能以其他方式标记用户吗?另外,如果这不可能,我是否可以创建一个新的 Status ?