nativegallery/app/Controllers/ProfileController.php

34 lines
603 B
PHP
Raw Normal View History

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-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
}