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.
memberdb/application/classes/Model/Account/Log.php

28 lines
558 B
PHP
Raw Normal View History

2014-06-30 04:22:57 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
2014-07-09 03:04:56 +00:00
* This class supports Account Login Logging
2014-06-30 04:22:57 +00:00
*
2014-07-09 03:04:56 +00:00
* @package Membership Database
2014-06-30 04:22:57 +00:00
* @category Models
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
2014-07-09 03:04:56 +00:00
class Model_Account_Log extends ORM {
2014-06-30 04:22:57 +00:00
protected $_belongs_to = array(
2014-07-09 03:04:56 +00:00
'account'=>array(),
2014-06-30 04:22:57 +00:00
);
2014-07-09 03:04:56 +00:00
protected $_sorting = array(
'id'=>'DESC',
2014-06-30 04:22:57 +00:00
);
protected $_display_filters = array(
'date_orig'=>array(
2014-07-09 03:04:56 +00:00
array('Site::Datetime',array(':value')),
2014-06-30 04:22:57 +00:00
),
);
}
?>