當前位置: 首頁>>代碼示例>>PHP>>正文


PHP widgets\LinkPager類代碼示例

本文整理匯總了PHP中yii\widgets\LinkPager的典型用法代碼示例。如果您正苦於以下問題:PHP LinkPager類的具體用法?PHP LinkPager怎麽用?PHP LinkPager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了LinkPager類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 /**
  * 
  * @return type
  * @throws base\ErrorException
  */
 public function run()
 {
     if (!$this->_filterModel) {
         throw new base\ErrorException('There is no search model');
     }
     $request = Yii::$app->request;
     if ($request->isAjax) {
         Yii::$app->response->format = Response::FORMAT_JSON;
     }
     $data = strtolower($this->requestType) === 'post' && $request->isPost ? $_POST : $_GET;
     $this->_filterModel->load($this->directPopulating ? $data : [$this->_filterModel->formName() => $data]);
     $this->_filterModel->search();
     if ($this->_filterModel->hasErrors()) {
         if ($request->isAjax) {
             return is_callable($this->_validationFailedCallback) ? call_user_func($this->_validationFailedCallback, $this->_filterModel) : ['error' => current($this->_filterModel->getErrors())];
         }
         if (empty($data)) {
             $this->_filterModel->clearErrors();
         }
     }
     if (!($dataProvider = $this->_filterModel->getDataProvider())) {
         throw new base\ErrorException('DataProvider not initialized');
     }
     if ($request->isAjax) {
         return ['list' => $this->_filterModel->buildModels(), 'pagination' => $this->paginationAsHTML ? LinkPager::widget(['pagination' => $dataProvider->getPagination()]) : $dataProvider->getPagination()];
     }
     return $this->controller->render($this->view ?: $this->id, ['filterModel' => $this->_filterModel, 'dataProvider' => $dataProvider, 'requestType' => $this->requestType, 'directPopulating' => $this->directPopulating]);
 }
開發者ID:roman444uk,項目名稱:yii2,代碼行數:33,代碼來源:SearchAction.php

示例2: getPager

 private function getPager($pages)
 {
     if (self::$_pageLinkPagerOn) {
         return LinkPager::widget(['pagination' => $pages]);
     } else {
         return ['defaultPageSize' => $pages->defaultPageSize, 'forcePageParam' => $pages->forcePageParam, 'limit' => $pages->limit, 'links' => $pages->links, 'offset' => $pages->offset, 'page' => $pages->page, 'pageCount' => $pages->pageCount, 'pageParam' => $pages->pageParam, 'pageSize' => $pages->pageSize, 'pageSizeLimit' => $pages->pageSizeLimit, 'pageSizeParam' => $pages->pageSizeParam, 'params' => $pages->params, 'route' => $pages->route, 'totalCount' => $pages->totalCount, 'urlManager' => $pages->urlManager, 'validatePage' => $pages->validatePage];
     }
 }
開發者ID:keigonec,項目名稱:XiiBackend,代碼行數:8,代碼來源:TraitPager.php

示例3: run

 /**
  * Executes the widget.
  *
  * This overrides the parent implementation by initializing jQuery IAS and displaying the generated page buttons.
  *
  * @throws \yii\base\InvalidConfigException
  * @return mixed
  */
 public function run()
 {
     // Initialize jQuery IAS plugin
     $pluginSettings = ['container' => $this->overflowContainer, 'ias' => ['container' => $this->container, 'item' => $this->item, 'pagination' => "{$this->container} .pagination", 'next' => '.next a', 'delay' => $this->delay, 'negativeMargin' => $this->negativeMargin]];
     // Register IAS extensions
     $pluginSettings['extensions'] = $this->registerExtensions([['name' => self::EXTENSION_PAGING], ['name' => self::EXTENSION_SPINNER, 'options' => !empty($this->spinnerSrc) ? ['html' => $this->spinnerTemplate, 'src' => $this->spinnerSrc] : ['html' => $this->spinnerTemplate]], ['name' => self::EXTENSION_TRIGGER, 'options' => ['text' => $this->triggerText, 'html' => $this->triggerTemplate, 'offset' => $this->triggerOffset]], ['name' => self::EXTENSION_NONE_LEFT, 'options' => ['text' => $this->noneLeftText, 'html' => $this->noneLeftTemplate]], ['name' => self::EXTENSION_HISTORY, 'options' => ['prev' => $this->historyPrev], 'depends' => [self::EXTENSION_TRIGGER, self::EXTENSION_PAGING]]]);
     // Register event handlers
     $pluginSettings['events'] = $this->registerEventHandlers(['scroll' => [], 'load' => [], 'loaded' => [], 'render' => [], 'rendered' => [], 'noneLeft' => [], 'next' => [], 'ready' => [], 'pageChange' => [self::EXTENSION_PAGING]]);
     // Render pagination links
     return LinkPager::widget(['pagination' => $this->pagination, 'options' => ['class' => 'pagination hidden', 'role' => 'iasContainer', 'data-ias' => json_encode($pluginSettings)]]);
 }
