Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
orderpayment.php
1<?php
2
4
7
8class OrderPayment extends Template
9{
10 protected $name = "payment";
11
15 public function buildBlock()
16 {
17 $result = "";
18 $index = 0;
19 $paymentCollection = $this->order->getPaymentCollection();
20
21 foreach ($paymentCollection as $payment)
22 {
23 $result .= Block::getView($payment, $index++, "archive");
24 }
25
26 return $result;
27 }
28}
static getView($payment, $index=1, $form='')