You are here

function jquery_update_permission in jQuery Update 7.3

Implements hook_permission().

File

./jquery_update.module, line 673
Updates Drupal to use the latest version of jQuery.

Code

function jquery_update_permission() {
  return array(
    'administer jquery update' => array(
      'title' => t('Administer jQuery Update'),
      'description' => t('Perform administration tasks for jQuery Update.'),
    ),
  );
}