function _strtolower in Coder 7.2
Returns a string converted to all lowercase letters.
Parameters
string $text: ???
Return value
string ???
See also
1 call to _strtolower()
- _coder_review_translation_callback in coder_review/
includes/ coder_review_i18n_po.inc - Rule callback: Defines how to check for issues in translation files.
File
- coder_review/
coder_review.common.inc, line 1660 - Common functions used by both the drush and form interfaces.
Code
function _strtolower($text) {
return function_exists('drupal_strtolower') ? drupal_strtolower($text) : strtolower($text);
}