123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Backend form key content block
- */
- namespace Magento\Backend\Block\Admin;
- /**
- * @api
- * @since 100.0.2
- */
- class Formkey extends \Magento\Backend\Block\Template
- {
- /**
- * Get form key
- *
- * @return string
- */
- public function getFormKey()
- {
- return $this->formKey->getFormKey();
- }
- }
|