As a follow up to https://github.com/backdrop/backdrop-issues/issues/494#issuecomment-6780... we should add a radio button for core / contrib / all to the top of the modules page, perhaps next to the search box. This would allow people to quickly see which contrib modules are on a site (for troubleshooting). This will probably require adding a class when the module listing is assembled.
GitHub Issue #:
498
Recent comments
My initial goal was to create a menu item that linked to a view that I had configured and that was being created on installation of the module, by including the view config file. To do this, I just...
How to programmatically create a menu link
Yep, node_save() is just a wrapper for $node->save(). This is because the latter is Object-Oriented Programming (OOP), and a lot of people aren't as familiar with that. So the former can be used...
Difference between node->save() and node_save($node)
Seems that they must be the same thing. https://docs.backdropcms.org/api/backdrop/core%21modules%21node%21node.m... I am wondering now if the different behavior I experienced was impacted by other...
Difference between node->save() and node_save($node)