You are here

function amazon_search_permission in Amazon Product Advertisement API 7

Same name and namespace in other branches
  1. 7.2 amazon_search/amazon_search.module \amazon_search_permission()

Implements hook_permission.

Return value

unknown_type

File

amazon_search/amazon_search.module, line 13
Sets up hook_search for Amazon items.

Code

function amazon_search_permission() {
  return array(
    'access amazon search' => array(
      'title' => t('Access Amazon Search'),
      'description' => t('Perform searches on Amazon.'),
    ),
  );
}