You are here

function _sheetnode_google_settings in Sheetnode 7.2

Same name and namespace in other branches
  1. 6 modules/sheetnode_google/sheetnode_google.module \_sheetnode_google_settings()
  2. 7 modules/sheetnode_google/sheetnode_google.module \_sheetnode_google_settings()

Internal google settings.

1 string reference to '_sheetnode_google_settings'
sheetnode_google_menu in modules/sheetnode_google/sheetnode_google.module
Implements of hook_menu().

File

modules/sheetnode_google/sheetnode_google.module, line 61
Module file for the sheetnode_google module.

Code

function _sheetnode_google_settings() {
  $form['sheetnode_zend_gdata_path'] = array(
    '#type' => 'textfield',
    '#title' => t('Zend Gdata library path'),
    '#description' => t('Enter the full path of the extracted Zend Gdata package (pointing to but not including the Zend/ subfolder).
                         Leave empty if the Zend framework is already included in the PHP include_path setting. On this server, include_path is set to:<br /><pre>!path</pre>', array(
      '!path' => ini_get('include_path'),
    )),
    '#default_value' => variable_get('sheetnode_zend_gdata_path', ''),
    '#size' => 80,
  );
  $form['#validate'][] = '_sheetnode_google_settings_validate';
  return system_settings_form($form);
}