// in my controller
$customFinderOptions = [
'tags' => 'here are my tags'
];
$settings = [
'finder' => [
'PricesForListing' => $customFinderOptions
]
];
$c_allPrices = $this->paginate($this->Prices, $settings );
// in my Model/Tables/PricesTable.php
public function findPricesForListing(Query $query, array $tagged = []) {
debug($tagged);// outputs an empty array
return $query->find('all')->where(['created > ' => new \Cake\I18n\DateTime('2 months ago'),]);
}