You are here

function farm_quick_forms_sort in farmOS 7

Sort function for quick form definitions.

1 string reference to 'farm_quick_forms_sort'
farm_quick_forms in modules/farm/farm_quick/farm_quick.module
Load information about all quick forms provided by other modules.

File

modules/farm/farm_quick/farm_quick.module, line 72
Code for the Farm Quick module.

Code

function farm_quick_forms_sort($a, $b) {

  // Sort alphabetically by the 'label' property.
  return strcasecmp($a['label'], $b['label']);
}