Are you looking to hire someone in the Backdrop community to help with a project, port a Drupal 7 module, or work full time in your company? Post your needs here.
Topics | Comments |
Posted![]() |
Last comment |
---|---|---|---|
Help with Drupal->Backdrop migration | 4 | 2 months 1 week ago | 2 months 1 hour ago |
Create a Backdrop theme | 4 | 6 months 2 weeks ago | 4 months 2 weeks ago |
Porting Organic Groups module to Backdrop | 5 | 6 months 3 weeks ago | 3 months 3 weeks ago |
Recent comments
I think that directly editing config is rarely, if ever, the best way to do something... Perhaps try loading a format (with it's filters) using filter_format_load(), add the new filter array (by...
How to programmatically insert an array into config file
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)