mirror of
https://github.com/WerySkok/nativegallery.git
synced 2024-11-15 19:49:16 +03:00
23 lines
No EOL
328 B
PHP
23 lines
No EOL
328 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
use \App\Services\{Router, Auth, DB, Json};
|
|
use \App\Controllers\ExceptionRegister;
|
|
use \App\Core\Page;
|
|
|
|
class PhotoController
|
|
{
|
|
|
|
|
|
public static function i()
|
|
{
|
|
Page::set('Photo');
|
|
}
|
|
public static function photoext()
|
|
{
|
|
Page::set('PhotoExt');
|
|
|
|
}
|
|
|
|
|
|
} |