| 1 |
<?php |
<?php |
| 2 |
// $Id: weight.module,v 1.23.2.3 2009/01/26 17:09:18 nancyw Exp $ |
// $Id: weight.module,v 1.23.2.4 2009/01/27 16:44:38 nancyw Exp $ |
| 3 |
/** |
/** |
| 4 |
* @file |
* @file |
| 5 |
* This module uses the sticky column of the node table |
* This module uses the sticky column of the node table |
| 178 |
'#type' => 'select', |
'#type' => 'select', |
| 179 |
'#title' => t('Node Weight Range'), |
'#title' => t('Node Weight Range'), |
| 180 |
'#default_value' => variable_get('weight_range', 20), |
'#default_value' => variable_get('weight_range', 20), |
| 181 |
'#options' => array(5 => 5, 10 => 10, 20 => 20, 30 => 30, 40 => 40, 50 => 50, 60 => 60, 70=> 70, 80 => 80, 90 => 90, 99 => 99), |
'#options' => array(5 => 5, 10 => 10, 20 => 20, 30 => 30, 40 => 40, 50 => 50, 60 => 60, 70=> 70, 80 => 80, 90 => 90), |
| 182 |
'#description' => '<p>'. t('This will be the +/- range for node weight.') .'</p>', |
'#description' => '<p>'. t('This will be the +/- range for node weight.') .'</p>', |
| 183 |
); |
); |
| 184 |
|
|