モデル内から Yii の createUrl() 関数にアクセスしたい。
これは私の afterSave() の私のコードです。
public function afterSave(){
...more code...
$message = "Hi ".$this->firstname.' '.$this->lastname.',\n
Welcome to XYZ. This is the mail that is sent for the activation of your account.\n
Kindly click this link or copy paste it to the URL and register your account.'.$this->createUrl('/user/activate',array('id'=>$this->id,'key'=>$randomKey));
...morecode...
}
これは修正しなければならない行です。
$this->createUrl('/user/activate',array('id'=>$this->id,'key'=>$randomKey))
明らかに、それは私にエラーを与えています。では、モデル内から createUrl() 関数を使用するにはどうすればよいでしょうか?
よろしく、