如何在另一個模塊中調用模塊?此代碼的工作在我的控制器中受保護/控制器:Yii框架,在另一模塊中使用模塊
$image = Yii::app()->image->save($photofile, 'some_name','uploadedGal');
但在我的其他模塊(admin
)的控制器,我得到這個錯誤。
Property "CWebApplication.image" is not defined.
我在主配置文件中定義的image
模塊:
'modules'=>array(
'image'=>array(
'createOnDemand'=>true, // requires apache mod_rewrite enabled
'install'=>true, // allows you to run the installer
),
'admin',
),
也許你想要的是定義一個自定義CComponent。 – sucotronic
不,我有我的後端作爲模塊'管理員'和後端我需要使用圖像管理'圖像'模塊。我遵循所有的指示,它在前端工作,但它不工作在後端,這是一個模塊本身 –