You are here

function _strtoupper in Coder 7.2

Returns a string converted to all UPPERCASE letters.

Parameters

string $text: ???

Return value

string ???

See also

drupal_strtoupper()

1 call to _strtoupper()
_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 1645
Common functions used by both the drush and form interfaces.

Code

function _strtoupper($text) {
  return function_exists('drupal_strtoupper') ? drupal_strtoupper($text) : strtoupper($text);
}