Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在 Drupal を使用しています。コミュニティ Web フォーム モジュールによって生成されたフォームを div でラップすることは可能ですか? これを行うためのテーマ方法またはフックポイントはありますか?
hook_page_alter を使用して、フォームの周りに div を追加できます。次に例を示します。
function hook_page_alter(&$page) { // Add help text to the user login block. $page['content']['...']['form'] = array( '#prefix' => '<div>', '#suffix' => '</div>', ); }