标签: php cakephp cakephp-1.3
这可能很容易做到,但我似乎无法弄明白。如何在cakePHP应用程序中获取插件的组件列表(我只想要组件的类名)。
感谢您的帮助
答案 0 :(得分:1)
我认为在1.3中这应该有效:
App::objects('PluginName.Component');
但你总能得到路径:
$path = CakePlugin::path('PluginName');
并手动遍历组件文件夹。