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();