Formkey.php 435 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Backend form key content block
  8. */
  9. namespace Magento\Backend\Block\Admin;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Formkey extends \Magento\Backend\Block\Template
  15. {
  16. /**
  17. * Get form key
  18. *
  19. * @return string
  20. */
  21. public function getFormKey()
  22. {
  23. return $this->formKey->getFormKey();
  24. }
  25. }