• Modules


    Modules

    zend-mvc uses a module system to organise your main application-specific code within each module. The Application module provided by the skeleton is used to provide bootstrapping, error, and routing configuration to the whole application. It is usually used to provide application level controllers for the home page of an application, but we are not going to use the default one provided in this tutorial as we want our album list to be the home page, which will live in our own module.

    We are going to put all our code into the Album module which will contain our controllers, models, forms and views, along with configuration. We’ll also tweak the Application module as required.

    Let’s start with the directories required.

    Setting up the Album module

    Start by creating a directory called Album under module with the following subdirectories to hold the module’s files:

    zf2-tutorial/
        /module
            /Album
                /config
                /src
                    /Controller
                    /Form
                    /Model
                /view
                    /album
                        /album

    The Album module has separate directories for the different types of files we will have. The PHP files that contain classes within the Album namespace live in the src/ directory. The view directory also has a sub-folder called album for our module's view scripts.

    In order to load and configure a module, Zend Framework provides aModuleManager. This will look for a Module class in the specified module namespace (i.e., Album); in the case of our new module, that means the classAlbumModule, which will be found in module/Album/src/Module.php.

    Let's create that file now, with the following contents:

    namespace Album;
    
    use ZendModuleManagerFeatureConfigProviderInterface;
    
    class Module implements ConfigProviderInterface
    {
        public function getConfig()
        {
            return include __DIR__ . '/../config/module.config.php';
        }
    }

    The ModuleManager will call getConfig() automatically for us.

    Autoloading

    While Zend Framework provides autoloading capabilities via its zend-loadercomponent, we recommend using Composer's autoloading capabilities. As such, we need to inform Composer of our new namespace, and where its files live.

    Open composer.json in your project root, and look for the autoload section; it should look like the following by default:

    "autoload": {
        "psr-4": {
            "Application\": "module/Application/src/"
        }
    },

    We'll now add our new module to the list, so it now reads:

    "autoload": {
        "psr-4": {
            "Application\": "module/Application/src/",
            "Album\": "module/Album/src/"
        }
    },

    Once you've made that change, run the following to ensure Composer updates its autoloading rules:

    $ composer dump-autoload

    Configuration

    Having registered the autoloader, let’s have a quick look at the getConfig()method in AlbumModule. This method loads the config/module.config.php file under the module's root directory.

    Create a file called module.config.php underzf2-tutorial/module/Album/config/:

    namespace Album;
    
    use ZendServiceManagerFactoryInvokableFactory;
    
    return [
        'controllers' => [
            'factories' => [
                ControllerAlbumController::class => InvokableFactory::class,
            ],
        ],
        'view_manager' => [
            'template_path_stack' => [
                'album' => __DIR__ . '/../view',
            ],
        ],
    ];

    The config information is passed to the relevant components by theServiceManager. We need two initial sections: controllers and view_manager. The controllers section provides a list of all the controllers provided by the module. We will need one controller, AlbumController; we'll reference it by its fully qualified class name, and use the zend-servicemanager InvokableFactoryto create instances of it.

    Within the view_manager section, we add our view directory to theTemplatePathStack configuration. This will allow it to find the view scripts for the Album module that are stored in our view/ directory.

    Informing the application about our new module

    We now need to tell the ModuleManager that this new module exists. This is done in the application’s config/modules.config.php file which is provided by the skeleton application. Update this file so that the array it returns contains theAlbum module as well, so the file now looks like this:

    (Changes required are highlighted using comments; original comments from the file are omitted for brevity.)

    return [
        'ZendForm',
        'ZendDb',
        'ZendRouter',
        'ZendValidator',
        'Application',
        'Album',          // <-- Add this line
    ];

    As you can see, we have added our Album module into the list of modules after the Application module.

    We have now set up the module ready for putting our custom code into it.

  • 相关阅读:
    个人软件过程详细需求分析
    班级网站分析
    PSP个人软件开发系统面向对象需求分析与设计文档
    Psp个人软件开发软件需求分析及用例分析
    上海期货交易所数据备份软件项目前景与范围文档
    vmware虚拟机与主机连接
    c#实现截取电脑全屏
    求一串数组的最大的子数组的和 孔祥安AND杨霏
    多路电梯调度问题 杨霏AND孔祥安
    分析文件中频率出现最多的前十个词
  • 原文地址:https://www.cnblogs.com/chunguang/p/5642704.html
Copyright © 2020-2023  润新知