准备Zend Framework 2(命名空间控制器)

时间:2012-07-27 21:50:47

标签: php zend-framework namespaces zend-framework2

随着Zend Framework 2的稳定版本的出现,我们一直在慢慢实现一些ZF2组件,更改约定,实现名称空间等。在移动之前将所有控制器命名为namespace会很好简单的事情,但我没有找到实现这一目标的好方法。

有没有人对ZF1中的控制器命名空间有任何建议?我现在不介意编辑ZF1库文件。

namespace Product;

use Zend_Controller_Action as AbstractActionController;

class IndexController extends AbstractActionController
{}

1 个答案:

答案 0 :(得分:0)

花了一段时间,但我发现这可以通过自定义调度程序来完成:

<?php

namespace Webjawns\Controller\Dispatcher;

use Zend_Controller_Dispatcher_Standard as Dispatcher;

class Standard extends Dispatcher
{
    /**
     * Format action class name
     *
     * @param string $moduleName Name of the current module
     * @param string $className Name of the action class
     * @return string Formatted class name
     */
    public function formatClassName($moduleName, $className)
    {
        return $this->formatModuleName($moduleName) . '\Controller\\' . $className;
    }

    /**
     * Convert a class name to a filename
     *
     * @param string $class
     * @return string
     */
    public function classToFilename($class)
    {
        return str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
    }
}

然后在应用程序的入口点的某处:

Zend_Controller_Front::getInstance()->setDispatcher(
    new \Webjawns\Controller\Dispatcher\Standard());