開發者ID:nhatvuvan,項目名稱:yii2-widgets,代碼行數:19,代碼來源:ScrollPager.php

示例4: actionUploadDict

 public function actionUploadDict()
 {
     $sougouDir = Yii::$app->params['sougouDictDir'];
     $dictFiles = array();
     if (file_exists($sougouDir)) {
         if (is_writable($sougouDir)) {
             $oDir = dir($sougouDir);
             while (($file = $oDir->read()) !== false) {
                 if (strcasecmp($file, '.') != 0 && strcasecmp($file, '..') != 0) {
                     $filename = $sougouDir . '/' . $file;
                     if (is_dir($filename)) {
                         $subDir = dir($filename);
                         while (($subFile = $subDir->read()) !== false) {
                             if (strcasecmp($subFile, '.') != 0 && strcasecmp($subFile, '..') != 0) {
                                 $dictFiles[$file][] = $subFile;
                             }
                         }
                     }
                 }
             }
         } else {
             exit('目錄不可寫');
         }
     }
     $count = count($dictFiles);
     $page = isset($_REQUEST['page']) ? $_REQUEST['page'] ? $_REQUEST['page'] : 1 : 1;
     $pageSize = 10;
     $start = ($page - 1) * $pageSize;
     $pager = new \yii\data\Pagination(array('defaultPageSize' => $pageSize, 'totalCount' => $count));
     if ($page > $pager->getPageCount() && $page != 1) {
         exit('超過最大頁數');
     }
     $data = array();
     if ($count) {
         $sArr = array_slice($dictFiles, $start, $pageSize, true);
         foreach ($sArr as $time => $value) {
             if (!empty($value)) {
                 foreach ($value as $key => $val) {
                     if (preg_match('/\\.scel/', $val)) {
                         $file = $sougouDir . '/' . $time . '/' . $val;
                         $data[$time][$key] = array('filename' => mb_convert_encoding($val, 'UTF-8', 'GBK,GB2312'), 'filesize' => \app\common\XUtils::file_size_format(filesize($file)), 'filetype' => filetype($file), 'filetime' => date('Y-m-d H:i:s', filemtime($file)));
                     }
                 }
             }
         }
     }
     if (Yii::$app->request->isPost) {
         exit(json_encode(array('data' => $data, 'pager' => \yii\widgets\LinkPager::widget(['pagination' => $pager, 'prevPageLabel' => '上一頁', 'nextPageLabel' => '下一頁']))));
     }
     return $this->render('uploaddict', array('data' => $data, 'pager' => $pager));
 }
開發者ID:HabiCat,項目名稱:searchkeyword,代碼行數:51,代碼來源:ToolsController.php

示例5: init

 /**
  * @inheritdoc
  * @see \yii\widgets\LinkPager::init()
  */
 public function init()
 {
     parent::init();
     if ($this->itemsOrderDesc) {
         $firstPageLabel = $this->firstPageLabel;
         $lastPageLabel = $this->lastPageLabel;
         $this->firstPageLabel = $lastPageLabel;
         $this->lastPageLabel = $firstPageLabel;
         $nextPageLabel = $this->nextPageLabel;
         $prevPageLabel = $this->prevPageLabel;
         $this->nextPageLabel = $prevPageLabel;
         $this->prevPageLabel = $nextPageLabel;
     }
 }
開發者ID:roman444uk,項目名稱:yii2,代碼行數:18,代碼來源:LinkPager.php

示例6: testFirstLastPageLabels

 public function testFirstLastPageLabels()
 {
     $pagination = new Pagination();
     $pagination->setPage(5);
     $pagination->totalCount = 500;
     $pagination->route = 'test';
     $output = LinkPager::widget(['pagination' => $pagination, 'firstPageLabel' => true, 'lastPageLabel' => true]);
     static::assertContains('<li class="first"><a href="/?r=test&amp;page=1" data-page="0">1</a></li>', $output);
     static::assertContains('<li class="last"><a href="/?r=test&amp;page=25" data-page="24">25</a></li>', $output);
     $output = LinkPager::widget(['pagination' => $pagination, 'firstPageLabel' => 'First', 'lastPageLabel' => 'Last']);
     static::assertContains('<li class="first"><a href="/?r=test&amp;page=1" data-page="0">First</a></li>', $output);
     static::assertContains('<li class="last"><a href="/?r=test&amp;page=25" data-page="24">Last</a></li>', $output);
     $output = LinkPager::widget(['pagination' => $pagination, 'firstPageLabel' => false, 'lastPageLabel' => false]);
     static::assertNotContains('<li class="first">', $output);
     static::assertNotContains('<li class="last">', $output);
 }
開發者ID:howq,項目名稱:yii2,代碼行數:16,代碼來源:LinkPagerTest.php

示例7: actionIndex

 /**
  * 用戶列表
  * @return [type] [description]
  */
 public function actionIndex()
 {
     $model = new \app\models\WAdmin();
     $currentPage = $this->_getPost('page') ? $this->_getPost('page') : 1;
     $pageSize = $this->_getPost('pageSize') ? $this->_getPost('pageSize') : 10;
     $where = 1;
     if ($this->_getPost('searchName')) {
         $where = $this->buildQuery(['username' => $this->_getPost('searchName')], 'and');
     }
     $data = $model->getAdminList(($currentPage - 1) * $pageSize, $pageSize, $where);
     foreach ($data['data'] as $key => $value) {
         $data['data'][$key]['last_login_time'] = date('Y-m-d H:i:s', $value['last_login_time']);
     }
     $pager = new \yii\data\Pagination(array('defaultPageSize' => $pageSize, 'totalCount' => $data['count']['n']));
     if (\Yii::$app->request->isGet) {
         return $this->render('index', array('datalist' => $data['data'], 'pager' => $pager));
     } else {
         exit(json_encode(array('datalist' => $data['data'], 'pager' => \yii\widgets\LinkPager::widget(['pagination' => $pager, 'prevPageLabel' => '上一頁', 'nextPageLabel' => '下一頁']))));
     }
 }
開發者ID:HabiCat,項目名稱:searchkeyword,代碼行數:24,代碼來源:AdminController.php

示例8: run

 public function run()
 {
     if (!$this->_filterModel) {
         throw new base\ErrorException('Не указана модель поиска');
     }
     $request = Yii::$app->request;
     if ($request->isAjax) {
         Yii::$app->response->format = Response::FORMAT_JSON;
     }
     // Проставляем данные
     $data = strtolower($this->requestType) === 'post' && $request->isPost ? $_POST : $_GET;
     $this->_filterModel->load($this->directPopulating ? $data : [$this->_filterModel->formName() => $data]);
     // Производим выборку в модели поиска
     $this->_filterModel->search();
     // Если при поиске произошла ошибка валидации
     if ($this->_filterModel->hasErrors()) {
         /**
          * В зависимости от запроса решаем что делать,
          * если ajax то сбрасываем ошибку, иначе если входящих данных нет, очищаем ошибки
          */
         if ($request->isAjax) {
             return is_callable($this->_validationFailedCallback) ? call_user_func($this->_validationFailedCallback, $this->_filterModel) : ['error' => current($this->_filterModel->getErrors())];
         }
         if (empty($data)) {
             $this->_filterModel->clearErrors();
         }
     }
     if (!($dataProvider = $this->_filterModel->getDataProvider())) {
         throw new base\ErrorException('Не проинициализирован DataProvider');
     }
     if ($request->isAjax) {
         // Возвращаем корректно сформированную коллекцию объектов
         return ['list' => $this->_filterModel->buildModels(), 'pagination' => $this->paginationAsHTML ? LinkPager::widget(['pagination' => $dataProvider->getPagination()]) : $dataProvider->getPagination()];
     }
     return $this->controller->render($this->view ?: $this->id, ['filterModel' => $this->_filterModel, 'dataProvider' => $dataProvider, 'requestType' => $this->requestType, 'directPopulating' => $this->directPopulating]);
 }
開發者ID:hogvarce,項目名稱:cms,代碼行數:36,代碼來源:ListAction.php

示例9: renderPager

 /**
  * Renders the pager.
  * @return string the rendering result
  */
 public function renderPager()
 {
     $pagination = $this->dataProvider->getPagination();
     if ($pagination === false || $this->dataProvider->getCount() <= 0) {
         return '';
     }
     /* @var $class LinkPager */
     $pager = $this->pager;
     $class = ArrayHelper::remove($pager, 'class', LinkPager::className());
     $pager['pagination'] = $pagination;
     $pager['view'] = $this->getView();
     return $class::widget($pager);
 }
