Hidden.php 705 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Field renderer for hidden fields
  8. */
  9. namespace Magento\Paypal\Block\Adminhtml\System\Config\Field;
  10. class Hidden extends \Magento\Config\Block\System\Config\Form\Field
  11. {
  12. /**
  13. * Decorate field row html to be invisible
  14. *
  15. * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  16. * @param string $html
  17. * @return string
  18. */
  19. protected function _decorateRowHtml(\Magento\Framework\Data\Form\Element\AbstractElement $element, $html)
  20. {
  21. return '<tr id="row_' . $element->getHtmlId() . '" style="display: none;">' . $html . '</tr>';
  22. }
  23. }