LoginSignup
0
0

More than 1 year has passed since last update.

CakePHPでPaginatorComponentが非推奨だと言われたので

Last updated at Posted at 2022-10-24

CakePHP4.4からPaginatorコンポーネントは非推奨だぞといわれたので
Paginateヘルパーを今までと同じように使用するために再現したメモです。

$request = $this->getRequest();
$query = $this->Users->find()->toList();

$paginator = new NumericPaginator();
$records = $paginator->paginate($query, $request->getQueryParams(), $this->paginate);
$params = $paginator->getPagingParams();
$this->setRequest($request->withAttribute('paging', $params));

直接呼べって書いてありましたが、ヘルパーで使用するセットされているべき情報があるので
そのままでは使えないので注意が必要でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0