1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 |
<?php
// This is the Behavior I want to use in my model
class TransactionBehavior extends ModelBehavior
{
function afterFind($results, $primaryKey = false)
{
return $results;
}
}
?>
<?php
// This is the model
class Essai extends AppModel {
var $name = 'Essai';
}
?> |
