| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php defined('SYSPATH') OR die('No direct script access.'); | ||
| 10 | public static function initialize(Jam_Meta $meta) | ||
| 11 | 	{ | ||
| 12 | $meta | ||
| 13 | 			->name_key('id'); | ||
| 14 | |||
| 15 | $meta->associations(array( | ||
| 16 | 			'term' => Jam::association('belongsto'), | ||
| 17 | 			'item' => Jam::association('belongsto', array('polymorphic' => TRUE)), | ||
| 18 | )); | ||
| 19 | |||
| 20 | $meta->fields(array( | ||
| 21 | 			'id' => Jam::field('primary'), | ||
| 22 | )); | ||
| 23 | } | ||
| 24 | } | ||
| 25 |