<?php
/*
OsShare v1 ,
Coded By Paimpozhil B. , SaravanaKumar M.S.
*/
class Pl extends AppModel {
var $name = 'Pl';
var $displayField = 'plsname';
var $validate = array(
'id' => VALID_NUMBER,
'plsname' => VALID_NOT_EMPTY,
'user_id' => VALID_NOT_EMPTY,
);
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'User' => array('className' => 'User',
'foreignKey' => 'user_id',
'conditions' => '',
'fields' => '',
'order' => '',
'counterCache' => ''),
);
var $hasMany = array(
'Plsitem' => array('className' => 'Plsitem',
'foreignKey' => 'pl_id',
'conditions' => '',
'fields' => '',
'order' => '',
'dependent' => true,
'counterCache' => ''),
);
}
?>