| 11 |
|
|
| 12 |
switch ($section) { |
switch ($section) { |
| 13 |
case 'admin/modules#description': |
case 'admin/modules#description': |
| 14 |
$output = t('Provides GData feed'); |
$output = t('Provides GData API for other modules to use to implement the GData protocol from Google'); |
| 15 |
break; |
break; |
| 16 |
case 'admin/settings/modules#description': |
case 'admin/settings/modules#description': |
| 17 |
$output = t('Provides GData feed'); |
$output = t('Provides GData API for other modules to use to implement the GData protocol from Google'); |
| 18 |
break; |
break; |
| 19 |
case 'admin/settings/gdata': |
case 'admin/settings/gdata': |
| 20 |
if (user_access('administer gdata')) { |
if (user_access('administer gdata')) { |
| 21 |
$output = t('GData Admin Settings Page'); |
$output = t('GData module Administration Settings Page'); |
| 22 |
} |
} |
| 23 |
break; |
break; |
| 24 |
case 'admin/help#gdata': |
case 'admin/help#gdata': |
| 25 |
$output = t('This module provides GData feed... more help will come here'); |
$output = t('This module provides GData API for other modules to use to implement the GData protocol from Google. GData is a protocol similar to Atom or RSS but it allows clients to add, update, delete and search data in addition to the normal syndication. Other modules can use the API exposed in this module to use the GData protocol easily.'); |
| 26 |
break; |
break; |
| 27 |
} |
} |
| 28 |
return $output; |
return $output; |