mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 19:49:08 +03:00
19 lines
No EOL
443 B
PHP
19 lines
No EOL
443 B
PHP
<?php
|
|
namespace App\Models;
|
|
use \App\Services\DB;
|
|
|
|
class User {
|
|
|
|
public $userid;
|
|
function __construct(int $user_id) {
|
|
$this->userid = $user_id;
|
|
}
|
|
public function i($table) {
|
|
return DB::query("SELECT * FROM users WHERE id=:id", array(':id'=>$this->userid))[0][$table];
|
|
}
|
|
public function content($table) {
|
|
$content = json_decode(self::i('content'), true);
|
|
return $content[$table];
|
|
}
|
|
|
|
} |