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

CommentFileSizeAuthor
settings.png33.05 KBhuman1101
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

agentrickard’s picture

For multi-domain saving, you likely want the Batch Updates tab on the main module settings page.

human1101’s picture

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

agentrickard’s picture

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.