我正在 Drupal 中创建一个自定义表单。在这种形式中,我希望创建一个选择框。在此框中,我希望列出站点上的所有用户。保存我的表单时,这将填充引用用户的 CCK 字段。
我知道要创建我使用的选择列表:
$form['access']['timer'] = array(
'#type' => 'select',
'#title' => t('Discard logs older than'),
'#default_value' => variable_get('timer', 259200),
'#options' => $period,
'#description' => t('The timer.'),
);
http://drupal.org/node/751826
我需要知道的是如何获得正确的数据来设置#options。