2017-03-19 4 views
0

私はZF3をインストールしており、モジュールはデフォルトで "アプリケーション"です。私はこのモジュールをデフォルトで他のモジュールに変更したいと思います。どうやってやるの?デフォルトモジュールを変更するには?

編集I:私はいくつかの変更を行ったが、それは動作しません :

/config/modules.config.php

return [ 
    'Zend\Router', 
    'Zend\Validator', 
    'Test', 
]; 

/モジュール/テスト/設定/module.config.php

<?php 
namespace Test; 

use Zend\ServiceManager\Factory\InvokableFactory; 

return [ 
    'controllers' => [ 
     'factories' => [ 
      Controller\IndexController::class => InvokableFactory::class, 
     ], 
    ], 
    'router' => [ 
     'routes' => [ 
      'home' => [ 
       'type' => "Literal", 
       'options' => [ 
        // Change this to something specific to your module 
        'route' => '/', 
        'defaults' => [ 
         'controller' => Controller\IndexController::class, 
         'action'  => 'index', 
        ], 
       ], 
       'may_terminate' => true, 
       'child_routes' => [ 
        // You can place additional routes that match under the 
        // route defined above here. 
       ], 
      ], 
     ], 
    ], 
    'view_manager' => [ 
     'template_path_stack' => [ 
      'Test' => __DIR__ . '/../view', 
     ], 
    ], 
]; 

そして、私はhttp://localhostにアクセスしようとしたとき、私が得る結果は次のとおりです。

Fatal error: Uncaught Zend\View\Exception\RuntimeException: Zend\View\Renderer\PhpRenderer::render: Unable to render template "error"; resolver could not resolve to a file in C:\Apache24\htdocs\shop\vendor\zendframework\zend-view\src\Renderer\PhpRenderer.php:494 Stack trace: #0 C:\Apache24\htdocs\shop\vendor\zendframework\zend-view\src\View.php(207): Zend\View\Renderer\PhpRenderer->render() #1 C:\Apache24\htdocs\shop\vendor\zendframework\zend-view\src\View.php(236): Zend\View\View->render(Object(Zend\View\Model\ViewModel)) #2 C:\Apache24\htdocs\shop\vendor\zendframework\zend-view\src\View.php(200): Zend\View\View->renderChildren(Object(Zend\View\Model\ViewModel)) #3 C:\Apache24\htdocs\shop\vendor\zendframework\zend-mvc\src\View\Http\DefaultRenderingStrategy.php(105): Zend\View\View->render(Object(Zend\View\Model\ViewModel)) #4 C:\Apache24\htdocs\shop\vendor\zendframework\zend-eventmanager\src\EventManager.php(322): Zend\Mvc\View\Http\DefaultRenderingStrategy->render(Object(Zend\Mvc\MvcEvent)) 5 C:\Apache24\htdocs\shop\ve in C:\Apache24\htdocs\shop\vendor\zendframework\zend-view\src\Renderer\PhpRenderer.php on line 494

編集II(固定):

/config/modules.config.php

return [ 
    'Zend\Router', 
    'Zend\Validator', 
    'Test', 
]; 

/モジュール/テスト/モジュール.config.php

<?php 
namespace Test; 

use Zend\ServiceManager\Factory\InvokableFactory; 

return [ 
    'controllers' => [ 
     'factories' => [ 
      Controller\IndexController::class => InvokableFactory::class, 
     ], 
    ], 
    'router' => [ 
     'routes' => [ 
      'home' => [ 
       'type' => "Literal", 
       'options' => [ 
        // Change this to something specific to your module 
        'route' => '/', 
        'defaults' => [ 
         'controller' => Controller\IndexController::class, 
         'action'  => 'index', 
        ], 
       ], 
       'may_terminate' => true, 
       'child_routes' => [ 
        // You can place additional routes that match under the 
        // route defined above here. 
       ], 
      ], 
     ], 
    ], 
    'view_manager' => [ 
     'display_not_found_reason' => true, 
     'display_exceptions'  => true, 
     'doctype'     => 'HTML5', 
     'not_found_template'  => 'error/404', 
     'exception_template'  => 'error/index', 
     'template_map' => [ 
      'layout/layout'   => __DIR__ . '/../view/layout/layout.phtml', 
      'test/index/index' => __DIR__ . '/../view/test/index/index.phtml', 
      'error/404'    => __DIR__ . '/../view/error/404.phtml', 
      'error/index'    => __DIR__ . '/../view/error/index.phtml', 
     ],   
     'template_path_stack' => [ 
      'Test' => __DIR__ . '/../view', 
     ], 
    ], 
]; 

最後に、 "test"モジュールに "error"と "layout"ディレクトリを追加しました。

enter image description here

答えて

2

は、次のことを行う必要があります。/config/modules.config.php

  • 、あなたのモジュールの名前とApplicationを交換してください。あなたのモジュールの前にロードされるモジュールのリストにZend\Routerを保存することを忘れないでください。
  • /module/Application/config/module.config.phpのようにconfig/module.config.phpファイルを書き、applicationをモジュール名(特にtemplate_mapアレイ)に置き換えてください。
  • /composer.jsonのセクションautoloadautoload-devには、 "application"への参照をモジュールの名前に置き換えます。次にcomposer updateを実行してcomposer/autoload_...ファイルを更新します。
  • index.phtmlおよび404.phtmlファイルを使用して、view/errorディレクトリをモジュールのフォルダに追加します。
  • view\layout\layout.phtmlファイルをモジュールのフォルダに追加します。

名前空間に注意してください! これは動作するはずです。

+0

あなたの答えをありがとう、私は私の問題についての詳細を追加しました。 –

+1

私は自分の答えを網羅的に完成させました。それがあなたに合っているかどうか教えてください。 –

+0

それは動作します!どうもありがとうございます!!! –

関連する問題