$form.=form_textarea(t('Description'),'description',$edit['description'],60,5,t('Description of the vocabulary; can be used by modules.'));
$form.=form_textfield(t('Help text'),'help',$edit['help'],60,255,t('Instructions to present to the user when choosing a term.'));
$form.=form_checkboxes(t('Types'),'nodes',$edit['nodes'],$nodes,t('A list of node types you want to associate with this vocabulary.'),NULL,TRUE);
...
...
@@ -122,6 +124,8 @@ function taxonomy_form_vocabulary($edit = array()) {
$form.=form_checkbox(t('Multiple select'),'multiple',1,$edit['multiple'],t('Allows nodes to have more than one term from this vocabulary (always true for free tagging).'));
$form.=form_checkbox(t('Required'),'required',1,$edit['required'],t('If enabled, every node <strong>must</strong> have at least one term in this vocabulary.'));
$form.=form_weight(t('Weight'),'weight',$edit['weight'],10,t('In listings, the heavier vocabularies will sink and the lighter vocabularies will be positioned nearer the top.'));
$form.=form_textarea(t('Description'),'description',$edit['description'],60,5,t('A description of the term.'));
if($vocabulary->hierarchy){
...
...
@@ -229,6 +235,8 @@ function taxonomy_form_term($edit = array()) {
$form.=form_textarea(t('Synonyms'),'synonyms',implode("\n",taxonomy_get_synonyms($edit['tid'])),60,5,t('<a href="%help-url">Synonyms</a> of this term, one synonym per line.',array('%help-url'=>url('admin/help/taxonomy',NULL,NULL,'synonyms'))));
$form.=form_weight(t('Weight'),'weight',$edit['weight'],10,t('In listings, the heavier terms will sink and the lighter terms will be positioned nearer the top.'));
$form.=form_textarea(t('Description'),'description',$edit['description'],60,5,t('Description of the vocabulary; can be used by modules.'));
$form.=form_textfield(t('Help text'),'help',$edit['help'],60,255,t('Instructions to present to the user when choosing a term.'));
$form.=form_checkboxes(t('Types'),'nodes',$edit['nodes'],$nodes,t('A list of node types you want to associate with this vocabulary.'),NULL,TRUE);
...
...
@@ -122,6 +124,8 @@ function taxonomy_form_vocabulary($edit = array()) {
$form.=form_checkbox(t('Multiple select'),'multiple',1,$edit['multiple'],t('Allows nodes to have more than one term from this vocabulary (always true for free tagging).'));
$form.=form_checkbox(t('Required'),'required',1,$edit['required'],t('If enabled, every node <strong>must</strong> have at least one term in this vocabulary.'));
$form.=form_weight(t('Weight'),'weight',$edit['weight'],10,t('In listings, the heavier vocabularies will sink and the lighter vocabularies will be positioned nearer the top.'));
$form.=form_textarea(t('Description'),'description',$edit['description'],60,5,t('A description of the term.'));
if($vocabulary->hierarchy){
...
...
@@ -229,6 +235,8 @@ function taxonomy_form_term($edit = array()) {
$form.=form_textarea(t('Synonyms'),'synonyms',implode("\n",taxonomy_get_synonyms($edit['tid'])),60,5,t('<a href="%help-url">Synonyms</a> of this term, one synonym per line.',array('%help-url'=>url('admin/help/taxonomy',NULL,NULL,'synonyms'))));
$form.=form_weight(t('Weight'),'weight',$edit['weight'],10,t('In listings, the heavier terms will sink and the lighter terms will be positioned nearer the top.'));