You are here

function google_qr_code_menu in Google QR Code Generator 7

Google_qr_code Implements hook_menu().

File

./google_qr_code.module, line 172
Provides block using Google Charts to render QR code.

Code

function google_qr_code_menu() {
  $items = array();
  $items['admin/config/system/googleqrcode'] = array(
    'title' => 'Google QR Code Generator',
    'description' => 'Configuration for the Google QR Code Generator.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'google_qr_code_admin_settings_form',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}