- Zend Framework 教程
- Zend Framework - 首页
- Zend Framework - 简介
- Zend Framework - 安装
- 框架应用
- Zend Framework - MVC 架构
- Zend Framework - 概念
- Zend Framework - 服务管理器
- Zend Framework - 事件管理器
- Zend Framework - 模块系统
- 应用结构
- Zend Framework - 创建模块
- Zend Framework - 控制器
- Zend Framework - 路由
- Zend Framework - 视图层
- Zend Framework - 布局
- 模型与数据库
- 不同的数据库
- 表单与验证
- Zend Framework - 文件上传
- Zend Framework - Ajax
- Cookie 管理
- 会话管理
- Zend Framework - 身份验证
- 邮件管理
- Zend Framework - 单元测试
- Zend Framework - 错误处理
- Zend Framework - 工作示例
- Zend Framework 有用资源
- Zend Framework - 快速指南
- Zend Framework - 有用资源
- Zend Framework - 讨论
Zend Framework - 创建模块
本章我们将学习如何在 Zend Framework 中创建一个基于 MVC 的模块。让我们创建一个名为Tutorial的模块来理解模块创建过程。
在 –myapp/module/Tutorial/src/ 目录下创建一个名为Module的新 PHP 类,并实现 ConfigProviderInterface 接口。
将Tutorial设置为Module类的命名空间。
在Module类中编写一个公共函数getConfig,并返回Tutorial模块的配置文件。
Module类的完整代码如下:
<?php namespace Tutorial; use Zend\ModuleManager\Feature\ConfigProviderInterface; class Module implements ConfigProviderInterface { public function getConfig() { return include __DIR__ . '/../config/module.config.php'; } }
使用以下代码在composer.json的autoload部分配置Tutorial模块。
"autoload": { "psr-4": { "Application\\": "module/Application/src/", "Tutorial\\": "module/Tutorial/src/" } }
使用composer update命令更新应用程序,如下所示。
composer update
composer命令将对应用程序进行必要的更改,并在命令提示符中显示日志,如下所示:
Loading composer repositories with package information Updating dependencies (including require-dev) - Removing zendframework/zend-component-installer (0.3.0) - Installing zendframework/zend-component-installer (0.3.1) Downloading: 100% - Removing zendframework/zend-stdlib (3.0.1) - Installing zendframework/zend-stdlib (3.1.0) Loading from cache - Removing zendframework/zend-eventmanager (3.0.1) - Installing zendframework/zend-eventmanager (3.1.0) Downloading: 100% - Removing zendframework/zend-view (2.8.0) - Installing zendframework/zend-view (2.8.1) Loading from cache - Removing zendframework/zend-servicemanager (3.1.0) - Installing zendframework/zend-servicemanager (3.2.0) Downloading: 100% - Removing zendframework/zend-escaper (2.5.1) - Installing zendframework/zend-escaper (2.5.2) Loading from cache - Removing zendframework/zend-http (2.5.4) - Installing zendframework/zend-http (2.5.5) Loading from cache - Removing zendframework/zend-mvc (3.0.1) - Installing zendframework/zend-mvc (3.0.4) Downloading: 100% - Removing phpunit/phpunit (5.7.4) - Installing phpunit/phpunit (5.7.5) Downloading: 100% Writing lock file Generating autoload files
在/config/目录下创建模块配置文件“module.config.php”,内容如下:
<?php namespace Tutorial; use Zend\ServiceManager\Factory\InvokableFactory; use Zend\Router\Http\Segment; return [ 'controllers' => [ 'factories' => [Controller\TutorialController::class => InvokableFactory::class,], ], 'view_manager' => [ 'template_path_stack' => ['tutorial' => __DIR__ . '/../view',], ], ];
配置文件包含三个部分,它们分别是:
控制器配置 - 指定模块中可用的控制器。
路由配置 - 指定如何将模块中的控制器解析为 URL。
视图配置 - 指定与视图引擎相关的配置,例如视图的位置等。
在应用程序级配置文件 – myapp/config/modules.config.php 中配置Tutorial模块。
return ['Zend\Router', 'Zend\Validator', 'Application', 'Tutorial'];
在应用程序根目录下执行composer serve运行应用程序。
我们已经成功添加了一个新模块,但是为了成功运行Tutorial模块,我们仍然需要添加控制器、路由和视图。
广告