function wsconfig_form_wsconfig_overview_form_alter in Web Service Data 7
Implements hook_form_alter(). Sorts the WS Config overview table.
File
- modules/
wsconfig/ wsconfig.module, line 268 - Main module for wsconfig
Code
function wsconfig_form_wsconfig_overview_form_alter(&$form, &$form_state) {
usort($form['table']['#rows'], '_wsconfig_form_overview_sort');
}