You are here

function nodejs_config_menu in Node.js integration 6

Same name and namespace in other branches
  1. 7 nodejs_config/nodejs_config.module \nodejs_config_menu()

Implements hook_menu().

File

nodejs_config/nodejs_config.module, line 6

Code

function nodejs_config_menu() {
  return array(
    'admin/settings/nodejs/js' => array(
      'title' => t('Node.js server configuration'),
      'description' => t('Adjust Node.js server configuration.'),
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'nodejs_config_form',
      ),
      'access arguments' => array(
        'administer site configuration',
      ),
    ),
  );
}