我想从另一个助手中使用该distance_of_time_in_words
功能。DateHelper
如何在DateHelper
我的自定义 Helper 中使用 symfony?
非常感谢任何提示。
我想从另一个助手中使用该distance_of_time_in_words
功能。DateHelper
如何在DateHelper
我的自定义 Helper 中使用 symfony?
非常感谢任何提示。
I think the best way, is to define your helper globally, in your apps/frontend/config/settings.yml
:
all:
.settings:
standard_helpers: [Partial, Cache, I18N, Date]
This way, all the helpers from standard_helpers
will always be loaded and available in your view.
Ps: be careful to not override your own standard_helpers
but just add Date
to the end.
我想我找到了解决方案。
在我的助手中调用 distance_of_time_in_words() 函数之前添加了以下行。
sfProjectConfiguration::getActive()->loadHelpers(array('Date'));
这正是我需要的,谢谢。