mirror of
https://github.com/claradex/nativegallery.git
synced 2025-02-22 19:49:51 +03:00
23 lines
419 B
PHP
23 lines
419 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use \App\Services\{Router, Auth, DB, Json};
|
|
use \App\Controllers\ExceptionRegister;
|
|
use \App\Core\Page;
|
|
|
|
class VehicleController
|
|
{
|
|
public static function i()
|
|
{
|
|
Page::set('Vehicle/Index');
|
|
}
|
|
public static function iedit()
|
|
{
|
|
Page::set('Vehicle/IndexEdit');
|
|
}
|
|
public static function dbedit()
|
|
{
|
|
Page::set('Vehicle/DBEdit');
|
|
}
|
|
}
|