のNodeモジュールで使用される、次のようなコードを使用できますnode_filter_form()
。
// Build the 'Update options' form.
$form['options'] = array(
'#type' => 'fieldset',
'#title' => t('Update options'),
'#attributes' => array('class' => array('container-inline')),
'#access' => $admin_access,
);
// ...
$form['options']['operation'] = array(
'#type' => 'select',
'#title' => t('Operation'),
'#title_display' => 'invisible',
'#options' => $options,
'#default_value' => 'approve',
);
重要なのは、「#attributes」属性を「container-inline」に設定する行です。
そのコードはDrupal 7用です。Drupal 6の同等のコードは、次のコードで始まります。
$form['options'] = array(
'#type' => 'fieldset',
'#title' => t('Update options'),
'#prefix' => '<div class="container-inline">',
'#suffix' => '</div>',
);
Drupal 6を使用している場合、コードは次のようなものに変更する必要があります。
function contact_register_form($form, &$form_state) {
$form['description'] = array(
'#type' => 'item',
'#title' => t('Sign up to be notified when your community launches:'),
);
$form['email'] = array(
'#type' => 'textfield',
'#title' => t('Email'),
'#prefix' => '<div class="container-inline">',
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => 'Add me',
'#suffix' => '</div>',
);
return $form;
}
「アイテム」フォームフィールドを使用しているため、正しく表示されないため、説明をインラインに配置しませんでした。また、説明をインライン化すると、フォームのスペースが大きくなりすぎることがわかります。(インラインの説明が長くなり、1行に配置されるとどうなるかを想像してください。)
Drupal 7がコンテナーインライン要素に追加するCSSスタイルは次のとおりです。
/**
* Inline items.
*/
.container-inline div,
.container-inline label {
display: inline;
}
/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
display: block;
}
それらはsystem.base.cssから追加されます。
float
、container-inline
クラスにin CSSを適用することを忘れないでください。