我们如何在Symfony1.4中使用其他应用程序模块的帮助程序?
我想重复使用相同的帮助程序类而不重复内容。
答案 0 :(得分:7)
最简单和推荐的方法是将这个助手从应用程序移到项目的lib / helper目录。
你也可以使用$ moduleName参数在sfApplicationConfiguration :: getHelperDirs()中没有真正验证或转义的事实,但移动它看起来比这个脏的解决方法更清晰:
sfContext::getInstance()->getConfiguration()->loadHelpers(['Test'], '../../other_app/modules/other_module');