You are here

protected static function TextimageImager::uppercaseWords in Textimage 7.3

Callback for capitalizing the first letter of each word in a string.

File

classes/TextimageImager.inc, line 222
Textimage - Image processor class.

Class

TextimageImager
Textimage - Image processor class.

Code

protected static function uppercaseWords($matches) {
  return drupal_ucfirst($matches[1]);
}