| 21 |
|
|
| 22 |
$xml_request = array(); |
$xml_request = array(); |
| 23 |
$xml_element_stack = array(); |
$xml_element_stack = array(); |
| 24 |
|
|
| 25 |
/** |
/** |
| 26 |
* Implementation of hook_help |
* Implementation of hook_help |
| 27 |
* |
* |
| 319 |
$form[$module]['gdata_'.$module] = array( |
$form[$module]['gdata_'.$module] = array( |
| 320 |
'#type' => 'checkboxes', |
'#type' => 'checkboxes', |
| 321 |
'#title' => t('What the module implements'), |
'#title' => t('What the module implements'), |
| 322 |
'#description' => t('You can set if this module should enable syndicatation, write, update, delete, etc.'), |
'#description' => t('You can set if this module should enable read, write, etc. ( depending on what is available ).'), |
| 323 |
); |
); |
| 324 |
|
|
| 325 |
foreach(array_intersect($module_details['implements'],$options) as $implements) { |
foreach(array_intersect($module_details['implements'],$options) as $implements) { |
| 339 |
'#title' => t('The path for this module after '). |
'#title' => t('The path for this module after '). |
| 340 |
url('', NULL, NULL, TRUE), |
url('', NULL, NULL, TRUE), |
| 341 |
'#default_value' => ($path)?$path:$module, |
'#default_value' => ($path)?$path:$module, |
| 342 |
'#description' => t('If you set this is as "blog" for example, then external user will be able to access blog module through GData at '). url($path.'gdata/blog', NULL, NULL, TRUE), |
'#description' => t('If you set this is as "'.$path.'" for example, then external user will be able to access blog module through GData at '). url('gdata/'.$path, NULL, NULL, TRUE), |
| 343 |
); |
); |
| 344 |
$gdata_modules[$module] = $path; |
$gdata_modules[$module] = $path; |
| 345 |
} |
} |