2020-07-05 21:16:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Author: lopiu
|
|
|
|
* Date: 05.07.2020
|
|
|
|
* Time: 22:38
|
|
|
|
*/
|
2020-10-28 20:21:08 +00:00
|
|
|
namespace Battles\Models;
|
2020-07-05 21:16:22 +00:00
|
|
|
class UserLogModel
|
|
|
|
{
|
|
|
|
protected $DB;
|
|
|
|
|
|
|
|
public function __construct(int $user_id)
|
|
|
|
{
|
2020-10-28 20:21:08 +00:00
|
|
|
$this->DB = \db::c()->query('SELECT * FROM users_logs WHERE user_id = ?i ORDER BY `id` ASC', $user_id);
|
2020-07-05 21:16:22 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUserLog()
|
|
|
|
{
|
|
|
|
return $this->DB;
|
|
|
|
}
|
|
|
|
}
|