2011-01-27 21 views
0

我嘗試將由管理員生成器生成的模塊移至插件。如何將Symfony Admin Generator文件移動到插件?

錯誤:

Fatal error: Class 'BaseFooGeneratorConfiguration' not found in ...

的action.class.php包括到文件:

  1. fooGeneratorConfiguration.class.php

  2. fooGeneratorHelper.class.php

這兩個類都擴展了基類(BaseFooGeneratorConfiguration,BaseFooGeneratorHelper)。 問題是這些類只存在於緩存中。

我是否需要將緩存中的類複製到我的插件中?

回答

0

您是否在將模塊移動到插件後嘗試清除緩存?

./symfony cc 
相關問題