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

19 lines
595 B
PHP

<?php
class Blitem extends AppModel
{
var $name = 'Blitem';
var $hasMany = array('Blapp' =>
array('className' => 'Blapp',
'conditions' => '',
'order' => '',
'limit' => '',
'foreignKey' => 'blitem_id',
'dependent' => true,
'exclusive' => false,
'finderSql' => ''
)
);
}
?>