Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<?php
App::uses('AppModel', 'Model');
/**
 * AppOffer Model
 *
 * @property AppAffiliate $AppAffiliate
 */
class AppOffer extends AppModel {

/**
 * Display field
 *
 * @var string
 */
        public $displayField = 'app_name';


        //The Associations below have been created with all possible keys, those that are not needed can be removed

/**
 * belongsTo associations
 *
 * @var array
 */
        public $belongsTo = array(
                'AppAffiliate' => array(
                        'className' => 'AppAffiliate',
                        'foreignKey' => 'affiliate_id',
                        'conditions' => '',
                        'fields' => '',
                        'order' => ''
                )
        );
}