| 1 |
<?php |
<?php |
| 2 |
// $Id: taxonomy_hide.module,v 1.9.4.1 2008/05/11 04:38:51 brmassa Exp $ |
// $Id: taxonomy_hide.module,v 1.9.4.2 2008/10/27 14:32:21 brmassa Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 29 |
return t('The taxonomy_hide module allows you to hide and group vocabulary terms in node views.'); |
return t('The taxonomy_hide module allows you to hide and group vocabulary terms in node views.'); |
| 30 |
|
|
| 31 |
case 'admin/help#taxonomy_hide': |
case 'admin/help#taxonomy_hide': |
| 32 |
return t( |
return |
| 33 |
'<p>'. t('The taxonomy_hide module allows you to hide and group vocabulary terms in node views.') .'</p>'. |
'<p>'. t('The taxonomy_hide module allows you to hide and group vocabulary terms in node views.') .'</p>'. |
| 34 |
'<p>'. t('When you view a node, you usually see all vocabulary terms it is associated with. Sometimes, you might want to hide terms of a specific vocabulary. This module allows you to specify the vocabularies whose terms are never displayed in node views.') .'</p>'. |
'<p>'. t('When you view a node, you usually see all vocabulary terms it is associated with. Sometimes, you might want to hide terms of a specific vocabulary. This module allows you to specify the vocabularies whose terms are never displayed in node views.') .'</p>'. |
| 35 |
'<p>'. t('The list of vocabulary terms is usually sorted first by vocabulary weight, and next alphabetically. So terms of different vocabularies with the same weight are mixed. This module allows you to group terms by vocabulary in node views, which means that all terms of one vocabulary are always next to each other.') .'</p>'. |
'<p>'. t('The list of vocabulary terms is usually sorted first by vocabulary weight, and next alphabetically. So terms of different vocabularies with the same weight are mixed. This module allows you to group terms by vocabulary in node views, which means that all terms of one vocabulary are always next to each other.') .'</p>'. |
| 36 |
'<p>'. t('You can') .'</p>'. |
'<p>'. t('You can') .'</p>'. |
| 37 |
'<ul><li>'. t('Specify vocabularies whose terms will be hidden at <a href="@admin">Administer > Site configuration > Taxonomy hide</a>.') .'</li>'. |
'<ul><li>'. t('Specify vocabularies whose terms will be hidden at <a href="@admin">Administer > Site configuration > Taxonomy hide</a>.') .'</li>'. |
| 38 |
'<li>'. t('Enable grouping of vocabulary terms at <a href="@admin">Administer > Site configuration > Taxonomy hide</a>.') .'</li></ul>', |
'<li>'. t('Enable grouping of vocabulary terms at <a href="@admin">Administer > Site configuration > Taxonomy hide</a>.', array('@admin' => url('admin/settings/taxonomy_hide'))) .'</li></ul>'; |
|
array('@admin' => url('admin/settings/taxonomy_hide'))); |
|
|
break; |
|
| 39 |
} |
} |
| 40 |
} |
} |
| 41 |
|
|