0
detailsAction()
은 JMSPaymentCoreBundle에 대해 제공된 in the documentation의 예제에서 어떻게 호출해야합니까?이 예제에서 JMSPaymentCoreBundle에 대해 함수를 호출해야하는 방법은 무엇입니까?
함수 정의에서 인수로 전달되는 주문 객체를 사용합니다.
public function detailsAction(Order $order)
{
$form = $this->getFormFactory()->create('jms_choose_payment_method', null, array(
'amount' => $order->getAmount(),
[...]
나는 함수가 호출 될 때 주문 객체를 전달할 때만 작동한다고 가정 할 때가 맞습니까? 다른 일을하는 것 이외의 다른 방법이 있습니까?
return $this->forward('MyBundle:Payment:details', array(
'order' => $order,
));