Skip to content

Instantly share code, notes, and snippets.

@styks1987
Last active June 11, 2017 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save styks1987/0f09e418dd2de1c8d57b63d53d0a5158 to your computer and use it in GitHub Desktop.
Save styks1987/0f09e418dd2de1c8d57b63d53d0a5158 to your computer and use it in GitHub Desktop.
<?php
// Calling this model OtherItem
// in your model initialize function for your OtherItem
$this->addBehavior('CounterCache', [
'PrimaryItems' => [
'other_items_count'
]
]);
$this->hasMany('OtherItems', [
'conditions' => [
'OtherItems.someproperty = PrimaryItems.someproperty',
'OtherItems.date < PrimaryItems.date',
]
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment