123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /** @var \Magento\Customer\Block\Widget\Dob $block */
- /*
- <?= $block->getLayout()->createBlock('Magento\Customer\Block\Widget\Dob')
- ->setDate($block->getCustomer()->getDob())
- ->toHtml() ?>
- For checkout/onepage/billing.phtml:
- <?= $block->getLayout()->createBlock('Magento\Customer\Block\Widget\Dob')
- ->setDate($block->getCustomer()->getDob())
- ->setFieldIdFormat('billing:%s')
- ->setFieldNameFormat('billing[%s]')
- ->toHtml() ?>
- NOTE: Regarding styles - if we leave it this way, we'll move it to boxes.css. Alternatively we could calculate widths
- automatically using block input parameters.
- */
- $fieldCssClass = 'field date field-' . $block->getHtmlId();
- $fieldCssClass .= $block->isRequired() ? ' required' : '';
- ?>
- <div class="<?= $block->escapeHtmlAttr($fieldCssClass) ?>">
- <label class="label" for="<?= $block->escapeHtmlAttr($block->getHtmlId()) ?>"><span><?= $block->escapeHtml($block->getStoreLabel('dob')) ?></span></label>
- <div class="control customer-dob">
- <?= $block->getFieldHtml() ?>
- <?php if ($_message = $block->getAdditionalDescription()) : ?>
- <div class="note"><?= $block->escapeHtml($_message) ?></div>
- <?php endif; ?>
- </div>
- </div>
|