This is part of #3797
On a new site, I was plagued with 100's of new dodgy user accounts (because of #574). Because our VBO does not allow me to select all users from the many pages, my options were to either do a direct db query, use phpmyadmin, or manually repeat the process of selecting/deleting/confirming for each of the 12's of pages. This is not good UX, and the 7.x version of VBO included an option to select all items across all pages:
Here's what that option allows:
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?