2024-07-03 14:41:15 +03:00
|
|
|
<?php
|
2024-07-05 13:49:04 +03:00
|
|
|
namespace app\controllers;
|
|
|
|
|
|
|
|
|
2024-07-08 16:20:25 +03:00
|
|
|
use app\helpers\Debug;
|
2024-07-05 13:49:04 +03:00
|
|
|
use app\models\Question;
|
|
|
|
use app\models\User;
|
2024-07-08 16:20:25 +03:00
|
|
|
use http\Encoding\Stream\Debrotli;
|
2024-07-05 13:49:04 +03:00
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
2024-07-09 16:08:50 +03:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2024-07-03 14:41:15 +03:00
|
|
|
|
2024-07-08 16:20:25 +03:00
|
|
|
class UserController {
|
|
|
|
public function actionCreate(): void
|
2024-07-03 14:41:15 +03:00
|
|
|
{
|
2024-07-09 16:08:50 +03:00
|
|
|
require "app/views/userCreate.php";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionAdd(): void
|
|
|
|
{
|
|
|
|
User::create($_REQUEST);
|
2024-07-03 14:41:15 +03:00
|
|
|
}
|
|
|
|
|
2024-07-03 15:15:59 +03:00
|
|
|
public function actionQuestionCount($user_id)
|
2024-07-03 14:41:15 +03:00
|
|
|
{
|
|
|
|
return Question::where('user_id', $user_id)->count();
|
|
|
|
}
|
2024-07-05 13:49:04 +03:00
|
|
|
|
2024-07-08 16:20:25 +03:00
|
|
|
public function actionIndex(): void
|
2024-07-05 13:49:04 +03:00
|
|
|
{
|
|
|
|
foreach (User::all() as $user)
|
|
|
|
{
|
|
|
|
echo $user->username . "<br>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-08 16:20:25 +03:00
|
|
|
public function actionView($id): void
|
2024-07-05 13:49:04 +03:00
|
|
|
{
|
2024-07-08 16:20:25 +03:00
|
|
|
echo User::where('id', '=', $id)->get();
|
2024-07-09 16:08:50 +03:00
|
|
|
echo User::where('id', '=', $id)->first() . "<br><br>";
|
2024-07-05 13:49:04 +03:00
|
|
|
|
2024-07-09 16:08:50 +03:00
|
|
|
$user = User::find($id);
|
|
|
|
echo $user->id . "<br>";
|
|
|
|
echo $user->username . "<br>";
|
|
|
|
echo $user->email . "<br>";
|
|
|
|
echo $user->password . "<br>";
|
|
|
|
echo $user->created_at . "<br>";
|
|
|
|
echo $user->updated_at . "<br>";
|
2024-07-05 13:49:04 +03:00
|
|
|
}
|
2024-07-09 16:08:50 +03:00
|
|
|
|
|
|
|
public function actionUpdate(): void
|
|
|
|
{
|
|
|
|
Debug::prn("Update");
|
|
|
|
require "app/views/userUpdate.php";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionEdit(): void
|
|
|
|
{
|
|
|
|
$user = User::find($_REQUEST['id']);
|
|
|
|
$user->username = $_REQUEST['username'];
|
|
|
|
$user->email = $_REQUEST['email'];
|
|
|
|
$user->password = $_REQUEST['password'];
|
|
|
|
$user->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionDelete($id): void
|
|
|
|
{
|
|
|
|
User::find($id)->delete();
|
|
|
|
}
|
|
|
|
|
2024-07-03 14:41:15 +03:00
|
|
|
}
|