You are here

function google_cse_permission in Google Custom Search Engine 7.3

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

Implements hook_perm().

File

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

Code

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