| 1 |
<?php |
<?php |
| 2 |
// $Id: taxonomy.rules_forms.inc,v 1.1.2.8 2009/06/27 12:05:44 fago Exp $ |
// $Id: taxonomy.rules_forms.inc,v 1.1.2.9 2009/07/10 13:05:33 fago Exp $ |
| 3 |
|
|
| 4 |
|
|
| 5 |
/** |
/** |
| 125 |
); |
); |
| 126 |
$form['settings']['vocabulary']['vocab_text'] = array( |
$form['settings']['vocabulary']['vocab_text'] = array( |
| 127 |
'#type' => 'textarea', |
'#type' => 'textarea', |
| 128 |
'#title' => t('Select by term id'), |
'#title' => t('Select by vocabulary id'), |
| 129 |
'#default_value' => !empty($settings['vocabulary']['vocab_text']) ? $settings['vocabulary']['vocab_text'] : '', |
'#default_value' => !empty($settings['vocabulary']['vocab_text']) ? $settings['vocabulary']['vocab_text'] : '', |
| 130 |
'#disabled' => empty($options), |
'#disabled' => empty($options), |
| 131 |
'#description' => t('Optional: Enter the vocabulary id (<em>not the vocabulary name</em>) that should be loaded . If this field is used, the "Select a vocabulary" field will be ignored.'), |
'#description' => t('Optional: Enter the vocabulary id (<em>not the vocabulary name</em>) that should be loaded. If this field is used, the "Select a vocabulary" field will be ignored.'), |
| 132 |
); |
); |
| 133 |
} |
} |
| 134 |
|
|