Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはおそらく非常に簡単ですが、私には理解できないようです。CakePHPアプリケーションでプラグインのコンポーネントのリストを取得するにはどうすればよいですか(コンポーネントのクラス名だけが必要です)。
助けてくれてありがとう
1.3ではこれでうまくいくと思います:
App::objects('PluginName.Component');
しかし、あなたはいつでもパスを得ることができます:
$path = CakePlugin::path('PluginName');
コンポーネントフォルダを手動で繰り返します。