mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 19:22:45 +08:00
35 lines
732 B
PHP
35 lines
732 B
PHP
<?php
|
|
|
|
namespace App\Http\Admin;
|
|
|
|
use App\Library\Mvc\View as MyView;
|
|
use App\Services\Auth\Admin as AdminAuth;
|
|
use Phalcon\DiInterface;
|
|
use Phalcon\Mvc\ModuleDefinitionInterface;
|
|
|
|
class Module implements ModuleDefinitionInterface
|
|
{
|
|
|
|
public function registerAutoLoaders(DiInterface $di = null)
|
|
{
|
|
|
|
}
|
|
|
|
public function registerServices(DiInterface $di)
|
|
{
|
|
$di->setShared('view', function () {
|
|
$view = new MyView();
|
|
$view->setViewsDir(__DIR__ . '/Views');
|
|
$view->registerEngines([
|
|
'.volt' => 'volt',
|
|
]);
|
|
return $view;
|
|
});
|
|
|
|
$di->setShared('auth', function () {
|
|
return new AdminAuth();
|
|
});
|
|
}
|
|
|
|
}
|