mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-01-26 03:04:00 +00:00
21 lines
382 B
PHP
21 lines
382 B
PHP
<?php
|
|
|
|
/**
|
|
* User model that we use to control our users
|
|
*/
|
|
class User_model extends MY_Model
|
|
{
|
|
public $before_create = array( 'timestamps' );
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
protected function timestamps($ecard)
|
|
{
|
|
$ecard['created_at'] = $ecard['updated_at'] = date('Y-m-d H:i:s');
|
|
return $ecard;
|
|
}
|
|
}
|