Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-paypal
view
adminhtml
templates
payment
form
billing
agreement.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
8
/* @var $block \Magento\Paypal\Block\Payment\Form\Billing\Agreement */
9
?>
10
<?php
$code
=
$block
->escapeHtml(
$block
->getMethodCode()) ?>
11
<fieldset
class
=
"admin__fieldset payment-method form-list"
12
id
=
"payment_form_<?= /* @noEscape */ $code ?>"
style=
"display:none;"
>
13
<div
class
=
"admin__field _required"
>
14
<label
class
=
"admin__field-label"
15
for
=
"<?= /* @noEscape */ $code ?>_ba_agreement_id"
>
16
<span><?=
$block
->escapeHtml(
__
(
'Billing Agreement'
)) ?></span>
17
</label>
18
<div
class
=
"admin__field-control"
>
19
<select
id
=
"<?= /* @noEscape */ $code ?>_ba_agreement_id"
20
name
=
"payment[<?= $block->escapeHtml($block->getTransportName()) ?>]"
21
class
=
"required-entry admin__control-select"
>
22
<option
value
=
""
><?=
$block
->escapeHtml(
__
(
'Please Select'
)) ?></option>
23
<?php
foreach
(
$block
->getBillingAgreements() as
$id
=> $referenceId): ?>
24
<option
value
=
"<?= $block->escapeHtml($id) ?>"
25
<?= (
$id
==
$block
->getInfoData(
$block
->getTransportName())) ?
26
' selected="selected"'
:
''
;
27
?>>
28
<?=
$block
->escapeHtml($referenceId) ?>
29
</option>
30
<?php
endforeach
; ?>
31
</select>
32
</div>
33
</div>
34
</fieldset>
value
$block setTitle( 'CMS Block Title') -> setIdentifier('fixture_block') ->setContent('< h1 >Fixture Block Title</h1 >< a href=" store url</a><p> Config value
Definition:
block.php:9
$id
$id
Definition:
fieldset.phtml:14
$code
$code
Definition:
agreement.phtml:11
__
__()
Definition:
__.php:13
$block
$block
Definition:
block.php:8
name
endforeach
endforeach
Definition:
agreement.phtml:28