This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/email/classes/Model/Email/Log.php

43 lines
1.0 KiB
PHP
Raw Normal View History

2013-10-10 02:44:53 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports Email Logging
*
* @package Email
* @category Models
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Model_Email_Log extends ORM_OSB {
// Email Log doesnt use the update column
protected $_updated_column = FALSE;
protected $_belongs_to = array(
'account'=>array('far_key'=>'id'),
'translate'=>array('model'=>'Email_Template_Translate','foreign_key'=>'email_template_translate_id'),
2013-10-10 02:44:53 +00:00
);
protected $_sorting = array(
'id'=>'DESC',
);
2014-08-25 04:41:07 +00:00
protected $_compress_column = array(
'data',
);
2013-10-10 02:44:53 +00:00
protected $_display_filters = array(
'date_orig'=>array(
2014-08-25 04:41:07 +00:00
array('Site::Datetime',array(':value')),
2013-10-10 02:44:53 +00:00
),
);
/**
* Resolve a data variable into
*/
public function resolve($column) {
return (! $this->data OR ! $this->translate->variables($column)) ? $this->translate->display($column) : $this->translate->complete($this->data,$column);
2013-10-10 02:44:53 +00:00
}
}
?>