cmc-sales/php/app/models/email_attachment.php

23 lines
399 B
PHP
Raw Permalink Normal View History

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