3
마 젠토 2 : 인터랙션 전후 / 플러그인
Magento 2에서 "주변"플러그인을 만들 때 public function aroundRenderResult( \Magento\Framework\Controller\ResultInterface $subject, \Closure $proceed, ResponseHttp $response ) { //... $proceed($response); //... } 전달 된 메소드 를 호출 / 호출하여 실제 원래 메소드를 호출하여 다음 단계의 플러그인으로 진행할 수 있습니다 $proceed. 이것은 일반적인 디자인 패턴이며, 종종 PHP 프레임 워크 미들웨어 구현에서 볼 수 …