2012-04-11 7 views

답변

0

은 올바른 방법이지만 작동합니다

class Plugin_AvHelper extends Plugin_Helper 
{ 
    public function redirect() 
    { 
      $uri  = $this->attribute('uri'); 
     $method  = $this->attribute('method'); 

     return $uri && $method ? redirect($uri, $method) : NULL; 
    } 
} 

과 전화 :

{{ avhelper:redirect uri="/order/images/" method="refresh" }} 
관련 문제