2024-07-05 06:33:46 +03:00
|
|
|
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
|
|
|
|
use \App\Services\{Router, Auth, DB, Json};
|
|
|
|
use \App\Controllers\ExceptionRegister;
|
|
|
|
use \App\Core\Page;
|
|
|
|
|
|
|
|
class ProfileController
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public static function lk()
|
|
|
|
{
|
2024-07-05 12:21:52 +03:00
|
|
|
Page::set('Profile/LK/Index');
|
2024-07-05 06:33:46 +03:00
|
|
|
}
|
|
|
|
public static function i()
|
|
|
|
{
|
|
|
|
Page::set('Profile/Index');
|
|
|
|
}
|
2024-10-06 16:03:11 +03:00
|
|
|
public static function photoindexhistory()
|
|
|
|
{
|
|
|
|
Page::set('Profile/LK/PhotoIndexHistory');
|
|
|
|
|
|
|
|
}
|
2024-07-05 06:58:17 +03:00
|
|
|
public static function upload()
|
|
|
|
{
|
|
|
|
Page::set('Profile/UploadPhoto');
|
|
|
|
}
|
2024-07-05 12:21:52 +03:00
|
|
|
public static function lkhistory()
|
|
|
|
{
|
|
|
|
Page::set('Profile/LK/History');
|
|
|
|
}
|
2024-07-05 15:03:35 +03:00
|
|
|
public static function lkprofile()
|
|
|
|
{
|
|
|
|
Page::set('Profile/LK/Profile');
|
|
|
|
}
|
2024-07-05 06:33:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
}
|