別のモジュールでモジュールを呼び出すにはどうすればよいですか? このコードは、Protected/Controllers のコントローラーで機能します。
$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',
),