1 | <?php defined('SYSPATH') OR die('No direct script access.'); |
||
12 | abstract class Kohana_Jam_Association_Autocreate extends Jam_Association_Belongsto { |
||
13 | |||
14 | /** |
||
15 | * @deprecated Use $additional_fields instead |
||
16 | * Will be removed in 0.6 |
||
17 | * @var array |
||
18 | */ |
||
19 | public $default_fields = array(); |
||
20 | |||
21 | /** |
||
22 | * Additional fields to search for existing entry by. |
||
23 | * They get set if a new entry is autocreated. |
||
24 | * @var array |
||
25 | */ |
||
26 | public $additional_fields = array(); |
||
27 | |||
28 | 4 | public function set(Jam_Validated $model, $value, $is_changed) |
|
53 | } |
||
54 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.