function opigno_moxtra_app_menu in Opigno Moxtra App 7
Implements hook_menu().
File
- ./
opigno_moxtra_app.module, line 16  
Code
function opigno_moxtra_app_menu() {
  $items = array();
  $items['admin/opigno/system/moxtra'] = array(
    'title' => 'Collaborative workspaces and Live meetings configuration',
    'description' => 'The configuration for the collaborative workspace and live meeting integrations',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'opigno_moxtra_app_moxtra_configuration_form',
    ),
    'access arguments' => array(
      'configure moxtra',
    ),
    'file' => 'includes/opigno_moxtra_app.config_form.inc',
  );
  return $items;
}