如何将 Symfony Admin Generator 文件移动到插件?
我尝试将管理生成器生成的模块移动到插件中。
错误:
致命错误:在...中找不到“BaseFooGeneratorConfiguration”类
。action.class.php 包含文件:
fooGeneratorConfiguration.class.php
fooGeneratorHelper.class.php
这两个类都扩展了基类(BaseFooGeneratorConfiguration、BaseFooGeneratorHelper)。 问题是这些类只存在于缓存中。
我需要将类从缓存复制到我的插件中吗?!
I try to move my module which generated by the Admin Genrator to a plugin.
Error:
Fatal error: Class 'BaseFooGeneratorConfiguration' not found in ...
The action.class.php includes to files:
fooGeneratorConfiguration.class.php
fooGeneratorHelper.class.php
Both classes extends of an base class (BaseFooGeneratorConfiguration,BaseFooGeneratorHelper).
The problem is that those classes only exist in the cache.
Do i need to copy the class from cache into my plugin ?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将模块移动到插件后,您是否尝试过清除缓存?
Have you tried clearing your cache after moving the module to your plugin?