/[drupal]/contributions/modules/gdata/gdata.module
ViewVC logotype

Diff of /contributions/modules/gdata/gdata.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.20, Mon Sep 4 14:46:20 2006 UTC revision 1.21, Mon Sep 4 19:04:49 2006 UTC
# Line 21  Line 21 
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   *   *
# Line 318  function gdata_admin() { Line 319  function gdata_admin() {
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) {
# Line 338  function gdata_admin() { Line 339  function gdata_admin() {
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      }      }

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.2