form.phtml 475 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /** @var $block \Magento\Backend\Block\Widget\Form */
  8. ?>
  9. <?php /* @todo replace .form-inline with better class name */?>
  10. <?php /* ToDo UI: check if we need this wrapper in the process of global forms refactoring */ ?>
  11. <div class="entry-edit form-inline">
  12. <?= $block->getFormHtml() ?>
  13. </div>
  14. <?= $block->getChildHtml('form_after') ?>