You are here

function instagram_feeds_permission in Instagram Feeds 7

Implements hook_permission().

File

./instagram_feeds.module, line 72

Code

function instagram_feeds_permission() {
  return array(
    INSTAGRAM_FEEDS_WYSIWYG_PERMISSION => array(
      'title' => t('Insert Instagram Feeds'),
      'description' => t('Allows to insert the Instagram Feed in wysiwyg editors.'),
    ),
  );
}