【发布时间】:2010-05-12 16:11:26
【问题描述】:
我有自定义的 drupal 模块。我从需要分页的网络服务收到结果。 这就是我正在做的事情
$result = webservice_call_results(); $属性=数组( '边框' => 1, '细胞间距' => 0, 'cellpadding' => 5, '宽度' => 600, ); $rows = 数组(); foreach ($result->headers->RPMHeader as $data) { $行[] = 数组( l(t($data->reg_no), 回合($data->total_payment,2), $data->prepared_by ); } $headers = array(t('注册号'), t('总付款'),t('准备人')); $output =theme('table',$headers,$rows,$attributes); $output .= theme('pager', 1); // 不工作 -- 分页 $form['manufacturer_search']['table'] = array( '#type' => '标记', '#value' => $输出);分页不工作。任何想法为什么,请帮助
【问题讨论】:
标签: drupal