我在YII-事件中有两个不同的模块,邀请。
当我使用邀请模块时,我想访问其他模块。 我该如何导入?
答案 0 :(得分:0)
如果您想在邀请中使用事件模型,请在邀请模块中添加以下代码InvitationModule.php init()
public function init()
{
// importing al models, components from event
$this->setImport(array(
// already you have list for invitation module
'event.models.*', // event is alias name for event module.
'event.components.*',
));
}