function ddblock_block_sort in Dynamic display block 7
Same name and namespace in other branches
- 6 ddblock.module \ddblock_block_sort()
Custom sort based on info element of array.
1 string reference to 'ddblock_block_sort'
- ddblock_settings_form in ./
ddblock.admin.inc - Dynamic display block settings form for setting the content types to be used with the dynamic display block module.
File
- ./
ddblock.module, line 2706 - Enables your site to display dynamic content in a block.
Code
function ddblock_block_sort($a, $b) {
return strcmp($a['module'] . $a['info'], $b['module'] . $b['info']);
}