2009-02-09 22:25:49 +00:00
|
|
|
<?php
|
|
|
|
|
class EmailAttachment extends AppModel {
|
|
|
|
|
|
2011-03-10 07:18:26 +00:00
|
|
|
var $name = 'EmailAttachment';
|
|
|
|
|
|
2011-03-11 02:58:26 +00:00
|
|
|
|
|
|
|
|
var $order = "EmailAttachment.size DESC";
|
|
|
|
|
|
2011-03-21 05:08:07 +00:00
|
|
|
var $actsAs = array('Containable');
|
|
|
|
|
|
2011-03-11 02:58:26 +00:00
|
|
|
|
2011-03-10 07:18:26 +00:00
|
|
|
var $belongsTo = array(
|
|
|
|
|
'Email' => array('className' => 'Email',
|
|
|
|
|
'foreignKey' => 'email_id',
|
|
|
|
|
'counterCache' => true,
|
|
|
|
|
'conditions' => '',
|
|
|
|
|
'fields' => '',
|
|
|
|
|
'order' => ''
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
}
|
2009-02-09 22:25:49 +00:00
|
|
|
?>
|