function _sheetnode_phpexcel_settings in Sheetnode 5
Same name and namespace in other branches
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel.module \_sheetnode_phpexcel_settings()
- 7.2 modules/sheetnode_phpexcel/sheetnode_phpexcel.module \_sheetnode_phpexcel_settings()
- 7 modules/sheetnode_phpexcel/sheetnode_phpexcel.module \_sheetnode_phpexcel_settings()
1 string reference to '_sheetnode_phpexcel_settings'
- sheetnode_phpexcel_menu in modules/
sheetnode_phpexcel/ sheetnode_phpexcel.module - Implementation of hook_menu().
File
- modules/
sheetnode_phpexcel/ sheetnode_phpexcel.module, line 130
Code
function _sheetnode_phpexcel_settings() {
$form['sheetnode_phpexcel_library_path'] = array(
'#type' => 'textfield',
'#title' => t('PHPExcel path'),
'#description' => t('Enter the location of the extracted PHPExcel package.'),
'#default_value' => variable_get('sheetnode_phpexcel_library_path', ''),
);
return system_settings_form($form);
}