Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php defined('SYSPATH') OR die('No direct script access.'); |
||
14 | public function initialize(Jam_Meta $meta, $name) |
||
15 | { |
||
16 | parent::initialize($meta, $name); |
||
17 | |||
18 | $meta |
||
19 | ->associations(array( |
||
20 | 'shipping_item' => Jam::association('hasone', array( |
||
21 | 'inverse_of' => 'purchase_item', |
||
22 | 'foreign_key' => 'purchase_item_id', |
||
23 | 'dependent' => Jam_Association::DELETE |
||
24 | )), |
||
25 | )); |
||
26 | } |
||
27 | } |
||
28 |