1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-09-17 21:29:29 +08:00

35 lines
728 B
PHP

<?php
namespace App\Http\Home;
use App\Library\Mvc\View as MyView;
use App\Services\Auth\Home as HomeAuth;
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 HomeAuth();
});
}
}