| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace TestApp\Model\Table;
- use Cake\ORM\Query;
- use Cake\ORM\Table;
- /**
- * Author table class
- */
- class AuthorsTable extends Table
- {
- public function initialize(array $config)
- {
- $this->hasMany('articles');
- }
- public function findByAuthor(Query $query, array $options = [])
- {
- if (isset($options['author_id'])) {
- $query->where(['Articles.id' => $options['author_id']]);
- }
- return $query;
- }
- /**
- * Finder that applies a formatter to test dirty associations
- *
- * @param \Cake\ORM\Query $query The query
- * @param array $options The options
- * @return \Cake\ORM\Query
- */
- public function findFormatted(Query $query, array $options = [])
- {
- return $query->formatResults(function ($results) {
- return $results->map(function ($author) {
- $author->formatted = $author->name . '!!';
- return $author;
- });
- });
- }
- }
|