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.
私はケーキphpが初めてです。アプリ/コントローラー関数でプラグイン関数を呼び出す方法を教えてください。プラグインをロードしましたが、その機能の使用方法がわかりません。前もって感謝します。
プラグインを含めるとすぐに、そのモデルを次のように簡単に使用できます。
$this->ModelName = ClassRegistry::init('PluginName.ModelName'); $this->ModelName->foo();
ライブラリと他のクラス App::uses() の場合:
App::uses('MyCoolPluginLib', 'PluginName.Lib'); $Lib = new MyCoolPluginLib();