function taxonomy_server_help in Taxonomy import/export via XML 7
Implementation of hook_help().
File
- taxonomy_server/
taxonomy_server.module, line 134 - Extends taxonomy_xml to publish downloadable or queriable taxonomy vocabularies and terms. Extends the Drupal URLs to make vocabulary information available under /taxonomy/vocabulary and /taxonomy/vocabulary/{vid}.
Code
function taxonomy_server_help($path = '', $arg) {
switch ($path) {
case 'taxonomy/vocabulary':
if (arg(2)) {
return t("\n Items with more than one parent may show up twice in a heirarchy.\n This is normal.\n ");
}
break;
case 'admin/structure/taxonomy/server':
return t("\n Vocabularies are published at !vocabulary_link.\n The vocabulary server publishes direct data downloads underneath the vocabulary and term pages.\n This data is linked to from meta link hints inserted into the pages,\n and is also available to semantic crawlers who request the page with content-negotiation.\n ", array(
'!vocabulary_link' => l('taxonomy/vocabulary', 'taxonomy/vocabulary'),
));
}
}