mirror of
https://github.com/WerySkok/nativegallery.git
synced 2024-11-15 11:39:13 +03:00
34 lines
No EOL
603 B
PHP
34 lines
No EOL
603 B
PHP
<?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()
|
|
{
|
|
Page::set('Profile/LK/Index');
|
|
}
|
|
public static function i()
|
|
{
|
|
Page::set('Profile/Index');
|
|
}
|
|
public static function upload()
|
|
{
|
|
Page::set('Profile/UploadPhoto');
|
|
}
|
|
public static function lkhistory()
|
|
{
|
|
Page::set('Profile/LK/History');
|
|
}
|
|
public static function lkprofile()
|
|
{
|
|
Page::set('Profile/LK/Profile');
|
|
}
|
|
|
|
|
|
} |