This is part of #779 and the same as https://www.drupal.org/node/1513054
Contrary to #933, which is about making title a proper Field API field (which is what the Title module does) and which we determined that can only happen in Backdrop 2.x, this issue here is to simply move things around, and sorta "fake" the title being a Field API field (what the Title field UI and Title Display modules seem to be doing).
After implementing this, we could loose the whole "submission settings" tab by moving the "Explanation or submission guidelines" text field out of the tab set and under the content type "Description" text field.
Recent comments
The block system and API in Backdrop is very different from Drupal's. In Backdrop, as in Drupal, modules can define blocks in code (in fact some of the API at this level is the same, with...
Drupal block module conversion
This was from examining line 2463- of the webform.module, where // Attach necessary JavaScript and CSS. $form['#attached'] = array( 'css' => array(backdrop_get_path('module', 'webform...
How do I diagnose Webform Conditionals failing?
d'oh. Because of course it is reassigning. Don't mind me... the correct syntax is $form['#attached']['js'][] = backdrop_get_path('module', 'mymodule') . '/mymodule.js';
How do I diagnose Webform Conditionals failing?