0

我想从另一个助手中使用该distance_of_time_in_words功能。DateHelper

如何在DateHelper我的自定义 Helper 中使用 symfony?

非常感谢任何提示。

4

2 回答 2

0

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.

于 2012-07-18T10:14:34.130 回答
0

我想我找到了解决方案。

在我的助手中调用 distance_of_time_in_words() 函数之前添加了以下行。

sfProjectConfiguration::getActive()->loadHelpers(array('Date'));

这正是我需要的,谢谢。

于 2012-07-18T10:47:04.530 回答