Subversion Repositories SmartDukaan

Rev

Rev 15051 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
15051 manas 1
<?php
2
App::uses('AppModel', 'Model');
3
/**
4
 * Retailer Model
5
 *
6
 * @property Call $Call
7
 * @property PlayStoreLink $PlayStoreLink
8
 */
9
class Retailer extends AppModel {
10
 
11
/**
12
 * Display field
13
 *
14
 * @var string
15
 */
16
	public $displayField = 'name';
17
 
18
 
19
	//The Associations below have been created with all possible keys, those that are not needed can be removed
20
 
21
/**
22
 * hasMany associations
23
 *
24
 * @var array
25
 */
26
	public $hasMany = array(
19810 naman 27
 
28
// 		'PlayStoreLink' => array(
29
// 			'className' => 'PlayStoreLink',
30
// 			'foreignKey' => 'retailer_id',
31
// 			'dependent' => false,
32
// 			'conditions' => '',
33
// 			'fields' => '',
34
// 			'order' => '',
35
// 			'limit' => '',
36
// 			'offset' => '',
37
// 			'exclusive' => '',
38
// 			'finderQuery' => '',
39
// 			'counterQuery' => ''
40
// 		)
15051 manas 41
	);
42
 
43
}