You are here

function textimage_permission in Textimage 7.3

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

Implements hook_permission().

File

./textimage.module, line 165
Textimage - Provides text to image manipulations.

Code

function textimage_permission() {
  return array(
    'generate textimage url derivatives' => array(
      'title' => t('Generate Textimage URL derivatives'),
      'description' => t('Allows users to generate Textimage derivatives directly from an URL request.'),
    ),
  );
}