| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright 2005-2011, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
- * @link https://cakephp.org CakePHP Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace TestApp\Model\Table;
- use Cake\ORM\Query\SelectQuery;
- use Cake\ORM\Table;
- /**
- * PaginatorPostsTable class
- */
- class PaginatorPostsTable extends Table
- {
- /**
- * initialize method
- */
- public function initialize(array $config): void
- {
- $this->setTable('posts');
- $this->belongsTo('PaginatorAuthor', [
- 'foreignKey' => 'author_id',
- ]);
- }
- /**
- * Finder method for find('popular');
- */
- public function findPopular(SelectQuery $query): Select
- {
- $field = $this->getAlias() . '.' . $this->getPrimaryKey();
- $query->where([$field . ' >' => '1']);
- return $query;
- }
- /**
- * Finder for published posts.
- */
- public function findPublished(SelectQuery $query): SelectQuery
- {
- $query->where(['published' => 'Y']);
- return $query;
- }
- /**
- * Custom finder, used with fixture data to ensure Paginator is sending options
- */
- public function findAuthor(SelectQuery $query, ?int $authorId = null): SelectQuery
- {
- if ($authorId) {
- $query->where(['PaginatorPosts.author_id' => $authorId]);
- }
- return $query;
- }
- }
|