You are here

function google_cse_permission in Google Custom Search Engine 7

Same name and namespace in other branches
  1. 7.3 google_cse.module \google_cse_permission()
  2. 7.2 google_cse.module \google_cse_permission()

Implements hook_perm().

File

./google_cse.module, line 122
Display a Google Custom Search Engine (CSE) on your site.

Code

function google_cse_permission() {
  return array(
    'search Google CSE' => array(
      'title' => t('Use Google CSE'),
    ),
  );
}