function amazon_search_permission in Amazon Product Advertisement API 7.2
Same name and namespace in other branches
- 7 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.'),
),
);
}