You are here

function _textimage_ucwords in Textimage 7.2

Callback for preg_replace_callback.

1 string reference to '_textimage_ucwords'
textimage_image_from_preset in ./textimage.module
Loads the Textimage preset and generates the GD image resource.

File

./textimage.module, line 567
Provides text to image manipulations.

Code

function _textimage_ucwords($matches) {
  return drupal_ucfirst($matches[1]);
}