当前位置: 首页>>代码示例>>PHP>>正文


PHP Ethna_Util::getDirectLinkList方法代码示例

本文整理汇总了PHP中Ethna_Util::getDirectLinkList方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Util::getDirectLinkList方法的具体用法?PHP Ethna_Util::getDirectLinkList怎么用?PHP Ethna_Util::getDirectLinkList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ethna_Util的用法示例。


在下文中一共展示了Ethna_Util::getDirectLinkList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: preforward

 /**
  *  preprocess before forwarding.
  *
  *  @access public
  */
 public function preforward()
 {
     $start = $this->af->get('start');
     error_log('start:' . $start);
     if ($start === NULL) {
         $start = 0;
     }
     if ($start < 0) {
         $start = 0;
     }
     $count = 5;
     $bm = new BoardManager();
     $um = new UserManager();
     $boardlist = $bm->boardlist($this->backend);
     krsort($boardlist);
     $total = count($boardlist);
     $display_posts = array();
     for ($i = $start; $i < $start + $count && $i < $total; $i++) {
         $cur = current(array_slice($boardlist, $i, 1, true));
         array_push($display_posts, $bm->addUrl($cur));
     }
     if ($start > 0) {
         $this->af->setApp('hasprev', true);
         $this->af->setApp('prev', $start - $count);
     } else {
         $this->af->setApp('hasprev', false);
     }
     if ($start + $count < $total) {
         $this->af->setApp('hasnext', true);
         $this->af->setApp('next', $start + $count);
         $this->af->setApp('last', (ceil($total / $count) - 1) * $count);
     } else {
         $this->af->setApp('hasnext', false);
     }
     $this->af->setApp('posts', $display_posts);
     $this->af->setApp('link', '/?action_board=true');
     $this->af->setApp('count', $count);
     $this->af->setApp('current', $start);
     $this->af->setApp('pager', Ethna_Util::getDirectLinkList($total, $start, $count));
     return 'board';
 }
开发者ID:sdkawata,项目名称:tutorial,代码行数:46,代码来源:Board.php

示例2: _getNavigation

 /**
  *  ナビゲーション情報を取得する
  *
  *  @access private
  *  @param  int     $total      検索総件数
  *  @param  array   $list       検索結果
  *  @return array   ナビゲーション情報を格納した配列
  */
 function _getNavigation($total, &$list)
 {
     $nav = array();
     $nav['offset'] = $this->offset;
     $nav['from'] = $this->offset + 1;
     if ($total == 0) {
         $nav['from'] = 0;
     }
     $nav['to'] = $this->offset + count($list);
     $nav['total'] = $total;
     if ($this->offset > 0) {
         $prev_offset = $this->offset - $this->count;
         if ($prev_offset < 0) {
             $prev_offset = 0;
         }
         $nav['prev_offset'] = $prev_offset;
     }
     if ($this->offset + $this->count < $total) {
         $next_offset = $this->offset + count($list);
         $nav['next_offset'] = $next_offset;
     }
     $nav['direct_link_list'] = Ethna_Util::getDirectLinkList($total, $this->offset, $this->count);
     return $nav;
 }
开发者ID:weiweiabc109,项目名称:test_project1,代码行数:32,代码来源:Ethna_View_List.php


注:本文中的Ethna_Util::getDirectLinkList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。