開發者ID:aoopvn,項目名稱:EduSec4.0.0,代碼行數:17,代碼來源:BaseListView.php

示例10:

?>
</h1>
    <?php 
// echo $this->render('_search', ['model' => $searchModel]);
?>

    <p>
        <?php 
echo Html::a('Create Post', ['create'], ['class' => 'btn btn-success']);
?>
    </p>


    <?php 
/* echo ListView::widget([
       'dataProvider' => $dataProvider,
       'itemView' => '_post',
   ]);*/
//die(print_r($posts));
foreach ($posts as $post) {
    echo $this->render('_post', ['model' => $post]);
}
?>
    <div>
    <?php 
echo LinkPager::widget(['pagination' => $pages]);
?>
    </div>

</div>
開發者ID:hawk56,項目名稱:ymam,代碼行數:30,代碼來源:index.php

示例11:

                        <?php 
foreach ($countries as $k => $v) {
    echo '<tr>';
    echo '<td>' . ($k + 1) . '</td>';
    echo '<td>' . Tool::echoEncodeString($v->employName) . '</td>';
    echo '<td>' . GlobalArray::$employStatusArr[Tool::echoEncodeString($v->status, 0)] . '</td>';
    echo '<td>' . Tool::echoEncodeString($v->count) . '</td>';
    echo '<td>' . GlobalArray::$employGroupArr[Tool::echoEncodeString($v->group, '0')] . '</td>';
    echo '<td>' . GlobalArray::$employTypeArr[Tool::echoEncodeString($v->type, '0')] . '</td>';
    echo ' <td>' . Tool::echoEncodeString($v->money) . '</td>';
    echo '<td>' . Tool::echoEncodeString($v->address) . '</td>';
    echo '<td><a href="' . Yii::$app->urlManager->createUrl([\common\widgets\Variable::$editEmploy_url, 'id' => Tool::echoEncodeString($v->id)]) . '">編輯</a><a onclick="deleteEmploy(this,' . Tool::echoEncodeString($v->id) . ')">刪除</a></td>';
    echo '</tr>';
}
?>

                    </table>
                </div>
            </div>



<!--            <embed src="http://player.youku.com/player.php/Type/Folder/Fid/16980025/Ob/1/Pt/0/sid/XMzQ3Njg5MTAw/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="always" allowFullScreen="true" mode="transparent" type="application/x-shockwave-flash"></embed>-->

            <?php 
echo LinkPager::widget(['pagination' => $pagination, 'nextPageLabel' => '下一頁', 'prevPageLabel' => '上一頁', 'firstPageLabel' => '首頁', 'lastPageLabel' => '末頁']);
?>
        </div>
    </div>
</div>
開發者ID:jaybril,項目名稱:www.juice.com,代碼行數:30,代碼來源:index.php

示例12: run

 public function run()
 {
     if ($this->pagination->getPageCount() <= 1) {
         return;
     }
     parent::run();
 }
開發者ID:rocketyang,項目名稱:mincms,代碼行數:7,代碼來源:LinkPager.php

示例13: init

 public function init()
 {
     parent::init();
     
     $this->prevPageLabel = '上一頁';
     $this->nextPageLabel = '下一頁';
 }
開發者ID:huasxin,項目名稱:lulucms2,代碼行數:7,代碼來源:LinkPager.php

示例14: init

 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->pluginOptions = ArrayHelper::merge(['wrapper' => '.list-view', 'pagination' => '.pagination', 'next' => '.pagination .next a:first', 'bufferPx' => 40, 'pjax' => ['container' => '#scrollPagerPjaxContainer']], $this->pluginOptions);
     ScrollPagerAsset::register($this->view);
     $pluginOptions = Json::encode($this->pluginOptions);
     $this->view->registerJs("\$('{$this->itemsContainer}').scrollPager({$pluginOptions});");
 }
開發者ID:voskobovich,項目名稱:yii2-scroll-pager,代碼行數:11,代碼來源:ScrollPager.php

示例15: init

 /**
  * Initializes the pager.
  */
 public function init()
 {
     $this->nextPageLabel = Yii::t('app', 'Next') . ' &raquo;';
     $this->prevPageLabel = '&laquo; ' . Yii::t('app', 'Prev.');
     $this->firstPageLabel = Yii::t('app', 'First');
     $this->lastPageLabel = Yii::t('app', 'Last');
     parent::init();
 }
開發者ID:baranov-nt,項目名稱:setyes,代碼行數:11,代碼來源:LinkPager.php


注:本文中的yii\widgets\LinkPager類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。