You are here

function textimage_permission in Textimage 7.2

Same name and namespace in other branches
  1. 7.3 textimage.module \textimage_permission()

Implements hook_permission().

File

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

Code

function textimage_permission() {
  return array(
    'create textimages' => array(
      'title' => t('Create Textimages'),
      'description' => t('Create Textimages'),
    ),
  );
}