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