不使用SQL查询时在theme('table')中创建分页


8

当行数固定时,我想在表中创建一个寻呼机。

互联网上建议的方法创建表,并通过使用sql查询获取数据,但我想从数组中的数据创建表。

visitedgroups = array('1','2','3','4');//It is an array of node id which are group entity
$header = array(
                array('data' => t('Group Name')),
                array('data' => t('Group Since')),
                array('data' => t('Join')),
            );
            $rows = array();
            foreach ($visitedgroups as $groupid) {
                $groupnode = node_load($groupid);
                $createdtime = format_interval((time() - $groupnode->created) , 2) . t(' ago');
                $joinlink = l('Join Group', 'group/node/'. $groupnode->nid.'/subscribe');
                $rows[] = array( l($groupnode->title, 'node/'. $groupnode->nid),
                                                t($createdtime),
                                                $joinlink,
                                    );
            }
            $output .= t('Recently visited groups by you, in which you are not member.');
            $output .= theme('table', array('header' => $header, 'rows' => $rows, array('class' => array('group-visited-table')))).theme('pager');

上面的代码生成表并正常工作。但是我想在表中添加寻呼机。从互联网上的参考资料中,我发现人们会添加,

$ query = $ query-> extend('TableSort')-> extend('PagerDefault')-> limit(10);

在$ query-> execute()之前,但是我没有查询。

因此,在这种情况下如何应用寻呼机。

Answers:


7

尝试以下功能:

/**
 * An generic array pager for Drupal.
 * For Drupal 5 and 6, the default limit is 10. For Drupal 7 it is 9.
 */
function pager_array_splice($data, $limit = 9, $element = 0) {
  global $pager_page_array, $pager_total, $pager_total_items;
  $page = isset($_GET['page']) ? $_GET['page'] : '';

  // Convert comma-separated $page to an array, used by other functions.
  $pager_page_array = explode(',', $page);

  // We calculate the total of pages as ceil(items / limit).
  $pager_total_items[$element] = count($data);
  $pager_total[$element] = ceil($pager_total_items[$element] / $limit);
  $pager_page_array[$element] = max(0, min((int)$pager_page_array[$element], ((int)$pager_total[$element]) - 1));
  return array_slice($data, $pager_page_array[$element] * $limit, $limit, TRUE);
}

$output = pager_array_splice($yourarray, 5);  // 5 is per page values

有关更多详细信息,请参见分页非SQL数据


2
这是有用的,不是很好的发现:)我已经添加了代码,因为我感觉很多人会想要这个
Clive

@RavindraSingh你能告诉我我应该在哪里附加这段代码..我有点困惑..
mohit_rocks 2012年

pager_array_slice()是您刚想使用的核心函数$ output = pager_array_splice($ yourarray,5); //您的函数中每页显示5个值
Ravindra Singh
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.