function _noderelationships_sort_strncmp in Node Relationships 6
Case-insensitive string compare function.
2 string references to '_noderelationships_sort_strncmp'
- noderelationships_content_extra_fields in ./
noderelationships.module - Implementation of hook_content_extra_fields().
- noderelationships_get_views in ./
noderelationships.inc - Get the list of views in the system.
File
- ./
noderelationships.inc, line 793 - Common functions for the noderelationships module.
Code
function _noderelationships_sort_strncmp($a, $b) {
$a = drupal_strtolower($a);
$b = drupal_strtolower($b);
return $a == $b ? 0 : ($a < $b ? -1 : 1);
}