You are here

function cmis_browser_admin_settings in CMIS API 7.2

Same name and namespace in other branches
  1. 7 cmis_browser/cmis_browser.module \cmis_browser_admin_settings()
1 string reference to 'cmis_browser_admin_settings'
cmis_browser_menu in cmis_browser/cmis_browser.module
Implementation of hook_menu().

File

cmis_browser/cmis_browser.module, line 65

Code

function cmis_browser_admin_settings() {
  $form = array();
  $form['cmis_browser_root'] = array(
    '#title' => t('Root Directory'),
    '#description' => t('Root folder for CMIS nodes'),
    '#type' => 'textfield',
    '#default_value' => variable_get('cmis_browser_root'),
  );
  return system_settings_form($form);
}