Posted by human1101 on November 19, 2012 at 9:41pm
2 followers
Jump to:
| Project: | Domain Access |
| Version: | 7.x-3.4 |
| Component: | User interface |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Hi, it would be really handy to me if the domain attribution form was tick boxes rather than radios as when you have many domains to change and a lot of settings to set it takes a really long time to work through when you have to select and apply the settings one at a time
much quicker if i could select all domains that need the setting at once so as to not repeat the same settings over and over
| Attachment | Size |
|---|---|
| settings.png | 33.05 KB |
Comments
#1
For multi-domain saving, you likely want the Batch Updates tab on the main module settings page.
#2
Hi agentrickard
That does not really suit my needs as the settings i want to change are not available there, but the feature i requested would suit my need perfectly
thanks for pointing me at that page though as i hadn't noticed it at all
handy for some things i bet
Cheers
Jacob
#3
That page is also extenxible via hook_domain_batch().
Changing from radios to checkboxes means rewriting the submit handler and trying to make that code smarter to handle the storage loop.
One reason we don't do this now is possible memory issues if you have lots of domains (say 200+). To load, unserialize and save each domain is a potentially long-running operation.