0

我的问题是:是否可以轻松地以相反的顺序为 SF2 制作 WhiteOctoberPagerFantaBundle?

我的意思是,当我们通常分页时:1、2、3(第 1 页的最新内容)-> 制作:241,240,239,....(241 的最新内容)。

谢谢你。

4

1 回答 1

0

不,这是不可能的。我只是看了一下PagerFanta源代码,页面位置是硬编码的。

private function generatePages()
{
    $this->calculateStartAndEndPage();

    return $this->previous().
           $this->first().
           $this->secondIfStartIs3().
           $this->dotsIfStartIsOver3().
           $this->pages().
           $this->dotsIfEndIsUnder3ToLast().
           $this->secondToLastIfEndIs3ToLast().
           $this->last().
           $this->next();
}

也许通过编辑这部分代码以在“内爆”元素之前将元素存储为数组,并添加一个reverse选项,如果为真,将对array_reverse结果产生影响......

于 2014-07-07T21:12:26.007 回答