AppleDragonhapp.blog.chinaunix.net
AppleDragon
全部博文(89)
2012年(1)
2011年(5)
2010年(14)
2009年(69)
2909157
wangxinm
格伯纳
我是小小
alpha68
cyhtianc
Junyius
马背水手
sometime
青泥橘子
mymmsc
分类: 系统运维
2009-06-26 11:20:24
function search_form() { $form['str'] = array( '#type' => 'textfield', '#size' => '32', ); $form['category'] = array( '#name' => t('category'), '#type' => 'select', '#options' => array('0' => t('All'), '1' => t('Bars'), '2' => t('Restaurants')), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Search'), ); return $form; }
function search_theme() { global $theme; return array( 'search_form' => array( 'arguments' => array('form' => NULL, 'theme' => $theme), 'template' => 'search-form', ), ); }
<table cellspacing="0"> <tr> <td class="container-inline"><strong><?php print t('Search');?></strong> <?php print drupal_render($form['str']); ?></td> <td class="container-inline"><strong><?php print t('Category');?></strong> <?php print drupal_render($form['category']); ?></td> <td><?php print drupal_render($form['submit']); ?></td> </tr> </table> <?php print drupal_render($form); ?>
上一篇:在drupal中使用ajax
下一篇:Jollen 的Android 教學,#1: Android 應用程式模式
登录 注册