在第三方扩展中使用模型

时间:2013-09-09 06:47:09

标签: php yii yii-extensions

我在Yii中使用第三方扩展程序,我想知道,如果可以在扩展程序中使用模型。

扩展程序在我的数据库上创建一个表,该模型与我的user表有关系规则。我已将user模型上的关系添加到扩展程序的模型中。

当我执行findAll查询时,它会引发错误:include(ExtensionModel.php): failed to open stream: No such file or directory

如何在第三方扩展程序中使用模型?

2 个答案:

答案 0 :(得分:0)

请查看manual。在简单的情况下,您只需将其包含在第三方文件中:

require_once('path/to/yii.php');
Yii::createWebApplication('path/to/config.php');

答案 1 :(得分:0)

我认为这会有所帮助 - 请参阅下面的代码:

require_once('path/to/yii.php');
Yii::createWebApplication('path/to/config.php');