You are here

function simple_image_rotate_permission in Simple Image Rotate 7

Same name and namespace in other branches
  1. 7.2 simple_image_rotate.module \simple_image_rotate_permission()

Implements hook_permission().

File

./simple_image_rotate.module, line 20
Allows users to rotate images on node forms.

Code

function simple_image_rotate_permission() {
  return array(
    'rotate images' => array(
      'title' => t('Rotate images'),
      'description' => t('Allows a user to rotate images.'),
    ),
  );
}