Description of the need
I've noticed that in a handful of contrib modules, there is an install hook that simply sets a message with a link to the configuration page. In Drupal, I love this feature as it saves me from needing to find the module that was just installed, open it's collapsed set of buttons, and click it's configuration link.
Here's some example code from the sendgrid integration module:
function sendgrid_integration_install() {
$t = get_t();
backdrop_set_message($t('You can configure SendGrid settings under Administer > Configuration > !link', ['!link' => l($t('SendGrid settings'), 'admin/config/system/sendgrid'),]));
}
Proposed solution
Since modules already define a configuration link in the .info file, we could use that link to set this message automatically for all projects.
[DX] This would improve the experience for contributed module developers, as they wouldn't need to repeat the same action for every module they build.
[UX] I believe this would also be a user experience improvement, but I'd love more feedback from others.
Alternatives that have been considered
In Backdrop, we've already improved the module installation scenario by 1) remembering the filter for the module that was just installed, if you'd used it before installing the module it remains after -- making the actions links immediately available. And 2) we've removed the collapsed set of buttons, instead replacing them with action links that are more immediately available.
Additional information
TBD
Draft of feature description for Press Release (1 paragraph at most)
When installing a module in Backdrop, you'll be immediately be presented with a link to the module's configuration page, if it has one.
Recent comments
This post explains how to do this in Drupal 7. In Backdrop, File Entity is already part of core. You will need to download and install module Views Field View. https://drupal.stackexchange...
I Need to Display an Image in a View that was Uploaded to a Webform
After alot of trials, i have done the obvious and translated the whole block for different languages with each property condition as follows: ->propertyCondition('langcode', 'en...
How to get the current page language?
Thanks so much! It's working now: I was able to transfer the docroot files to the containing directory without the need for a second database or any manual configuration export/import/sync...
Backup & Migrate Config: There was a problem creating field...database table with the name already exists.