sancus%off.net 73904091fe initial import of models and other app files
git-svn-id: svn://10.0.0.236/trunk@207393 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-14 23:54:58 +00:00

41 lines
1.7 KiB
PHP

<?php
class File extends AppModel
{
var $name = 'File';
var $belongsTo = array('Version' =>
array('className' => 'Version',
'conditions' => '',
'order' => '',
'foreignKey' => 'version_id'
),
'Platform' =>
array('className' => 'Platform',
'conditions' => '',
'order' => '',
'foreignKey' => 'platform_id'
)
);
var $hasMany = array('Download' =>
array('className' => 'Download',
'conditions' => '',
'order' => '',
'limit' => '',
'foreignKey' => 'file_id',
'dependent' => true,
'exclusive' => false,
'finderSql' => ''
),
'Approval' =>
array('className' => 'Approval',
'conditions' => '',
'order' => '',
'limit' => '',
'foreignKey' => 'file_id',
'dependent' => true,
'exclusive' => false,
'finderSql' => ''
)
);
}
?>