From subuser 7.x-2.0-dev:

What works:
- Creating subusers: configurable based on permissions what roles can create and what roles of users they can create.
- Switching users.
- Optional to storage of relation.
- Relations stored using <a href="/project/relation">relation</a>.
- Limiting number of subusers.
- Editing, deleting, or block/unblocking subusers.: 

What does not:
- Upgrade path from 6.x-1.x.

Update:
Patch for edit/delete here #1213566: Add View/Edit/Delete Functionality needs review

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

boombatower’s picture

Would like to see #1146474: Convert subuser_switch to use masquerade included before release.

boombatower’s picture

puravida’s picture

I am running on D7 now and utilize this module. I'm subscribing so that I can test any patches when available to regain control (edit/cancel) without having to assign "administer users" permission.

Great work on this mod!

Cheers,

Brandon

pedrodacosta’s picture

subscribe

webankit’s picture

+1

larowlan’s picture

Nick and I have written a patch for the edit/view/delete permissions and posted it here: #1213566: Add View/Edit/Delete Functionality

dandaman’s picture

The current alpha release does not even install if you're using the latest release of Relation module (7.x-1.0-beta1).

dandaman’s picture

OK, maybe not the beta1, but the alpha3 for sure. I was testing this on Friday and it wasn't working and didn't notice the beta1 was released over the weekend.

Jb33’s picture

i'd like to ask about the close future: when do you plan reeasing a stable 7.x-2.x version? This is what I need for my latest project and if you do not plan the release in one or two weeks I have to go back to drupal 6 + subuser 6.x . Can you tell me something about the roadmap..?

boombatower’s picture

I don't plan to do anything in the next two weeks (although I am open to sponsorship to get this finished up). My project requirements for this are a bit further out.

Have you tried the alpha it should run reasonably well.

jyotisankar’s picture

FileSize
150.29 KB

Hi I am using this subuser module to create subuser under corporate member. I am able to do the same, but my requirement is, a corporate member can create only three subuser and can assign different task to them.

Also I am not able to view the list of users that is been created by a Corporate member. From view >> Advance >> Contextual filter its been "(relation_subuser_user) User: Uid" and in RELATIONSHIPS its written "Broken/missing handler". I am doing this task using drupal 7. Please help me out.
Thanks
Jyotisankar

pwhite’s picture

Hi, I'm just wondering if this project is still active for the D7 port? If not does anyone know of any alternatives?

boombatower’s picture

The original project I was porting it for is no longer going forward thus I have not finished the port. If someone would like to sponsor development that would be great...it seems like there is interest here so I wouldn't expect that to be an issue if people need this.

7wonders’s picture

I posted a patch here that gets subuser to a better working state than any of the current releases. Would it be possible to put that in as a dev release at least so people have a better idea of what the module is capable of?

balleyne’s picture

subscribing

kaizerking’s picture

@7wonders-#14 "Limiting number of subusers" is it working with this patch?

lauriii’s picture

I have created a sandbox for this project https://drupal.org/sandbox/lauriii/2011550 . In this sandbox there's a first version of limiting subusers. Feel free to test.

Shawn DeArmond’s picture

@boombatower, would you please create the 2.0-dev release so we can get the snapshot?

Or, perhaps roll an alpha3 since it would have the fixes for relation?

Thanks!

Shawn DeArmond’s picture

Issue summary: View changes

Updated progress to date

kaizerking’s picture

What about limiting the creation of sub users? issue https://drupal.org/node/1500328 has been linked to this page
is this considered?

lauriii’s picture

Issue summary: View changes
FileSize
3.77 KB

Here's patch for limiting the amount of subusers.

lauriii’s picture

Here's a finished patch for this one.

lauriii’s picture

Issue summary: View changes

Commited and pushed #21.

lauriii’s picture

Issue summary: View changes

  • Commit 78d1f43 on 7.x-2.x, 8.x-1.x by lauriii:
    Issue #1145350 by lauriii, boombatower: Create subuser limit.
    
HansKuiters’s picture

I don't agree with the patch in #21. According to this line:

 if (subuser_access_create($account) && ($max_subusers >= $total_subusers || $max_subusers == '')) {

a user is allowed to create another subuser if the total subusers is equal to the subuser limit. In my opinion is should be changed to this:

 if (subuser_access_create($account) && ($max_subusers > $total_subusers || $max_subusers == '')) {

where a user can only create a subuser if the subusers limit is not reached yet.